aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/shack.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/itemsystem/items/shack.lua')
-rw-r--r--gamemode/itemsystem/items/shack.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/gamemode/itemsystem/items/shack.lua b/gamemode/itemsystem/items/shack.lua
index 96790d6..29eca83 100644
--- a/gamemode/itemsystem/items/shack.lua
+++ b/gamemode/itemsystem/items/shack.lua
@@ -1,4 +1,4 @@
-
+local ITEM = {}
ITEM.Name = "Shack"
ITEM.Class = "structure"
ITEM.Desc = "An actual building... how convenient.\nHold down shift to snap"
@@ -116,3 +116,4 @@ function ITEM:OnPrimary(pl,tr)
pl:EmitSound(Sound("weapons/iceaxe/iceaxe_swing1.wav"),100,math.random(90,110))
end
end
+RegisterItem(ITEM)