From d4ffbbfd022cd3426bb5b6e9768f4928cd884dc8 Mon Sep 17 00:00:00 2001 From: Pyure Date: Sat, 6 Jun 2020 20:42:05 -0400 Subject: [PATCH] fix assembler post colors, fixes #599 --- scripts/railcraft.zs | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/scripts/railcraft.zs b/scripts/railcraft.zs index 7d7b68c7..cf72187b 100644 --- a/scripts/railcraft.zs +++ b/scripts/railcraft.zs @@ -256,28 +256,25 @@ recipes.addShaped("it3_rc_steel_tank_gauge", , [[.addTooltip(format.darkRed("Keep in one chunk!!")); .addTooltip(format.darkRed("Keep in one chunk!!")); - // Metal Posts (Railcraft) val arrayDyes = [ - "Red", - "Green", - "Brown", - "Blue", - "Purple", - "Cyan", - "Silver", - "Gray", - "Pink", - "Lime", - "Yellow", - "Light_Blue", - "Magenta", + "White", "Orange", - "White" + "Magenta", + "Light_Blue", + "Yellow", + "Lime", + "Pink", + "Gray", + "Silver", + "Cyan", + "Purple", + "Blue", + "Brown", + "Green", + "Red" ] as string[]; - - for i in 0 to 15 { var post = .definition.makeStack(i); var oreDye = oreDict["dye" ~ arrayDyes[i]];