Fix Entities

This commit is contained in:
Arcaratus 2015-07-20 19:56:29 -04:00
parent 724f09c130
commit 06df5f5e39
8 changed files with 18 additions and 18 deletions

View file

@ -361,10 +361,10 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
if (par1)
{
this.dataWatcher.updateObject(16, b0 | 2);
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2)));
} else
{
this.dataWatcher.updateObject(16, b0 & -3);
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3)));
}
}