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

@@ -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);
}