summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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;
}