Add /circle as alias for /sphere circle.

This commit is contained in:
UnknownShadow200 2016-07-07 15:24:20 +10:00
parent ad59115977
commit 30dd0f1bfa

View File

@ -25,7 +25,8 @@ namespace MCGalaxy.Commands.Building {
public override string shortcut { get { return "sp"; } }
public override LevelPermission defaultRank { get { return LevelPermission.AdvBuilder; } }
public override CommandAlias[] Aliases {
get { return new[] { new CommandAlias("sphereh", null, "hollow"), new CommandAlias("sph", null, "hollow") }; }
get { return new[] { new CommandAlias("sphereh", null, "hollow"), new CommandAlias("sph", null, "hollow"),
new CommandAlias("circle", null, "circle" ) }; }
}
protected override string PlaceMessage { get { return "Place a block for the centre, then another for the radius."; } }