Remove unnecessary tile entity from upper thorn blocks, and reminder to do the same for statue blocks

This commit is contained in:
Electroblob77
2020-06-19 16:37:03 +01:00
parent a87eca3bd8
commit c842fef2f7
4 changed files with 18 additions and 19 deletions
@@ -46,7 +46,7 @@ public class TileEntityStatue extends TileEntity implements ITickable {
/**
* The position within the petrified creature this particular tileentity holds. 1 is at the bottom.
*/
public int position = 1;
public int position = 1; // TODO: Remove this, there is no need for more than 1 TE per statue
public void setCreatureAndPart(EntityLiving entity, int position, int parts){
this.creature = entity;