command entities

This commit is contained in:
Sen 2025-03-26 15:43:58 +01:00
parent e88958e2f4
commit 460a58e062
32 changed files with 293 additions and 37 deletions

View file

@ -1,6 +1,7 @@
package game.entity.item;
import game.entity.Entity;
import game.entity.EntityType;
import game.nbt.NBTTagCompound;
import game.world.Explosion;
import game.world.World;
@ -89,4 +90,8 @@ public class EntityExplosion extends Entity
public boolean isSendingVeloUpdates() {
return false;
}
public EntityType getType() {
return EntityType.EXPLOSIVE;
}
}