geforkt von Mirrors/Paper
Fix off by one in CraftRabbit. Fixes SPIGOT-392
By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Ursprung
04c9a53768
Commit
3c10252b2f
@ -31,7 +31,7 @@ public class CraftRabbit extends CraftAnimals implements Rabbit {
|
||||
|
||||
@Override
|
||||
public Type getRabbitType() {
|
||||
int type = getHandle().cl();
|
||||
int type = getHandle().cl(); // PAIL: Rename
|
||||
return CraftMagicMapping.fromMagic(type);
|
||||
}
|
||||
|
||||
@ -72,7 +72,7 @@ public class CraftRabbit extends CraftAnimals implements Rabbit {
|
||||
}
|
||||
|
||||
public static Type fromMagic(int magic) {
|
||||
if (magic > 0 && magic < reverse.length) {
|
||||
if (magic >= 0 && magic < reverse.length) {
|
||||
return reverse[magic];
|
||||
} else if (magic == 99) {
|
||||
return Type.THE_KILLER_BUNNY;
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren