Fixed hue issue

This commit is contained in:
stijnb1234 2020-05-19 10:13:06 +02:00
parent 50a4cf1576
commit bbb34a47c9

View file

@ -109,7 +109,7 @@ public class MCTPAudioCmd implements CommandExecutor {
data.put("task", "HUE");
data.put("rgb", r + ":" + g + ":" + b);
data.put("type", type);
data.put("type", type.name());
data.put("uuid", p.getUniqueId().toString().replace("-", ""));
Main.getClient().sendData(data);
}