aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/bow.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/itemsystem/items/bow.lua')
-rw-r--r--gamemode/itemsystem/items/bow.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/gamemode/itemsystem/items/bow.lua b/gamemode/itemsystem/items/bow.lua
index 4a7f203..ed82229 100644
--- a/gamemode/itemsystem/items/bow.lua
+++ b/gamemode/itemsystem/items/bow.lua
@@ -1,4 +1,4 @@
-
+local ITEM = {}
ITEM.Name = "Bow"
ITEM.Class = "weapon"
ITEM.Desc = "A primitive bow made from vine, sap, and wood."
@@ -80,3 +80,4 @@ function ITEM:OnPrimary(pl,tr)
pl:RemoveItem("Arrow",1)
end
+RegisterItem(ITEM)