mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-23 04:32:50 -04:00
Fix all cases where a %S was before a space.
This commit is contained in:
parent
bf291fa062
commit
b8a306e62c
@ -36,7 +36,7 @@ namespace MCGalaxy.Commands.Building {
|
||||
static void PerformRedo(Player p) {
|
||||
UndoDrawOpEntry[] entries = p.DrawOps.Items;
|
||||
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--) {
|
||||
@ -50,7 +50,7 @@ namespace MCGalaxy.Commands.Building {
|
||||
Player.Message(p, "Redo performed.");
|
||||
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.");
|
||||
}
|
||||
|
||||
|
@ -88,7 +88,7 @@ namespace MCGalaxy.Commands.Building {
|
||||
}
|
||||
|
||||
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.");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user