Skip to content

Commit

Permalink
fix assembler post colors, fixes #599
Browse files Browse the repository at this point in the history
  • Loading branch information
pyure committed Jun 7, 2020
1 parent 8341fcd commit d4ffbbf
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions scripts/railcraft.zs
Original file line number Diff line number Diff line change
Expand Up @@ -256,28 +256,25 @@ recipes.addShaped("it3_rc_steel_tank_gauge", <railcraft:tank_steel_gauge>, [[<or
<railcraft:tank_iron_wall>.addTooltip(format.darkRed("Keep in one chunk!!"));
<railcraft:tank_steel_wall>.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 = <railcraft:post_metal>.definition.makeStack(i);
var oreDye = oreDict["dye" ~ arrayDyes[i]];
Expand Down

0 comments on commit d4ffbbf

Please sign in to comment.