Fix incorrect suggestion

This commit is contained in:
D3v1s0m 2023-06-28 17:11:08 +05:30
parent 6a2f1d4cb8
commit 3e583f84f8
No known key found for this signature in database
GPG Key ID: 3B6EC35367B8D82E

@ -79,7 +79,7 @@ public class PropertySetCommand implements CommandHandler {
if (type == Boolean.class) return context.suggestLiteral("true", "false");
if (type == NamedTextColor.class) return context.suggestCollection(NamedTextColor.NAMES.keys());
if (type == NpcPose.class) return context.suggestEnum(NpcPose.values());
if (type == Color.class) return context.suggestLiteral("0x0F00FF", "#FFFFFF", "16711935");
if (type == Color.class) return context.suggestLiteral("0x0F00FF", "#FFFFFF");
}
}
return Collections.emptyList();