aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/alter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/itemsystem/items/alter.lua')
-rw-r--r--gamemode/itemsystem/items/alter.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/gamemode/itemsystem/items/alter.lua b/gamemode/itemsystem/items/alter.lua
index c661ebb..e9c5f95 100644
--- a/gamemode/itemsystem/items/alter.lua
+++ b/gamemode/itemsystem/items/alter.lua
@@ -1,4 +1,4 @@
-
+local ITEM = {}
ITEM.Name = "Alter"
ITEM.Class = "structure"
ITEM.Desc = "This allows you to sacrifice your soul for a player.\nHold down shift to snap"
@@ -73,3 +73,5 @@ function ITEM:OnPrimary(pl,tr)
pl:EmitSound(Sound("weapons/iceaxe/iceaxe_swing1.wav"),100,math.random(90,110))
end
end
+
+RegisterItem(ITEM)