Benny/gamemodes/benny/gamemode/modules/player/sh_inventory.lua

10 lines
151 B
Lua
Raw Normal View History

local PT = FindMetaTable( "Player" )
function PT:INV_Get()
if !self.INV then
print( "Inventory created")
self.INV = {}
end
return self.INV
end