Skip to content

Commit

Permalink
- 'Player' is turbo! cheat is no longer shown in single player.
Browse files Browse the repository at this point in the history
  • Loading branch information
madame-rachelle committed Jul 21, 2017
1 parent 5be7489 commit 8d95ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/g_game.cpp
Expand Up @@ -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());
Expand Down

0 comments on commit 8d95ee6

Please sign in to comment.