Stop accusing the player of cheating if they try to speed up or slow down the game. Speeding up and slowing down aren't exactly cheats, per se.

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@9176 4a71c877-e1ca-e34f-864e-861f7616d084
master
Guangcong Luo 2010-01-13 03:46:22 +00:00 committed by Git SVN Gateway
parent f13676935c
commit 2ab0b17e17
1 changed files with 6 additions and 2 deletions

View File

@ -2533,7 +2533,9 @@ void kf_SpeedUp( void )
if (runningMultiplayer() || bInTutorial) if (runningMultiplayer() || bInTutorial)
{ {
if (!bInTutorial) if (!bInTutorial)
noMPCheatMsg(); {
addConsoleMessage(_("Sorry, but game speed cannot be changed in multiplayer."), DEFAULT_JUSTIFY, SYSTEM_MESSAGE);
}
return; return;
} }
@ -2574,7 +2576,9 @@ void kf_SlowDown( void )
if (runningMultiplayer() || bInTutorial) if (runningMultiplayer() || bInTutorial)
{ {
if (!bInTutorial) if (!bInTutorial)
noMPCheatMsg(); {
addConsoleMessage(_("Sorry, but game speed cannot be changed in multiplayer."), DEFAULT_JUSTIFY, SYSTEM_MESSAGE);
}
return; return;
} }