mirror of
https://github.com/HibiscusMC/HMCCosmetics.git
synced 2025-12-28 19:39:14 +00:00
Fixed color issue in dye menu
This commit is contained in:
@@ -133,7 +133,7 @@ public class ItemSerializer implements TypeSerializer<GuiItem> {
|
||||
if (colorNode.virtual()) {
|
||||
color = null;
|
||||
} else {
|
||||
color = Color.fromBGR(redNode.getInt(), greenNode.getInt(), blueNode.getInt());
|
||||
color = Color.fromRGB(redNode.getInt(), greenNode.getInt(), blueNode.getInt());
|
||||
}
|
||||
|
||||
final Map<Enchantment, Integer> enchantments =
|
||||
|
||||
Reference in New Issue
Block a user