mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-21 06:02:36 +00:00
Disable weather in netgames
Some people like to lag up the whole server by enabling precip, so y'know what, just turn it off in netgames. Weather can just stay a Record Attack/splitscreen only feature now I guess
This commit is contained in:
parent
64c8423897
commit
d9998d94fb
1 changed files with 2 additions and 1 deletions
|
|
@ -9169,7 +9169,8 @@ void P_SpawnPrecipitation(void)
|
|||
subsector_t *precipsector = NULL;
|
||||
precipmobj_t *rainmo = NULL;
|
||||
|
||||
if (dedicated || !cv_precipdensity.value || curWeather == PRECIP_NONE)
|
||||
if (dedicated || !cv_precipdensity.value || curWeather == PRECIP_NONE
|
||||
|| netgame) // SRB2Kart
|
||||
return;
|
||||
|
||||
// Use the blockmap to narrow down our placing patterns
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue