9
0
mirror of https://github.com/HibiscusMC/HMCCosmetics.git synced 2025-12-30 12:29:16 +00:00

Dye command completitions now all slots

This commit is contained in:
LoJoSho
2022-12-08 16:09:05 -06:00
parent 4b6193496b
commit 6e450ec512

View File

@@ -47,8 +47,9 @@ public class CosmeticCommandTabComplete implements TabCompleter {
completions.add(player.getName());
}
} else if (args[0].equalsIgnoreCase("dye")) {
completions.add(CosmeticSlot.BALLOON.name());
completions.add(CosmeticSlot.BACKPACK.name());
for (CosmeticSlot slot : CosmeticSlot.values()) {
completions.add(slot.name());
}
}
}