summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-05-06 17:49:49 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-05-06 17:49:49 -0400
commit1536442da626696ddf3eca76866e7d35b195b8a2 (patch)
treee1dabaac03f744f581286066339cbdeabedac50f /gamemode/craftablesystem
parent6074bf4450a35ff60fb68d104db8aba58d8c4de9 (diff)
parent0607b38bf0d04dda577bf310acaa6b5eb2af76bb (diff)
downloadgmstranded-1536442da626696ddf3eca76866e7d35b195b8a2.tar.gz
gmstranded-1536442da626696ddf3eca76866e7d35b195b8a2.tar.bz2
gmstranded-1536442da626696ddf3eca76866e7d35b195b8a2.zip
Merge branch 'master' of ssh://cogarr.net:43/home/git/gmstranded
Diffstat (limited to 'gamemode/craftablesystem')
-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