Skip to content

Commit

Permalink
Fixed localization of mutagen producer and advanced mutatron GUI titl…
Browse files Browse the repository at this point in the history
…es - fixes bdew-minecraft#138
  • Loading branch information
bdew committed Sep 29, 2015
1 parent ad2b3cc commit 49c827b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gendustry.version=1.6.0
gendustry.version=1.6.1
gendustry.api.version=2.2.0
curseforge.id=70492

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class GuiMutatronAdv(val te: TileMutatronAdv, player: EntityPlayer) extends Base
widgets.add(new WidgetPowerCustom(new Rect(8, 19, 16, 58), Textures.powerFill, te.power))
widgets.add(new WidgetFluidGauge(new Rect(32, 19, 16, 58), Textures.tankOverlay, te.tank))
widgets.add(new WidgetSelector(new Point(7, 84), te.selectedMutation, -1))
widgets.add(new WidgetLabel(Misc.toLocal("tile.gendustry.mutatron.adv.name"), 8, 6, Color.darkGray))
widgets.add(new WidgetLabel(Misc.toLocal("tile.gendustry.mutatron_adv.name"), 8, 6, Color.darkGray))
widgets.add(new WidgetLabel(Misc.toLocal("gendustry.label.select"), 8, 89, Color.darkGray))

inventorySlots.getSlotFromInventory(te, te.slots.inIndividual1).setBackgroundIcon(HintIcons.queenOrSapling)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ class GuiMutagenProducer(val te: TileMutagenProducer, player: EntityPlayer) exte
widgets.add(new WidgetProgressBarNEI(new Rect(79, 41, 53, 15), Textures.greenProgress(53), te.progress, "MutagenProducer"))
widgets.add(new WidgetPowerCustom(new Rect(8, 19, 16, 58), Textures.powerFill, te.power))
widgets.add(new WidgetFluidGauge(new Rect(152, 19, 16, 58), Textures.tankOverlay, te.tank))
widgets.add(new WidgetLabel(Misc.toLocal("tile.gendustry.mutagen.producer.name"), 8, 6, Color.darkGray))
widgets.add(new WidgetLabel(Misc.toLocal("tile.gendustry.mutagen_producer.name"), 8, 6, Color.darkGray))
}
}

0 comments on commit 49c827b

Please sign in to comment.