Extract ++ and -- from expressions

This commit is contained in:
thatsIch
2015-03-26 11:07:26 +01:00
parent b31f2df58d
commit 9bf8b4388f
26 changed files with 89 additions and 40 deletions
@@ -48,8 +48,9 @@ final public class EntityFloatingItem extends EntityItem
if ( !this.isDead && this.parent.isDead )
this.setDead();
if ( this.superDeath++ > 100 )
if ( this.superDeath > 100 )
this.setDead();
this.superDeath++;
this.age = ageStatic;
}