Small fixes, push to v1.8

This commit is contained in:
Sn0wStorm
2019-08-18 22:45:12 +02:00
parent 3ee9ced789
commit 4cd2da083c
15 changed files with 29 additions and 6 deletions
@@ -1161,7 +1161,11 @@ public class ConfigUpdater {
}
}
if (index != -1) {
addLines(index + 1, "# Halte ein Item in der Hand und benutze /brew configname um dessen Material herauszufinden und für ein Rezept zu benutzen");
addLines(index + 1, "# Halte ein Item in der Hand und benutze /brew ItemName um dessen Material herauszufinden und für ein Rezept zu benutzen");
}
index = indexOfStart("# wood: Holz des Fasses");
if (index != -1) {
addLines(index + 1, "# Das Minecraft Fass besteht aus Eiche");
}
if (P.use1_13) updateMaterialDescriptions(true);
}
@@ -1210,6 +1214,10 @@ public class ConfigUpdater {
if (index != -1) {
addLines(index + 1, "# With an item in your hand, use /brew ItemName to get its material for use in a recipe");
}
index = indexOfStart("# wood: Wood of the barrel");
if (index != -1) {
addLines(index + 1, "# The Minecraft barrel is made of oak");
}
if (P.use1_13) updateMaterialDescriptions(false);
}