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