klugemonkey

Results 13 comments of 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)); } } ```

"Does minecraft support dragging?" Yes, you should handle both InventoryClickEvent and also InventoryDragEvent when a user clicks on an item in the inventory of a container.

Seems like they just dropped off now, after I setup the older server, then made public, then made disabled. But not sure why this is even necessary. Or did you...

Something doesn't seem right with the upgrading scenario when going from one version to another, possibly for FTB servers that use the base64 stuff.

Not sure if this is just FTB servers, or non Creeperhost servers, or just my configuration at this point.

Will fire up the new version to see if it publishes properly for the version.

Hopefully this is not a case where you have to disable the listing first, then wait for it to drop off the list, before upgrading the server instance, because that...

IMHO, should probably allow disabling or disable altogether updates from within the client for .deb installs. The client should probably inform the user that an update is available, but let...