Added some more Strings to LanguageReader

This commit is contained in:
Sn0wStorm
2013-10-15 18:14:11 +02:00
parent 46e6ca9773
commit 54d4521b2b
7 changed files with 56 additions and 30 deletions
+2 -2
View File
@@ -76,7 +76,7 @@ public class BIngredients {
new Brew(uid, this);
if (state <= 1) {
cookedName = "Schlammiger Sud";
cookedName = P.p.languageReader.get("Brew_ThickBrew");
potion.setDurability(Brew.PotionColor.BLUE.getColorId(false));
} else {
for (Material ingredient : ingredients.keySet()) {
@@ -92,7 +92,7 @@ public class BIngredients {
}
if (cookedName == null) {
// if no name could be found
cookedName = "Undefinierbarer Sud";
cookedName = P.p.languageReader.get("Brew_Undefined");
potion.setDurability(Brew.PotionColor.CYAN.getColorId(true));
}