mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-26 00:16:23 +00:00
Merge branch 'recorrect-ringbox-buff-mistake' into 'master'
Ringbox now actually gives +10% more See merge request kart-krew-dev/ring-racers-internal!2707
This commit is contained in:
commit
aabfe728c2
1 changed files with 2 additions and 2 deletions
|
|
@ -13911,9 +13911,9 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
|||
{
|
||||
player->lastringboost = player->ringboost;
|
||||
UINT32 award = 5*player->ringboxaward + 10;
|
||||
award = 5 * award / 4; // 125% Payout Increase (as of 7/23/25)
|
||||
award = 5 * award / 4; // 125% Payout Increase
|
||||
if (!K_ThunderDome())
|
||||
award = 5 * award / 4;
|
||||
award = 3 * award / 2;
|
||||
|
||||
if (modeattacking & ATTACKING_SPB)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue