diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-11-06 21:13:46 -0500 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-11-06 21:13:46 -0500 |
| commit | b9c323a705caa324cebfea994cf7b69294f9eebe (patch) | |
| tree | d9b647acea06ddf1dd61936da6beed9c6f1b9ce3 /gamemode/inventorysystem | |
| parent | f53052a063b73e92c4e92b214e439b446600fe8a (diff) | |
| download | artery-b9c323a705caa324cebfea994cf7b69294f9eebe.tar.gz artery-b9c323a705caa324cebfea994cf7b69294f9eebe.tar.bz2 artery-b9c323a705caa324cebfea994cf7b69294f9eebe.zip | |
Several additions
* Minor bugfix / feature addition for dropped entities
* Major bugfix for inventories
* Adjusted logo
* ADded some more skills
* Stoped bundeling bobbleheadbob's zones api
Diffstat (limited to 'gamemode/inventorysystem')
| -rw-r--r-- | gamemode/inventorysystem/shapedinventory/sh_shaped.lua | 2 | ||||
| -rw-r--r-- | gamemode/inventorysystem/skills/sh_skillcommon.lua | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gamemode/inventorysystem/shapedinventory/sh_shaped.lua b/gamemode/inventorysystem/shapedinventory/sh_shaped.lua index 1b53d43..e9b2e91 100644 --- a/gamemode/inventorysystem/shapedinventory/sh_shaped.lua +++ b/gamemode/inventorysystem/shapedinventory/sh_shaped.lua @@ -104,6 +104,8 @@ function inv:Remove(tbl) end end end + print("shaped is returning",item) + return item end function inv:Get(tbl) diff --git a/gamemode/inventorysystem/skills/sh_skillcommon.lua b/gamemode/inventorysystem/skills/sh_skillcommon.lua index d48fb98..fd05eaa 100644 --- a/gamemode/inventorysystem/skills/sh_skillcommon.lua +++ b/gamemode/inventorysystem/skills/sh_skillcommon.lua @@ -2,7 +2,7 @@ Common functions since skills are a special inventory, adding skills need to be a special item ]] local itm = nrequire("item.lua") - +local log = nrequire("log.lua") --Common things --Make sure items have a "name" and "ammt" attribute local item = {} |
