hovering, flying npc

This commit is contained in:
Sen 2025-03-20 20:54:49 +01:00
parent 5300c9e4fc
commit 103e4d35f5
7 changed files with 111 additions and 28 deletions

View file

@ -199,7 +199,7 @@ public abstract class EntityNPC extends EntityLiving
public NetHandlerPlayServer connection;
public NetHandlerPlayClient sendQueue;
private Game gm;
protected Game gm;
public InventoryPlayer inventory;
protected InventoryWarpChest warpChest;
@ -4634,4 +4634,13 @@ public abstract class EntityNPC extends EntityLiving
}
return super.getItem();
}
public boolean isHovering()
{
return false;
}
public void setHovering(boolean hover)
{
}
}