Skip to content

Commit

Permalink
Correct translation of Mooshroom
Browse files Browse the repository at this point in the history
  • Loading branch information
PikaMug committed May 7, 2023
1 parent ad8c8cd commit b1feaed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/me/pikamug/localelib/LocaleManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,9 @@ public String queryEntityType(final EntityType entityType, final String extra) t
key = oldEntities.get(entityType.name());
}
} else {
if (entityType.name().equals("SNOWMAN")) {
if (entityType.name().equals("MUSHROOM_COW")) {
key = "entity.minecraft.mooshroom";
} else if (entityType.name().equals("SNOWMAN")) {
key = "entity.minecraft.snow_golem";
} else if (entityType.name().equals("PIG_ZOMBIE")) {
key = "entity.minecraft.zombie_pigman";
Expand Down

0 comments on commit b1feaed

Please sign in to comment.