Fix small game message

This commit is contained in:
Vortrex
2022-05-11 04:01:06 -05:00
parent b01f4190ff
commit 33cff3eb0f

View File

@@ -139,7 +139,7 @@ function playerClientStopped(client) {
function showGameMessage(client, text, colour, duration, fontName = "Pricedown") {
logToConsole(LOG_DEBUG, `[VRR.Client] Showing game message to ${getPlayerDisplayForConsole(client)} (${text}) for ${duration} milliseconds`);
sendNetworkEventToPlayer("vrr.smallGameMessage", client, text, colour, duration);
sendNetworkEventToPlayer("vrr.smallGameMessage", client, text, colour, duration, fontName);
}
// ===========================================================================