mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-12-28 20:17:50 +01:00
Fix NPE
This commit is contained in:
parent
d030909524
commit
e75227d0cd
@ -78,7 +78,7 @@ public class CitizensNPC extends AbstractNPC {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LivingEntity getBukkitEntity() {
|
public LivingEntity getBukkitEntity() {
|
||||||
return entityController.getBukkitEntity();
|
return entityController == null ? null : entityController.getBukkitEntity();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -29,7 +29,6 @@ public class HorseController extends MobEntityController {
|
|||||||
|
|
||||||
public static class EntityHorseNPC extends EntityHorse implements NPCHolder {
|
public static class EntityHorseNPC extends EntityHorse implements NPCHolder {
|
||||||
private int jumpTicks;
|
private int jumpTicks;
|
||||||
|
|
||||||
private final CitizensNPC npc;
|
private final CitizensNPC npc;
|
||||||
|
|
||||||
public EntityHorseNPC(World world) {
|
public EntityHorseNPC(World world) {
|
||||||
|
Loading…
Reference in New Issue
Block a user