From 83e727400e99c8e29bd579901817d2a37ecd0d1b Mon Sep 17 00:00:00 2001 From: Arceveti <73617174+Arceveti@users.noreply.github.com> Date: Thu, 30 Sep 2021 12:35:46 -0700 Subject: [PATCH] Update src/game/behaviors/king_bobomb.inc.c Co-authored-by: thecozies <79979276+thecozies@users.noreply.github.com> --- src/game/behaviors/king_bobomb.inc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/behaviors/king_bobomb.inc.c b/src/game/behaviors/king_bobomb.inc.c index ce7a0ce8..7114675a 100644 --- a/src/game/behaviors/king_bobomb.inc.c +++ b/src/game/behaviors/king_bobomb.inc.c @@ -224,7 +224,7 @@ void king_bobomb_act_5(void) { // bobomb returns home if (o->oPosY < o->oHomeY) o->oVelY = 100.0f; else { - arc_to_goal_pos(&o->oPosVec, &o->oPosVec, 100.0f, -4.0f); + arc_to_goal_pos(&o->oHomeX, &o->oPosVec, 100.0f, -4.0f); o->oSubAction++; } break;