fixed robot size, deactivate robot collisions
This commit is contained in:
parent
87c7c9043f
commit
b462bc6dd7
1 changed files with 17 additions and 2 deletions
|
@ -116,8 +116,8 @@ public class EntityRobot extends EntityRobotBase implements
|
|||
laser.isVisible = false;
|
||||
entityCollisionReduction = 1F;
|
||||
|
||||
width = 0.5F;
|
||||
height = 0.5F;
|
||||
width = 0.25F;
|
||||
height = 0.25F;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -790,4 +790,19 @@ public class EntityRobot extends EntityRobotBase implements
|
|||
|
||||
super.setDead();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canBePushed() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void collideWithEntity(Entity par1Entity) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void applyEntityCollision(Entity par1Entity) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue