mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2024-12-20 15:57:49 +01:00
Small fix.
This commit is contained in:
parent
064087b659
commit
f0d6c306c3
@ -24,7 +24,7 @@ public class AlignCommand extends HologramSubCommand {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPossibleArguments() {
|
public String getPossibleArguments() {
|
||||||
return "<X|Y|Z|XZ> <hologramToAlign> <referenceHologram>";
|
return "<X|Y|Z|XZ> <hologram> <referenceHologram>";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -44,7 +44,7 @@ public class AlignCommand extends HologramSubCommand {
|
|||||||
|
|
||||||
Location loc = hologram.getLocation();
|
Location loc = hologram.getLocation();
|
||||||
|
|
||||||
if (args[0].contains("x")) {
|
if (args[0].equalsIgnoreCase("x")) {
|
||||||
loc.setX(referenceHologram.getX());
|
loc.setX(referenceHologram.getX());
|
||||||
} else if (args[0].equalsIgnoreCase("y")) {
|
} else if (args[0].equalsIgnoreCase("y")) {
|
||||||
loc.setY(referenceHologram.getY());
|
loc.setY(referenceHologram.getY());
|
||||||
@ -56,7 +56,7 @@ public class AlignCommand extends HologramSubCommand {
|
|||||||
} else {
|
} else {
|
||||||
throw new CommandException("You must specify either X, Y, Z or XZ, " + args[0] + " is not a valid axis.");
|
throw new CommandException("You must specify either X, Y, Z or XZ, " + args[0] + " is not a valid axis.");
|
||||||
}
|
}
|
||||||
|
|
||||||
hologram.setLocation(loc);
|
hologram.setLocation(loc);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user