aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/diamondaxe.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/itemsystem/items/diamondaxe.lua')
-rw-r--r--gamemode/itemsystem/items/diamondaxe.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/gamemode/itemsystem/items/diamondaxe.lua b/gamemode/itemsystem/items/diamondaxe.lua
index 9edc6e4..a8cf79a 100644
--- a/gamemode/itemsystem/items/diamondaxe.lua
+++ b/gamemode/itemsystem/items/diamondaxe.lua
@@ -1,4 +1,4 @@
-
+local ITEM = {}
ITEM.Name = "Diamond Axe"
ITEM.Class = "weapon"
ITEM.Desc = "An axe made from diamonds and ancient wood."
@@ -68,3 +68,4 @@ function ITEM:OnPrimary(pl,tr)
pl:EmitSound(Sound("weapons/iceaxe/iceaxe_swing1.wav"),100,math.random(90,110))
end
end
+RegisterItem(ITEM)