mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-10-02 01:53:10 -04:00
Add /lb alias for /line (For fCraft compatibility), remove '/bs' shortcut for /blockspeed (as if anyone even used it)
This commit is contained in:
parent
3fbb77c470
commit
aac7b7c99b
@ -20,7 +20,6 @@ using System;
|
||||
namespace MCGalaxy.Commands.Maintenance {
|
||||
public sealed class CmdBlockSpeed : Command2 {
|
||||
public override string name { get { return "BlockSpeed"; } }
|
||||
public override string shortcut { get { return "bs"; } }
|
||||
public override string type { get { return CommandTypes.Moderation; } }
|
||||
public override LevelPermission defaultRank { get { return LevelPermission.Operator; } }
|
||||
|
||||
|
@ -23,6 +23,9 @@ namespace MCGalaxy.Commands.Building {
|
||||
public sealed class CmdLine : DrawCmd {
|
||||
public override string name { get { return "Line"; } }
|
||||
public override string shortcut { get { return "l"; } }
|
||||
public override CommandAlias[] Aliases {
|
||||
get { return new[] { new CommandAlias("ln") }; }
|
||||
}
|
||||
|
||||
protected override string SelectionType { get { return "endpoints"; } }
|
||||
protected override string PlaceMessage { get { return "Place or break two blocks to determine the endpoints."; } }
|
||||
|
Loading…
x
Reference in New Issue
Block a user