From 2ba83d8cc59e0137852787927834cf0de569c336 Mon Sep 17 00:00:00 2001 From: LoJoSho Date: Fri, 10 Mar 2023 16:06:51 -0600 Subject: [PATCH] fix: default color being white --- .../com/hibiscusmc/hmccosmetics/command/CosmeticCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/com/hibiscusmc/hmccosmetics/command/CosmeticCommand.java b/common/src/main/java/com/hibiscusmc/hmccosmetics/command/CosmeticCommand.java index 98559480..09afbd79 100644 --- a/common/src/main/java/com/hibiscusmc/hmccosmetics/command/CosmeticCommand.java +++ b/common/src/main/java/com/hibiscusmc/hmccosmetics/command/CosmeticCommand.java @@ -95,7 +95,7 @@ public class CosmeticCommand implements CommandExecutor { return true; } Cosmetic cosmetic; - Color color = Color.WHITE; + Color color = null; if (sender instanceof Player) player = ((Player) sender).getPlayer(); if (sender.hasPermission("hmccosmetics.cmd.apply.other")) {