From 5ba69fca4ddd076384984794ad163d0713fe30d0 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 22 Jun 2022 08:29:57 -0500 Subject: [PATCH] Rename game msg util to small game msg (adding more soon) --- scripts/server/netevents.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/netevents.js b/scripts/server/netevents.js index 975fbcd9..367b5f1a 100644 --- a/scripts/server/netevents.js +++ b/scripts/server/netevents.js @@ -140,7 +140,7 @@ function playerClientStopped(client) { // =========================================================================== -function showGameMessage(client, text, colour, duration, fontName = "Pricedown") { +function showSmallGameMessage(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, fontName); }