Simplify help for some commands

This commit is contained in:
UnknownShadow200 2017-05-18 17:21:08 +10:00
parent a44b630464
commit 4f70417329
5 changed files with 3 additions and 8 deletions

View File

@ -124,9 +124,8 @@ namespace MCGalaxy.Commands.Moderation {
public override void Help(Player p) {
Player.Message(p, "%T/highlight [player] <timespan>");
Player.Message(p, "%HHighlights blocks modified by [player] in the past <timespan>");
Player.Message(p, "%HHighlights blocks changed by [player] in the past <timespan>");
Player.Message(p, "%H If <timespan> is not given, highlights for last 30 minutes");
Player.Message(p, "%H e.g. to highlight for 90 minutes, <timespan> would be %S1h30m");
Player.Message(p, "&c/highlight cannot be disabled, use /reload to un-highlight");
}
}

View File

@ -161,7 +161,6 @@ namespace MCGalaxy.Commands.Moderation {
public override void Help(Player p) {
Player.Message(p, "%T/temprank [player] [rank] [timespan]");
Player.Message(p, "%HSets a temporary rank for the specified player.");
Player.Message(p, "%H e.g. to temprank for 90 minutes, [timespan] would be %S1h30m");
Player.Message(p, "%T/temprank [player] info");
Player.Message(p, "%HLists information about the temp rank for the given player.");
Player.Message(p, "%T/temprank [player] delete %H- Removes player's temp rank.");

View File

@ -56,11 +56,10 @@ namespace MCGalaxy.Commands.Moderation {
public override void Help(Player p) {
Player.Message(p, "%T/undoarea [player1] <player2..> <timespan>");
Player.Message(p, "%HUndoes the blockchanges made by [players] in the past <timespan> in a specific area");
Player.Message(p, "%HUndoes the blockchanges of [players] in the past <timespan> in a specific area");
Player.Message(p, "%H If <timespan> is not given, undoes 30 minutes.");
if (p == null || p.group.maxUndo == -1 || p.group.maxUndo == int.MaxValue)
Player.Message(p, "%H if <timespan> is all, &cundoes for 68 years");
Player.Message(p, "%H e.g. to undo 90 minutes, <timespan> would be %S1h30m");
}
}
}

View File

@ -87,11 +87,10 @@ namespace MCGalaxy.Commands.Moderation {
public override void Help(Player p) {
Player.Message(p, "%T/undoplayer [player1] <player2..> <timespan>");
Player.Message(p, "%HUndoes the blockchanges made by [players] in the past <timespan>");
Player.Message(p, "%HUndoes the block changes of [players] in the past <timespan>");
Player.Message(p, "%H If <timespan> is not given, undoes 30 minutes.");
if (p == null || p.group.maxUndo == -1 || p.group.maxUndo == int.MaxValue)
Player.Message(p, "%H if <timespan> is all, &cundoes for 68 years");
Player.Message(p, "%H e.g. to undo 90 minutes, <timespan> would be %S1h30m");
}
}
}

View File

@ -132,7 +132,6 @@ namespace MCGalaxy.Commands.Building {
Player.Message(p, "%T/undo %H- Undoes your last draw operation");
Player.Message(p, "%T/undo [timespan]");
Player.Message(p, "%HUndoes your blockchanges in the past [timespan]");
Player.Message(p, "%H e.g. to undo 90 minutes, <timespan> would be %S1h30m");
if (p == null || p.group.maxUndo == -1 || p.group.maxUndo == int.MaxValue)
Player.Message(p, "%H if <timespan> is all, &cundoes for 68 years");
Player.Message(p, "%T/undo physics [seconds] %H- Undoes physics on current map");