From 2ab0b17e177d3d8802233a94a6e3a78dc79bf623 Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Wed, 13 Jan 2010 03:46:22 +0000 Subject: [PATCH] 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 --- src/keybind.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/keybind.c b/src/keybind.c index 5d2158db8..0d223478f 100644 --- a/src/keybind.c +++ b/src/keybind.c @@ -2533,7 +2533,9 @@ void kf_SpeedUp( void ) if (runningMultiplayer() || bInTutorial) { if (!bInTutorial) - noMPCheatMsg(); + { + addConsoleMessage(_("Sorry, but game speed cannot be changed in multiplayer."), DEFAULT_JUSTIFY, SYSTEM_MESSAGE); + } return; } @@ -2574,7 +2576,9 @@ void kf_SlowDown( void ) if (runningMultiplayer() || bInTutorial) { if (!bInTutorial) - noMPCheatMsg(); + { + addConsoleMessage(_("Sorry, but game speed cannot be changed in multiplayer."), DEFAULT_JUSTIFY, SYSTEM_MESSAGE); + } return; }