diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-11-27 15:31:58 -0500 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-11-27 15:36:46 -0500 |
| commit | 70d3228761c2b207aa723af0ea11717201d71988 (patch) | |
| tree | 83c513d13c172e056fee8f6d14768e9474e0e420 /gamemode/core | |
| parent | 83af51534bf16bf048aea1cd3b74a0308ed9dd71 (diff) | |
| download | artery-70d3228761c2b207aa723af0ea11717201d71988.tar.gz artery-70d3228761c2b207aa723af0ea11717201d71988.tar.bz2 artery-70d3228761c2b207aa723af0ea11717201d71988.zip | |
Comments
Added some comments to the colortheme config
Added some comments to inventory registry
Diffstat (limited to 'gamemode/core')
| -rw-r--r-- | gamemode/core/inventory/inventory.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gamemode/core/inventory/inventory.lua b/gamemode/core/inventory/inventory.lua index ea1d33e..9215a49 100644 --- a/gamemode/core/inventory/inventory.lua +++ b/gamemode/core/inventory/inventory.lua @@ -175,6 +175,10 @@ function inv.CreateInventoryFromData(name,data,owner) return ret end +concommand.Add("artery_printinventories", function(ply,cmd,args) + PrintTable(inventories) +end) + ---To Be Depriciated. function inv.DeriveInventory(name) while inventories[name] == nil do |
