mirror of
https://github.com/PikaMug/Quests.git
synced 2024-12-26 19:17:50 +01:00
Correct translation of normal Rabbit mob type, fixes #833
This commit is contained in:
parent
33dc547cae
commit
81e5efca35
@ -215,8 +215,10 @@ public class LocaleQuery {
|
||||
key = oldEntities.get(type.name() + "." + Career.valueOf(extra).name());
|
||||
} else if (type.name().equals("OCELOT") && Ocelot.Type.valueOf(extra) != null) {
|
||||
key = oldEntities.get(type.name() + "." + Ocelot.Type.valueOf(extra).name());
|
||||
} else if (type.name().equals("RABBIT") && Rabbit.Type.valueOf(extra).equals(Rabbit.Type.THE_KILLER_BUNNY)) {
|
||||
} else if (type.name().equals("RABBIT") && Rabbit.Type.valueOf(extra) != null) {
|
||||
if (Rabbit.Type.valueOf(extra).equals(Rabbit.Type.THE_KILLER_BUNNY)) {
|
||||
key = oldEntities.get(type.name() + "." + Rabbit.Type.valueOf(extra).name());
|
||||
}
|
||||
} else {
|
||||
key = oldEntities.get(type.name());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user