Fix typo, whoops.

This commit is contained in:
MysterD 2020-10-08 23:53:16 -07:00
parent 392471eb1f
commit 5282c461fa
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ static void spiny_act_thrown_by_lakitu(void) {
}
void bhv_spiny_override_ownership(u8* shouldOverride, u8* shouldOwn) {
if (o->parentObj == NULL || o->parentObj->activeFlags == ACTIVE_FLAG_DEACTIVED) { return; }
if (o->parentObj == NULL || o->parentObj->activeFlags == ACTIVE_FLAG_DEACTIVATED) { return; }
*shouldOverride = (o->parentObj->behavior == bhvEnemyLakitu);
*shouldOwn = network_owns_object(o->parentObj);
}