From e23b9920ee7cd7c17a8c2ef5a81f1170f8b208a1 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 6 Jan 2022 13:33:35 -0600 Subject: [PATCH] Add debug console msgs + update nametags --- scripts/server/timers.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/server/timers.js b/scripts/server/timers.js index c40608f0..66ba8e46 100644 --- a/scripts/server/timers.js +++ b/scripts/server/timers.js @@ -97,8 +97,16 @@ function initTimers() { // =========================================================================== function oneMinuteTimerFunction() { + logToConsole(LOG_DEBUG, `[VRR.Event] Checking server game time`); checkServerGameTime(); + + logToConsole(LOG_DEBUG, `[VRR.Event] Checking rentable vehicles`); vehicleRentCheck(); + + logToConsole(LOG_DEBUG, `[VRR.Event] Updating all player name tags`); + updateAllPlayerNameTags(); + + logToConsole(LOG_DEBUG, `[VRR.Event] Collecting all garbage`); collectAllGarbage(); }