klugemonkey
klugemonkey
I think the last comment was that Mixins needed updating and stability before a LiteLoader release, but maybe Sponge in general is still sucking up all his time??
Collars still not working 1.8.3+ modules\EchoPet\pom.xml is missing dependency for EchoPet-v1_8_R3 and Dye enums (I believe used for collars) are reverse of Wool enums -> (byte) 15 - dc.getWoolData()
This fixes the issue on 1.8.3+: ``` @Override public void setCollarColor(DyeColor dc) { if (((IWolfPet) pet).isTamed()) { int colour = 15 - (int)dc.getWoolData(); this.datawatcher.watch(20, Byte.valueOf((byte)colour)); } } ```