feat(commands): add base command aliases
Release / release (push) Successful in 2m21s
CI / build (push) Successful in 53s

This commit is contained in:
dmg
2026-08-10 19:58:09 -04:00
parent 84e013ac11
commit 00aa7566ad
8 changed files with 49 additions and 5 deletions
@@ -189,7 +189,7 @@ final class BaseTeleportManager implements Listener {
public void onCommand(PlayerCommandPreprocessEvent event) {
String command = event.getMessage().toLowerCase(Locale.ROOT).split("\\s+", 2)[0];
if (command.equals("/base") || command.equals("/gotobase")
|| command.equals("/spawn") || command.equals("/home")
|| command.equals("/visit") || command.equals("/spawn") || command.equals("/home")
|| command.equals("/tp") || command.equals("/teleport")) {
cancel(event.getPlayer(), "Base teleport cancelled by another teleport command.");
}