mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-10-16 07:14:55 +02:00
Full Distribution
This commit is contained in:
27
data/lib/core/container.lua
Normal file
27
data/lib/core/container.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
function Container.isContainer(self)
|
||||
return true
|
||||
end
|
||||
|
||||
function Container.isItem(self)
|
||||
return true
|
||||
end
|
||||
|
||||
function Container.isMonster(self)
|
||||
return false
|
||||
end
|
||||
|
||||
function Container.isCreature(self)
|
||||
return false
|
||||
end
|
||||
|
||||
function Container.isPlayer(self)
|
||||
return false
|
||||
end
|
||||
|
||||
function Container.isTeleport(self)
|
||||
return false
|
||||
end
|
||||
|
||||
function Container.isTile(self)
|
||||
return false
|
||||
end
|
Reference in New Issue
Block a user