Fix wrong var on payday biz till increase

This commit is contained in:
Vortrex
2021-10-15 22:41:38 -05:00
parent 8375e39bfd
commit 342e6a497f

View File

@@ -205,7 +205,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) {
getBusinessData(businessId).till += 1000;
getBusinessData(i).till += 1000;
}
}
}