summaryrefslogtreecommitdiff
path: root/gamemode/structuresystem/structures
diff options
context:
space:
mode:
authorScott <scotth0828@gmail.com>2016-05-31 20:06:31 -0400
committerScott <scotth0828@gmail.com>2016-05-31 20:06:31 -0400
commit57581aecaba8105c0f8ed88c56d7f54e74123973 (patch)
treeab2096ee6a8a873c157d4f2ed0d099ea2417e33a /gamemode/structuresystem/structures
parentdee21960c708a18785320d8dcabc7322a1f90da7 (diff)
downloadgmstranded-57581aecaba8105c0f8ed88c56d7f54e74123973.tar.gz
gmstranded-57581aecaba8105c0f8ed88c56d7f54e74123973.tar.bz2
gmstranded-57581aecaba8105c0f8ed88c56d7f54e74123973.zip
q menu can only be opened when alive, change to structure menu, structure menu bug fixes
Diffstat (limited to 'gamemode/structuresystem/structures')
-rw-r--r--gamemode/structuresystem/structures/stonefurnace.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/gamemode/structuresystem/structures/stonefurnace.lua b/gamemode/structuresystem/structures/stonefurnace.lua
index acd20ff..3d3e013 100644
--- a/gamemode/structuresystem/structures/stonefurnace.lua
+++ b/gamemode/structuresystem/structures/stonefurnace.lua
@@ -30,14 +30,14 @@ end
local genericRecipe = {
["Name"] = "Copper",
- ["Description"] = "Smelt some copper or into copper!",
+ ["Description"] = "Smelt some copper ore into\ncopper!",
["Requirements"] = {["Copper Ore"] = 1},
["Results"] = {["Copper"] = 1},
["Ratio"] = {1,1},
["Image"] = "items/ingot_copper.png",
["CanCraft"] = checkfunc,
["Time"] = timefunc,
- ["Mults"] = {1,5,10,20,50,3,4,6,7,87}
+ ["Mults"] = {1,5,10,20,50}
}
genericGiveRecipie(STRUCT,genericRecipe)