v2.4.2: fixed blob turn cancel on add not working on UI functions

This commit is contained in:
Evan Debenham
2024-05-29 13:57:15 -04:00
committed by Evan Debenham
parent 7d225041b3
commit 4e8118cde2

View File

@@ -230,7 +230,7 @@ public abstract class Actor implements Bundlable {
}
public static int curActorPriority() {
return current != null ? current.actPriority : DEFAULT;
return current != null ? current.actPriority : HERO_PRIO;
}
public static boolean keepActorThreadAlive = true;