diff options
Diffstat (limited to 'gamemode/structuresystem/structures')
| -rw-r--r-- | gamemode/structuresystem/structures/stonefurnace.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gamemode/structuresystem/structures/stonefurnace.lua b/gamemode/structuresystem/structures/stonefurnace.lua index 029b242..03ae99e 100644 --- a/gamemode/structuresystem/structures/stonefurnace.lua +++ b/gamemode/structuresystem/structures/stonefurnace.lua @@ -24,6 +24,9 @@ local timefunc = function(ply, num) print("Time was: " .. time) return time end +local checkfunc = function(ply) + return true +end local genericRecipe = { ["Name"] = "Copper", @@ -31,6 +34,8 @@ local genericRecipe = { ["Requirements"] = {["Copper Ore"] = 1}, ["Results"] = {["Copper"] = 1}, ["Ratio"] = {1,1}, + ["Image"] = "test.png", + ["CanCraft"] = checkfunc, ["Time"] = timefunc, ["Mults"] = {1,5,10,20,50} } |
