mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-03-25 04:11:05 +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
b4757779cd
commit
d5a2fb9317
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…
Reference in a new issue