mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-25 14:17:29 -04:00
Simplify help for some commands
This commit is contained in:
parent
a44b630464
commit
4f70417329
@ -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");
|
||||
}
|
||||
}
|
||||
|
@ -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.");
|
||||
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user