From ad672a59128795ec1ba54f3718d762461dfebcc0 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 26 Jun 2022 13:32:25 -0500 Subject: [PATCH] Const naming --- scripts/server/timers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/timers.js b/scripts/server/timers.js index baa1483b..759d907f 100644 --- a/scripts/server/timers.js +++ b/scripts/server/timers.js @@ -228,7 +228,7 @@ function checkPayDays() { } for (let i in getServerData().businesses) { - if (getBusinessData(i).ownerType != VRR_BIZOWNER_NONE && getBusinessData(i).ownerType != VRR_BIZOWNER_PUBLIC && getBusinessData(i).ownerType != VRR_BIZOWNER_FACTION) { + if (getBusinessData(i).ownerType != VRR_BIZ_OWNER_NONE && getBusinessData(i).ownerType != VRR_BIZ_OWNER_PUBLIC && getBusinessData(i).ownerType != VRR_BIZ_OWNER_FACTION) { getBusinessData(i).till += 1000; } }