diff --git a/MCGalaxy/Commands/Moderation/CmdHighlight.cs b/MCGalaxy/Commands/Moderation/CmdHighlight.cs index 54cf90bb4..e8a13db27 100644 --- a/MCGalaxy/Commands/Moderation/CmdHighlight.cs +++ b/MCGalaxy/Commands/Moderation/CmdHighlight.cs @@ -124,9 +124,8 @@ namespace MCGalaxy.Commands.Moderation { public override void Help(Player p) { Player.Message(p, "%T/highlight [player] "); - Player.Message(p, "%HHighlights blocks modified by [player] in the past "); + Player.Message(p, "%HHighlights blocks changed by [player] in the past "); Player.Message(p, "%H If is not given, highlights for last 30 minutes"); - Player.Message(p, "%H e.g. to highlight for 90 minutes, would be %S1h30m"); Player.Message(p, "&c/highlight cannot be disabled, use /reload to un-highlight"); } } diff --git a/MCGalaxy/Commands/Moderation/CmdTempRank.cs b/MCGalaxy/Commands/Moderation/CmdTempRank.cs index f97ab3cfc..75bb5d318 100644 --- a/MCGalaxy/Commands/Moderation/CmdTempRank.cs +++ b/MCGalaxy/Commands/Moderation/CmdTempRank.cs @@ -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."); diff --git a/MCGalaxy/Commands/Moderation/CmdUndoArea.cs b/MCGalaxy/Commands/Moderation/CmdUndoArea.cs index edbb0f862..e37c3aa6a 100644 --- a/MCGalaxy/Commands/Moderation/CmdUndoArea.cs +++ b/MCGalaxy/Commands/Moderation/CmdUndoArea.cs @@ -56,11 +56,10 @@ namespace MCGalaxy.Commands.Moderation { public override void Help(Player p) { Player.Message(p, "%T/undoarea [player1] "); - Player.Message(p, "%HUndoes the blockchanges made by [players] in the past in a specific area"); + Player.Message(p, "%HUndoes the blockchanges of [players] in the past in a specific area"); Player.Message(p, "%H If is not given, undoes 30 minutes."); if (p == null || p.group.maxUndo == -1 || p.group.maxUndo == int.MaxValue) Player.Message(p, "%H if is all, &cundoes for 68 years"); - Player.Message(p, "%H e.g. to undo 90 minutes, would be %S1h30m"); } } } diff --git a/MCGalaxy/Commands/Moderation/CmdUndoPlayer.cs b/MCGalaxy/Commands/Moderation/CmdUndoPlayer.cs index d2e61e34c..f60e75357 100644 --- a/MCGalaxy/Commands/Moderation/CmdUndoPlayer.cs +++ b/MCGalaxy/Commands/Moderation/CmdUndoPlayer.cs @@ -87,11 +87,10 @@ namespace MCGalaxy.Commands.Moderation { public override void Help(Player p) { Player.Message(p, "%T/undoplayer [player1] "); - Player.Message(p, "%HUndoes the blockchanges made by [players] in the past "); + Player.Message(p, "%HUndoes the block changes of [players] in the past "); Player.Message(p, "%H If is not given, undoes 30 minutes."); if (p == null || p.group.maxUndo == -1 || p.group.maxUndo == int.MaxValue) Player.Message(p, "%H if is all, &cundoes for 68 years"); - Player.Message(p, "%H e.g. to undo 90 minutes, would be %S1h30m"); } } } diff --git a/MCGalaxy/Commands/building/CmdUndo.cs b/MCGalaxy/Commands/building/CmdUndo.cs index 00a32ef0e..cc0edb459 100644 --- a/MCGalaxy/Commands/building/CmdUndo.cs +++ b/MCGalaxy/Commands/building/CmdUndo.cs @@ -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, would be %S1h30m"); if (p == null || p.group.maxUndo == -1 || p.group.maxUndo == int.MaxValue) Player.Message(p, "%H if is all, &cundoes for 68 years"); Player.Message(p, "%T/undo physics [seconds] %H- Undoes physics on current map");