This commit is contained in:
StevenRS11
2014-01-21 03:38:02 -05:00
parent fba4a1195a
commit 26c8581857
3 changed files with 14 additions and 5 deletions

View File

@@ -145,7 +145,7 @@ public class MobMonolith extends EntityFlying implements IMob
this.moveEntity(0, .1, 0);
}
EntityPlayer entityPlayer = this.worldObj.getClosestPlayerToEntity(this, 30);
EntityPlayer entityPlayer = this.worldObj.getClosestPlayerToEntity(this, 60);
if (entityPlayer != null)
{
@@ -200,11 +200,11 @@ public class MobMonolith extends EntityFlying implements IMob
}
else
{
if(aggro>0)
if(aggro<this.aggroMax/2)
{
if(rand.nextInt(10)==0)
if(rand.nextInt(3)==0)
{
aggro--;
aggro++;
}
}