This commit is contained in:
Christian Semmler 2024-12-12 08:47:29 -07:00
parent df228bd82e
commit 77c6f40cf8
2 changed files with 3 additions and 1 deletions

View File

@ -115,5 +115,6 @@ MxResult LegoRaceActor::HitActor(LegoPathActor* p_actor, MxBool p_bool)
p_actor->SetState(2);
}
}
return 0;
return SUCCESS;
}

View File

@ -499,6 +499,7 @@ MxResult LegoRaceCar::HitActor(LegoPathActor* p_actor, MxBool p_bool)
return FAILURE;
}
}
return SUCCESS;
}