mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Less strong
Min duration 7->6
This commit is contained in:
parent
78f8c53353
commit
d29e831c8e
1 changed files with 2 additions and 2 deletions
|
|
@ -11332,7 +11332,7 @@ static void K_UpdatePlayerWaypoints(player_t *const player)
|
|||
|
||||
INT32 K_GetKartRingPower(const player_t *player, boolean boosted)
|
||||
{
|
||||
fixed_t ringPower = ((9 - player->kartspeed) + (9 - player->kartweight)) * (FRACUNIT/4);
|
||||
fixed_t ringPower = ((9 - player->kartspeed) + (9 - player->kartweight)) * (FRACUNIT/3);
|
||||
|
||||
if (boosted == true)
|
||||
{
|
||||
|
|
@ -11344,7 +11344,7 @@ INT32 K_GetKartRingPower(const player_t *player, boolean boosted)
|
|||
|
||||
INT32 K_GetFullKartRingPower(const player_t *player, boolean boosted)
|
||||
{
|
||||
return 7 + K_GetKartRingPower(player, boosted);
|
||||
return 6 + K_GetKartRingPower(player, boosted);
|
||||
}
|
||||
|
||||
// Returns false if this player being placed here causes them to collide with any other player
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue