summaryrefslogtreecommitdiff
path: root/mesecons_lightstone
diff options
context:
space:
mode:
authorMT-Modder <thomas.waits148@gmail.com>2015-01-21 13:45:27 -0500
committerMT-Modder <thomas.waits148@gmail.com>2015-01-21 13:45:27 -0500
commita33859574c42b2f03631691f711be83d30f0d166 (patch)
tree8e3871e2ef927090566bb881661abfcfd3fc4bb1 /mesecons_lightstone
parentcb598cbe18ac1d187e0f895d9658ed72fe4feda7 (diff)
downloadmesecons-a33859574c42b2f03631691f711be83d30f0d166.tar
mesecons-a33859574c42b2f03631691f711be83d30f0d166.tar.gz
mesecons-a33859574c42b2f03631691f711be83d30f0d166.tar.bz2
mesecons-a33859574c42b2f03631691f711be83d30f0d166.tar.xz
mesecons-a33859574c42b2f03631691f711be83d30f0d166.zip
Use dye for lightstone recipes - for balance
Diffstat (limited to 'mesecons_lightstone')
-rw-r--r--mesecons_lightstone/depends.txt1
-rw-r--r--mesecons_lightstone/init.lua12
2 files changed, 7 insertions, 6 deletions
diff --git a/mesecons_lightstone/depends.txt b/mesecons_lightstone/depends.txt
index acaa924..f9705e0 100644
--- a/mesecons_lightstone/depends.txt
+++ b/mesecons_lightstone/depends.txt
@@ -1 +1,2 @@
mesecons
+dye
diff --git a/mesecons_lightstone/init.lua b/mesecons_lightstone/init.lua
index 5ed8f15..db34249 100644
--- a/mesecons_lightstone/init.lua
+++ b/mesecons_lightstone/init.lua
@@ -52,9 +52,9 @@ function mesecon.lightstone_add(name, base_item, texture_off, texture_on)
end
-mesecon.lightstone_add("red", "default:clay_brick", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png")
-mesecon.lightstone_add("green", "default:cactus", "jeija_lightstone_green_off.png", "jeija_lightstone_green_on.png")
-mesecon.lightstone_add("blue", "mesecons_materials:fiber", "jeija_lightstone_blue_off.png", "jeija_lightstone_blue_on.png")
-mesecon.lightstone_add("gray", "default:cobble", "jeija_lightstone_gray_off.png", "jeija_lightstone_gray_on.png")
-mesecon.lightstone_add("darkgray", "default:gravel", "jeija_lightstone_darkgray_off.png", "jeija_lightstone_darkgray_on.png")
-mesecon.lightstone_add("yellow", "default:mese_crystal_fragment", "jeija_lightstone_yellow_off.png", "jeija_lightstone_yellow_on.png")
+mesecon.lightstone_add("red", "dye:red", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png")
+mesecon.lightstone_add("green", "dye:green", "jeija_lightstone_green_off.png", "jeija_lightstone_green_on.png")
+mesecon.lightstone_add("blue", "dye:blue", "jeija_lightstone_blue_off.png", "jeija_lightstone_blue_on.png")
+mesecon.lightstone_add("gray", "dye:grey", "jeija_lightstone_gray_off.png", "jeija_lightstone_gray_on.png")
+mesecon.lightstone_add("darkgray", "dye:dark_grey", "jeija_lightstone_darkgray_off.png", "jeija_lightstone_darkgray_on.png")
+mesecon.lightstone_add("yellow", "dye:yellow", "jeija_lightstone_yellow_off.png", "jeija_lightstone_yellow_on.png")