Removed leftover print statements.

This commit is contained in:
bconlon 2020-06-24 13:43:32 -07:00
parent c2856f6904
commit 7f2532cc03

View file

@ -426,14 +426,12 @@ public class EntitySunSpirit extends EntityFlying implements IMob, IAetherBoss {
@Override @Override
public boolean interact(EntityPlayer player) { public boolean interact(EntityPlayer player) {
if (this.chatWithMe(player)) { if (this.chatWithMe(player)) {
System.out.println("s: " + this.dataWatcher.getWatchableObjectByte(18));
this.rotary = (180D / Math.PI) * Math.atan2(this.posX - player.posX, this.posZ - player.posZ); this.rotary = (180D / Math.PI) * Math.atan2(this.posX - player.posX, this.posZ - player.posZ);
this.setAttackTarget(player); this.setAttackTarget(player);
this.setDoor(BlocksAether.locked_hellfire_stone); this.setDoor(BlocksAether.locked_hellfire_stone);
return true; return true;
} }
System.out.println("s: " + this.dataWatcher.getWatchableObjectByte(18));
return false; return false;
} }