mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
- 'Player' is turbo! cheat is no longer shown in single player.
This commit is contained in:
parent
5be74890b7
commit
8d95ee6882
1 changed files with 1 additions and 1 deletions
|
@ -1195,7 +1195,7 @@ void G_Ticker ()
|
||||||
}
|
}
|
||||||
|
|
||||||
// check for turbo cheats
|
// 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 )
|
!(gametic&31) && ((gametic>>5)&(MAXPLAYERS-1)) == i )
|
||||||
{
|
{
|
||||||
Printf ("%s is turbo!\n", players[i].userinfo.GetName());
|
Printf ("%s is turbo!\n", players[i].userinfo.GetName());
|
||||||
|
|
Loading…
Reference in a new issue