queue fix

This commit is contained in:
SuperRonanCraft
2023-02-19 23:59:06 -05:00
parent 96639b8d22
commit 593d8c80f3
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
<groupId>me.SuperRonanCraft</groupId>
<artifactId>BetterRTP</artifactId>
<packaging>jar</packaging>
<version>3.6.2-DEV</version>
<version>3.6.2</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>

View File

@@ -49,7 +49,7 @@ public class CmdQueue implements RTPCommand {
List<String> info = new ArrayList<>();
for (World w : Bukkit.getWorlds())
info.addAll(queueGetWorld(p, w));
info.add("&eTotal of &a%amount% &egenerated locations".replace("%amount%", String.valueOf(DatabaseHandler.getQueue().getCount())));
info.add("&eTotal of &a%amount% &egenerated locations".replace("%amount%", String.valueOf(info.size())));
sendInfo(p, info);
}