v3.2.0: added an extra check on imp question completion logic

This commit is contained in:
Evan Debenham
2025-08-02 11:26:16 -04:00
committed by Evan Debenham
parent f90665e2eb
commit 00865ceeb5

View File

@@ -276,7 +276,7 @@ public class Imp extends NPC {
} }
public static boolean isCompleted() { public static boolean isCompleted() {
return completed; return spawned && completed;
} }
} }
} }