summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/playermade
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/playermade')
-rw-r--r--gamemode/craftablesystem/playermade/concrete.lua1
-rw-r--r--gamemode/craftablesystem/playermade/dough.lua4
-rw-r--r--gamemode/craftablesystem/playermade/rope.lua1
3 files changed, 6 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/concrete.lua b/gamemode/craftablesystem/playermade/concrete.lua
index a173ee3..55c0165 100644
--- a/gamemode/craftablesystem/playermade/concrete.lua
+++ b/gamemode/craftablesystem/playermade/concrete.lua
@@ -3,6 +3,7 @@ local COMBI = {}
COMBI.Name = "Concrete"
COMBI.Description = "Concrete can be used for spawning concrete props."
+COMBI.Icon = "items/concrete.png"
COMBI.Req = {}
COMBI.Req["Sand"] = 5
diff --git a/gamemode/craftablesystem/playermade/dough.lua b/gamemode/craftablesystem/playermade/dough.lua
index 846a322..e839de1 100644
--- a/gamemode/craftablesystem/playermade/dough.lua
+++ b/gamemode/craftablesystem/playermade/dough.lua
@@ -1,8 +1,11 @@
+img = "items/dough.png"
+
/* Dough */
local COMBI = {}
COMBI.Name = "Dough"
COMBI.Description = "Dough is used for baking."
+COMBI.Icon = img
COMBI.Req = {}
COMBI.Req["Water Bottles"] = 1
@@ -18,6 +21,7 @@ local COMBI = {}
COMBI.Name = "Dough 10x"
COMBI.Description = "Dough is used for baking."
+COMBI.Icon = img
COMBI.Req = {}
COMBI.Req["Water Bottles"] = 7
diff --git a/gamemode/craftablesystem/playermade/rope.lua b/gamemode/craftablesystem/playermade/rope.lua
index 4e6e15e..e2f50e5 100644
--- a/gamemode/craftablesystem/playermade/rope.lua
+++ b/gamemode/craftablesystem/playermade/rope.lua
@@ -3,6 +3,7 @@ local COMBI = {}
COMBI.Name = "Rope"
COMBI.Description = "Allows you to use Rope tool ( Using Rope Tool will consume the Rope ) and used in fishing rod crafting."
+COMBI.Icon = "items/rope.png"
COMBI.Req = {}
COMBI.Req["Herbs"] = 5