mirror of
https://github.com/HibiscusMC/HMCCosmetics.git
synced 2025-12-30 20:39:13 +00:00
Dye command completitions now all slots
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user