mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Battle: make level darkness more dark by default
This commit is contained in:
parent
8f53d34325
commit
d0057126e6
1 changed files with 2 additions and 1 deletions
|
|
@ -789,7 +789,8 @@ static fixed_t P_GetDarkness(tic_t start, tic_t end)
|
||||||
t = end - leveltime;
|
t = end - leveltime;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Easing_Linear((t * FRACUNIT) / DARKNESS_FADE_TIME, 0, FRACUNIT/7);
|
return Easing_Linear((t * FRACUNIT) / DARKNESS_FADE_TIME, 0,
|
||||||
|
(gametyperules & GTR_BUMPERS) ? FRACUNIT/3 : FRACUNIT/7);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue