v3.3.6: fixed rare mobs not spawning naturally since distortion fix

This commit is contained in:
Evan Debenham
2026-02-09 13:32:54 -05:00
parent 4f4f264f6d
commit 7927af9910

View File

@@ -248,7 +248,7 @@ public class MobSpawner extends Actor {
Class<? extends Mob> cl = rotation.get(i); Class<? extends Mob> cl = rotation.get(i);
Class<? extends Mob> alt = RARE_ALTS.get(cl); Class<? extends Mob> alt = RARE_ALTS.get(cl);
if (alt != null) { if (alt != null) {
rotation.set(i, cl); rotation.set(i, alt);
} }
} }
} }