Woops wrong net events arg order

This commit is contained in:
Vortrex
2022-06-27 16:40:41 -05:00
parent ea018c7b65
commit 3fe5894499

View File

@@ -1234,13 +1234,13 @@ function sendPlayerLocaleStrings(client) {
// ========================================================================== // ==========================================================================
function clearLocalPickupsForPlayer(client) { function clearLocalPickupsForPlayer(client) {
sendNetworkEventToPlayer(client, "vrr.clearPickups"); sendNetworkEventToPlayer("vrr.clearPickups", client);
} }
// ========================================================================== // ==========================================================================
function sendPlayerChatBoxTimeStampsState(client, state) { function sendPlayerChatBoxTimeStampsState(client, state) {
sendNetworkEventToPlayer(client, "vrr.chatTimeStamps", state); sendNetworkEventToPlayer("vrr.chatTimeStamps", client, state);
} }
// ========================================================================== // ==========================================================================