aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/runefeatherfall.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/itemsystem/items/runefeatherfall.lua')
-rw-r--r--gamemode/itemsystem/items/runefeatherfall.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/gamemode/itemsystem/items/runefeatherfall.lua b/gamemode/itemsystem/items/runefeatherfall.lua
index c42b120..ebecbed 100644
--- a/gamemode/itemsystem/items/runefeatherfall.lua
+++ b/gamemode/itemsystem/items/runefeatherfall.lua
@@ -1,4 +1,4 @@
-
+local ITEM = {}
ITEM.Name = "Feather-fall Rune"
ITEM.Class = "resource"
ITEM.Desc = "A rune that's lighter than air.\nCancels fall dammage"
@@ -32,3 +32,4 @@ ITEM.CD = 1
function ITEM:OnCraft(ply)
ply:AddFatigue(25)
end
+RegisterItem(ITEM)