diff options
Diffstat (limited to 'gamemode/inventorysystem')
| -rw-r--r-- | gamemode/inventorysystem/shapedinventory/cl_shaped.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gamemode/inventorysystem/shapedinventory/cl_shaped.lua b/gamemode/inventorysystem/shapedinventory/cl_shaped.lua index 746a37a..dde523f 100644 --- a/gamemode/inventorysystem/shapedinventory/cl_shaped.lua +++ b/gamemode/inventorysystem/shapedinventory/cl_shaped.lua @@ -139,9 +139,11 @@ inv.DrawOnDPanel = function(self,panel) local observer = {} observer.Put = function(obs,position,item) + print("observer's put was called") drawitemat(self,position[1],position[2],item) end observer.Remove = function(obs,position) + print("observer's remove was called") undrawitemat(self,position[1],position[2]) end return observer |
