aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-03-13 01:27:09 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-03-13 01:27:09 +0800
commit72144a3911b69f25a2ab0e45acdd5d9edabeda80 (patch)
treea5922cb3ff4df30ce6a7e178dc0a584997600c55 /src/main/java/me/shedaniel
parent744629f96372b90518b62be4e71295df622795c3 (diff)
downloadRoughlyEnoughItems-72144a3911b69f25a2ab0e45acdd5d9edabeda80.tar.gz
RoughlyEnoughItems-72144a3911b69f25a2ab0e45acdd5d9edabeda80.tar.bz2
RoughlyEnoughItems-72144a3911b69f25a2ab0e45acdd5d9edabeda80.zip
v2.4.0.63
Diffstat (limited to 'src/main/java/me/shedaniel')
-rw-r--r--src/main/java/me/shedaniel/rei/gui/config/ConfigScreen.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/me/shedaniel/rei/gui/config/ConfigScreen.java b/src/main/java/me/shedaniel/rei/gui/config/ConfigScreen.java
index 5e1e7cc1f..cc3d63135 100644
--- a/src/main/java/me/shedaniel/rei/gui/config/ConfigScreen.java
+++ b/src/main/java/me/shedaniel/rei/gui/config/ConfigScreen.java
@@ -351,7 +351,7 @@ public class ConfigScreen extends Screen {
}
private String getTrueFalseText(boolean showCraftableOnlyButton) {
- return String.format("%s%b", showCraftableOnlyButton ? "§a" : "§c", showCraftableOnlyButton);
+ return String.format("%s%s", showCraftableOnlyButton ? "§a" : "§c", showCraftableOnlyButton ? I18n.translate("text.rei.enabled") : I18n.translate("text.rei.disabled"));
}
@Override