summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2016-10-04 22:38:55 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2016-10-04 22:38:55 +0200
commit6cc8a285eebd0b8e082372fd7e8d127d92b9dedc (patch)
tree0007a8ab3d7cfee057a91e3fb93eacbbd7b64496
parentc95d18d669ef3fb7445c34f0f9fa5461b2a81207 (diff)
downloadmanager-6cc8a285eebd0b8e082372fd7e8d127d92b9dedc.tar.gz
manager-6cc8a285eebd0b8e082372fd7e8d127d92b9dedc.zip
Fix "missing" message of skip command if used ingame
-rw-r--r--src/crsm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crsm.cpp b/src/crsm.cpp
index 31de32b..fc7d5b4 100644
--- a/src/crsm.cpp
+++ b/src/crsm.cpp
@@ -2586,7 +2586,7 @@ CMD_FUNCTION_IMPL(skip)
skipped = nextAutoScens.at(pos).name;
nextAutoScens.removeAt(pos);
updateNextAutoScens();
- respond(client, "\"" + skipped + "\" übersprungen.\n");
+ respond(client, " \"" + skipped + "\" übersprungen.\n"); // without the space in front it is interpreted as a "role play like" message
return Success;
}
else
@@ -2620,7 +2620,7 @@ CMD_FUNCTION_IMPL(skip)
}
else if((skipped = skipScen(pos)) != "")
{
- respond(client, "\"" + skipped + "\" übersprungen.\n");
+ respond(client, " \"" + skipped + "\" übersprungen.\n");
}
return Success;
}