Add debug console msgs + update nametags

This commit is contained in:
Vortrex
2022-01-06 13:33:35 -06:00
parent 9217638191
commit e23b9920ee

View File

@@ -97,8 +97,16 @@ function initTimers() {
// =========================================================================== // ===========================================================================
function oneMinuteTimerFunction() { function oneMinuteTimerFunction() {
logToConsole(LOG_DEBUG, `[VRR.Event] Checking server game time`);
checkServerGameTime(); checkServerGameTime();
logToConsole(LOG_DEBUG, `[VRR.Event] Checking rentable vehicles`);
vehicleRentCheck(); vehicleRentCheck();
logToConsole(LOG_DEBUG, `[VRR.Event] Updating all player name tags`);
updateAllPlayerNameTags();
logToConsole(LOG_DEBUG, `[VRR.Event] Collecting all garbage`);
collectAllGarbage(); collectAllGarbage();
} }