aboutsummaryrefslogtreecommitdiff
path: root/gamemode/core/inventory/item.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/core/inventory/item.lua')
-rw-r--r--gamemode/core/inventory/item.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/gamemode/core/inventory/item.lua b/gamemode/core/inventory/item.lua
index 354472a..dd788d6 100644
--- a/gamemode/core/inventory/item.lua
+++ b/gamemode/core/inventory/item.lua
@@ -17,9 +17,6 @@
The above must be defined for every item
Items may also have methods from one or more interfaces registered with RegisterInterface
]]
-local log = nrequire("log.lua")
-print("in item.lua, log is:")
-PrintTable(log)
local itm = {}
local required_fields = {
@@ -33,7 +30,7 @@ function itm.RegisterItem(tbl)
end
assert(items[tbl.Name] == nil, string.format("Attempted to register 2 items with the same name %q",tbl.Name))
items[tbl.Name] = tbl
- log.debug("Registered item: " .. tbl.Name .. "\n")
+ print("Registered item: " .. tbl.Name)
end
function itm.GetItemByName(name)