mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Skip emerald bounce logic in Y_Ticker on dedicated
This commit is contained in:
parent
e5a1fee759
commit
6ff37b47d9
1 changed files with 5 additions and 1 deletions
|
@ -1133,7 +1133,11 @@ void Y_Ticker(void)
|
|||
}
|
||||
|
||||
// emerald bounce
|
||||
if (intertic <= 1)
|
||||
if (dedicated)
|
||||
{
|
||||
// dedicated servers don't need this, especially since it crashes when stagefailed
|
||||
}
|
||||
else if (intertic <= 1)
|
||||
{
|
||||
data.spec.emeraldbounces = 0;
|
||||
data.spec.emeraldmomy = 20;
|
||||
|
|
Loading…
Reference in a new issue