Fix all cases where a %S was before a space.

This commit is contained in:
UnknownShadow200 2016-09-05 22:44:28 +10:00
parent bf291fa062
commit b8a306e62c
18 changed files with 39 additions and 39 deletions

View File

@ -36,7 +36,7 @@ namespace MCGalaxy.Commands.Building {
static void PerformRedo(Player p) { static void PerformRedo(Player p) {
UndoDrawOpEntry[] entries = p.DrawOps.Items; UndoDrawOpEntry[] entries = p.DrawOps.Items;
if (entries.Length == 0) { if (entries.Length == 0) {
Player.Message(p, "You have no %T/undo%S or %T/undo <seconds>%S to redo."); return; Player.Message(p, "You have no %T/undo %Sor %T/undo [seconds] %Sto redo."); return;
} }
for (int i = entries.Length - 1; i >= 0; i--) { for (int i = entries.Length - 1; i >= 0; i--) {
@ -50,7 +50,7 @@ namespace MCGalaxy.Commands.Building {
Player.Message(p, "Redo performed."); Player.Message(p, "Redo performed.");
return; return;
} }
Player.Message(p, "No %T/undo%S or %T/undo <seconds>%S calls were " + Player.Message(p, "No %T/undo %Sor %T/undo [seconds] %Scalls were " +
"found in the last 200 draw operations."); "found in the last 200 draw operations.");
} }

View File

@ -88,7 +88,7 @@ namespace MCGalaxy.Commands.Building {
} }
Player.Message(p, "Unable to undo any draw operations, as all of the " + Player.Message(p, "Unable to undo any draw operations, as all of the " +
"past 50 draw operations are %T/undo%S or %T/undo <seconds>."); "past 50 draw operations are %T/undo %Sor %T/undo [seconds].");
Player.Message(p, "Try using %T/undo <seconds> %Sinstead."); Player.Message(p, "Try using %T/undo <seconds> %Sinstead.");
} }