/// <summary> Despawns this entity to all players in the entity's world. </summary> public void Despawn() { World world = WorldIn(); if (world != null) { world.Players.Send(Packet.MakeRemoveEntity(ID)); } }