Fixed Mixups in mappings (this could fix the bug introducded)

This commit is contained in:
lucsoft
2021-06-03 18:12:39 +02:00
parent 7aa803370e
commit 3e2d3e8fe8

View File

@@ -326,7 +326,7 @@ public final class RobotEntity extends Entity implements Robot {
}
@Override
public boolean canBeCollidedWith() {
public boolean isPickable() {
return true;
}
@@ -339,6 +339,11 @@ public final class RobotEntity extends Entity implements Robot {
public void push(final Entity entity) {
}
@Override
public boolean canBeCollidedWith() {
return true;
}
@Override
public boolean canSpawnSprintParticle() {
return false;