v2.2.0: fixed crystal spire and sentry visually turning

This commit is contained in:
Evan Debenham
2023-10-16 14:23:05 -04:00
parent 386e086130
commit c5fac25ed6
2 changed files with 10 additions and 0 deletions

View File

@@ -422,6 +422,11 @@ public class SentryRoom extends SpecialRoom {
baseY = y;
}
@Override
public void turnTo(int from, int to) {
//do nothing
}
@Override
public void update() {
super.update();

View File

@@ -119,6 +119,11 @@ public abstract class CrystalSpireSprite extends MobSprite {
}
}
@Override
public void turnTo(int from, int to) {
//do nothing
}
protected abstract int texOffset();
public static class Blue extends CrystalSpireSprite {