From ce8daed885b58a249e5a121561b37b992923be55 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Sun, 1 Oct 2023 10:35:00 +0100 Subject: [PATCH] remove references to loadedchunks --- Core/src/main/java/com/plotsquared/core/command/Debug.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Debug.java b/Core/src/main/java/com/plotsquared/core/command/Debug.java index 242f26bb7..6034ceff1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Debug.java +++ b/Core/src/main/java/com/plotsquared/core/command/Debug.java @@ -71,7 +71,7 @@ public class Debug extends SubCommand { TranslatableCaption.of("commandconfig.command_syntax"), TagResolver.resolver( "value", - Tag.inserting(Component.text("/plot debug ")) + Tag.inserting(Component.text("/plot debug ")) ) ); } @@ -186,7 +186,7 @@ public class Debug extends SubCommand { @Override public Collection tab(final PlotPlayer player, String[] args, boolean space) { - return Stream.of("loadedchunks", "debug-players", "entitytypes") + return Stream.of("debug-players", "entitytypes") .filter(value -> value.startsWith(args[0].toLowerCase(Locale.ENGLISH))) .map(value -> new Command(null, false, value, "plots.admin", RequiredType.NONE, null) { }).collect(Collectors.toList());