aboutsummaryrefslogtreecommitdiff
path: root/gamemode/shared/player_accountinventory.lua
diff options
context:
space:
mode:
authorAlexander Pickering <Alexander.Pickering@anondomain.site90.net>2016-03-07 18:44:21 -0500
committerAlexander Pickering <Alexander.Pickering@anondomain.site90.net>2016-03-07 18:44:21 -0500
commit4d9d034503dac45eea6da1e32da7fa8b2e97ea6a (patch)
treef815372ab17f9aa17b60a2a597d3a43b837c0c33 /gamemode/shared/player_accountinventory.lua
parent10ef2a646da0b67d5c1baaed9ac4b0b17a800a98 (diff)
downloadwintersurvival2-4d9d034503dac45eea6da1e32da7fa8b2e97ea6a.tar.gz
wintersurvival2-4d9d034503dac45eea6da1e32da7fa8b2e97ea6a.tar.bz2
wintersurvival2-4d9d034503dac45eea6da1e32da7fa8b2e97ea6a.zip
Fixed npc's bugging out (hopefully)
Diffstat (limited to 'gamemode/shared/player_accountinventory.lua')
-rw-r--r--gamemode/shared/player_accountinventory.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/gamemode/shared/player_accountinventory.lua b/gamemode/shared/player_accountinventory.lua
index 4bb7fad..d606a83 100644
--- a/gamemode/shared/player_accountinventory.lua
+++ b/gamemode/shared/player_accountinventory.lua
@@ -64,7 +64,7 @@ else
net.Receive("UpdateAccountInventory",function()
local pl = LocalPlayer()
- if (!pl.AccountInv) then pl.AccountInv = {} end
+ if (not pl.AccountInv) then pl.AccountInv = {} end
local ID = net.ReadUInt(5)
if(not pl.AccountInv) then return end