mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-22 03:55:18 -04:00
Fix /copy sometimes saying origin on Z axis is at min or max when it should be the opposite
This commit is contained in:
parent
782e274a5b
commit
62ed6f3642
@ -150,7 +150,7 @@ namespace MCGalaxy.Commands.Building {
|
||||
Player.Message(p, "Copied &a{0} %Sblocks, origin at ({1}, {2}, {3}) corner", cState.UsedBlocks,
|
||||
cState.OriginX == cState.X ? "Min" : "Max",
|
||||
cState.OriginY == cState.Y ? "Min" : "Max",
|
||||
cState.OriginY == cState.Y ? "Min" : "Max");
|
||||
cState.OriginZ == cState.Z ? "Min" : "Max");
|
||||
if (!cState.PasteAir) {
|
||||
Player.Message(p, "To also copy air blocks, use %T/Copy Air");
|
||||
}
|
||||
|
@ -180,7 +180,7 @@ namespace MCGalaxy {
|
||||
|
||||
GroupList.Sort((a, b) => a.Permission.CompareTo(b.Permission));
|
||||
standard = Find(ServerConfig.DefaultRankName);
|
||||
if (standard == null) standard = GuestRank;
|
||||
if (standard == null) standard = GuestRank;
|
||||
|
||||
OnGroupLoadEvent.Call();
|
||||
reloading = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user