diff options
Diffstat (limited to 'gamemode/craftablesystem/playermade')
| -rw-r--r-- | gamemode/craftablesystem/playermade/concrete.lua | 1 | ||||
| -rw-r--r-- | gamemode/craftablesystem/playermade/dough.lua | 3 | ||||
| -rw-r--r-- | gamemode/craftablesystem/playermade/flour.lua | 1 | ||||
| -rw-r--r-- | gamemode/craftablesystem/playermade/medicine.lua | 1 | ||||
| -rw-r--r-- | gamemode/craftablesystem/playermade/rope.lua | 1 | ||||
| -rw-r--r-- | gamemode/craftablesystem/playermade/spice.lua | 1 | ||||
| -rw-r--r-- | gamemode/craftablesystem/playermade/urine.lua | 3 |
7 files changed, 0 insertions, 11 deletions
diff --git a/gamemode/craftablesystem/playermade/concrete.lua b/gamemode/craftablesystem/playermade/concrete.lua index 55c0165..a173ee3 100644 --- a/gamemode/craftablesystem/playermade/concrete.lua +++ b/gamemode/craftablesystem/playermade/concrete.lua @@ -3,7 +3,6 @@ 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 e839de1..bb0e5b4 100644 --- a/gamemode/craftablesystem/playermade/dough.lua +++ b/gamemode/craftablesystem/playermade/dough.lua @@ -1,11 +1,9 @@ -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 @@ -21,7 +19,6 @@ 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/flour.lua b/gamemode/craftablesystem/playermade/flour.lua index 3a9891e..4ebd77d 100644 --- a/gamemode/craftablesystem/playermade/flour.lua +++ b/gamemode/craftablesystem/playermade/flour.lua @@ -2,7 +2,6 @@ local COMBI = {} COMBI.Name = "Flour" COMBI.Description = "Flour can be used for making dough." -COMBI.Icon = "items/flour.png" COMBI.Req = {} COMBI.Req["Stone"] = 1 diff --git a/gamemode/craftablesystem/playermade/medicine.lua b/gamemode/craftablesystem/playermade/medicine.lua index 998c1a2..223cc1c 100644 --- a/gamemode/craftablesystem/playermade/medicine.lua +++ b/gamemode/craftablesystem/playermade/medicine.lua @@ -2,7 +2,6 @@ local COMBI = {} COMBI.Name = "Medicine" COMBI.Description = "To restore your health." -COMBI.Icon = "items/medicine.png" COMBI.Req = {} COMBI.Req["Herbs"] = 7 diff --git a/gamemode/craftablesystem/playermade/rope.lua b/gamemode/craftablesystem/playermade/rope.lua index e2f50e5..4e6e15e 100644 --- a/gamemode/craftablesystem/playermade/rope.lua +++ b/gamemode/craftablesystem/playermade/rope.lua @@ -3,7 +3,6 @@ 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 diff --git a/gamemode/craftablesystem/playermade/spice.lua b/gamemode/craftablesystem/playermade/spice.lua index f6f39e2..3172ed5 100644 --- a/gamemode/craftablesystem/playermade/spice.lua +++ b/gamemode/craftablesystem/playermade/spice.lua @@ -3,7 +3,6 @@ local COMBI = {} COMBI.Name = "Spices" COMBI.Description = "Spice can be used for various meals." -COMBI.Icon = "items/spices.png" COMBI.Req = {} COMBI.Req["Stone"] = 1 diff --git a/gamemode/craftablesystem/playermade/urine.lua b/gamemode/craftablesystem/playermade/urine.lua index ae05626..bd60c50 100644 --- a/gamemode/craftablesystem/playermade/urine.lua +++ b/gamemode/craftablesystem/playermade/urine.lua @@ -3,7 +3,6 @@ local COMBI = {} COMBI.Name = "Urine" COMBI.Description = "Drink some water and wait, used in gunpowder production." -COMBI.Icon = "items/bottle_urine.png" COMBI.Req = {} COMBI.Req["Water Bottles"] = 2 @@ -18,7 +17,6 @@ local COMBI = {} COMBI.Name = "Urine 10x" COMBI.Description = "Drink loads of water and wait, messy, but used in gunpowder production." -COMBI.Icon = "items/bottle_urine.png" COMBI.Req = {} COMBI.Req["Water Bottles"] = 20 @@ -33,7 +31,6 @@ local COMBI = {} COMBI.Name = "Urine 50x" COMBI.Description = "Drink loads of water and wait, messy, but used in gunpowder production." -COMBI.Icon = "items/bottle_urine.png" COMBI.Req = {} COMBI.Req["Water Bottles"] = 100 |
