aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/base.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-12-28 18:46:17 -0600
committerAlexander Pickering <alexandermpickering@gmail.com>2016-12-28 18:46:17 -0600
commit0ceb38e8a1f26716fe4756c1cfbdbbedd1fae5f1 (patch)
tree6f9d24d0785a913e2baa38fec3a24d5dfb4d1d1b /gamemode/itemsystem/items/base.lua
parent52fb13ef163bcea7f1409e17fd62509703de9f69 (diff)
downloadwintersurvival2-0ceb38e8a1f26716fe4756c1cfbdbbedd1fae5f1.tar.gz
wintersurvival2-0ceb38e8a1f26716fe4756c1cfbdbbedd1fae5f1.tar.bz2
wintersurvival2-0ceb38e8a1f26716fe4756c1cfbdbbedd1fae5f1.zip
Fixed some stuff
Diffstat (limited to 'gamemode/itemsystem/items/base.lua')
-rw-r--r--gamemode/itemsystem/items/base.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/gamemode/itemsystem/items/base.lua b/gamemode/itemsystem/items/base.lua
index a3b6b31..de04739 100644
--- a/gamemode/itemsystem/items/base.lua
+++ b/gamemode/itemsystem/items/base.lua
@@ -1,3 +1,4 @@
+local ITEM = {}
ITEM.Name = "Winter Survival 2 Base Item"
ITEM.Desc = "Why the hell did I write this? No one will read it anyways!!"
ITEM.Class = "Other"
@@ -15,7 +16,7 @@ ITEM.CookCD = 1
ITEM.CookProduct = nil
ITEM.Ghost = nil
---These are just here to tell the editors/develoeprs what functions are available.. dont un-comment them out, as this could affect all the items.
+--These are just here to tell the editors/developers what functions are available.. dont un-comment them out, as this could affect all the items.
/*
function ITEM:OnPrimary(user,tr)
end
@@ -35,3 +36,5 @@ end
function ITEM:OnCraft(player)
end
*/
+
+RegisterItem(ITEM)