- 'Player' is turbo! cheat is no longer shown in single player.

This commit is contained in:
Rachael Alexanderson 2017-07-21 17:21:58 -04:00
parent 5be74890b7
commit 8d95ee6882

View file

@ -1195,7 +1195,7 @@ void G_Ticker ()
}
// check for turbo cheats
if (turbo > 100.f && cmd->ucmd.forwardmove > TURBOTHRESHOLD &&
if (multiplayer && turbo > 100.f && cmd->ucmd.forwardmove > TURBOTHRESHOLD &&
!(gametic&31) && ((gametic>>5)&(MAXPLAYERS-1)) == i )
{
Printf ("%s is turbo!\n", players[i].userinfo.GetName());