mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 05:47:59 +01:00
Fixed unable to break the crystal heart after being placed
This commit is contained in:
parent
1e20dd908f
commit
a73a7af43c
2 changed files with 3 additions and 8 deletions
|
@ -76,7 +76,7 @@ public class ButterflyEntity extends AmbientEntity {
|
|||
|
||||
@Override
|
||||
protected Entity.MoveEffect getMoveEffect() {
|
||||
return Entity.MoveEffect.EVENTS;
|
||||
return Entity.MoveEffect.NONE;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -102,11 +102,6 @@ public class ButterflyEntity extends AmbientEntity {
|
|||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCollidable() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void pushAway(Entity entity) { }
|
||||
|
||||
|
|
|
@ -180,8 +180,8 @@ public class FloatingArtefactEntity extends Entity {
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean isCollidable() {
|
||||
return true;
|
||||
public boolean canHit() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue