mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'upside-down-spring-stars' into 'master'
Fix spring stars not spawning for upside down vertical springs See merge request KartKrew/Kart!818
This commit is contained in:
commit
b42d52e80c
1 changed files with 1 additions and 1 deletions
|
|
@ -406,7 +406,7 @@ boolean P_DoSpring(mobj_t *spring, mobj_t *object)
|
|||
K_TumbleInterrupt(object->player);
|
||||
P_ResetPlayer(object->player);
|
||||
|
||||
object->player->springstars = max(vertispeed, horizspeed) / FRACUNIT / 2;
|
||||
object->player->springstars = max(abs(vertispeed), horizspeed) / FRACUNIT / 2;
|
||||
object->player->springcolor = starcolor;
|
||||
|
||||
// Less friction when hitting springs
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue