This commit is contained in:
Pablo 2025-08-18 19:29:27 +02:00
parent bd911d177b
commit 8a7d62eea1
1 changed files with 2 additions and 1 deletions

View File

@ -239,7 +239,8 @@ void EnPoRelay_Race(EnPoRelay* this, PlayState* play) {
}
speedXZ = 30.0f * multiplier;
Actor_Spawn(&play->actorCtx, play, ACTOR_EN_HONOTRAP,
Math_CosS(this->yawTowardsPathPoint) * speedXZ + this->actor.world.pos.x, this->actor.world.pos.y,
Math_CosS(this->yawTowardsPathPoint) * speedXZ + this->actor.world.pos.x,
this->actor.world.pos.y,
Math_SinS(this->yawTowardsPathPoint) * speedXZ + this->actor.world.pos.z, 0,
(this->yawTowardsPathPoint + 0x8000) - (0x2000 * multiplier), 0, HONOTRAP_TYPE_FLAME_DROP);
}