fix API_CALLABLE bool

This commit is contained in:
Ponmander 2025-08-11 04:18:29 -05:00
parent 42a12410e1
commit 407668ea2e
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
API_CALLABLE(N(IsJungleFuzzyAlive)) {
if (get_enemy_safe(NPC_JungleFuzzy) == nullptr) {
script->varTable[0] = true;
script->varTable[0] = false;
} else {
script->varTable[0] = true;
}