aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/plank.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/itemsystem/items/plank.lua')
-rw-r--r--gamemode/itemsystem/items/plank.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/gamemode/itemsystem/items/plank.lua b/gamemode/itemsystem/items/plank.lua
index 5726434..8c46311 100644
--- a/gamemode/itemsystem/items/plank.lua
+++ b/gamemode/itemsystem/items/plank.lua
@@ -1,4 +1,4 @@
-
+local ITEM = {}
ITEM.Name = "Plank"
ITEM.Class = "resource"
ITEM.Desc = "Advanced wood material."
@@ -22,4 +22,5 @@ ITEM.Structure = {
Pos = Vector(4,-3,-1),
Ang = Angle(0,0,0),
},
-} \ No newline at end of file
+}
+RegisterItem(ITEM)