Use pickup type 255 for GTA SA

This commit is contained in:
Vortrex
2021-10-15 22:40:46 -05:00
parent 8e4f2a64cc
commit a9a419e879

View File

@@ -3278,12 +3278,12 @@ let gameData = {
}, },
{ // GTA San Andreas { // GTA San Andreas
business: 1, business: 255,
house: 1, house: 255,
bank: 1, bank: 255,
clothes: 1, clothes: 255,
info: 1, info: 255,
job: 1, job: 255,
} }
], ],
@@ -4524,7 +4524,7 @@ function setPlayerCash(client, amount) {
return false; return false;
} }
if(isNan(amount)) { if(isNaN(amount)) {
return false; return false;
} }
@@ -4539,7 +4539,7 @@ function givePlayerCash(client, amount) {
return false; return false;
} }
if(isNan(amount)) { if(isNaN(amount)) {
return false; return false;
} }