Chocohead

Results 6 issues of Chocohead

Related to #68 Just an idea to save people needing mixin plugins for mixins that depend on other mods in a way that doesn't need changes within Mixin itself. Not...

enhancement

Supplants #50, effectively applies #54. All access transformations have been updated, as have the MCP mappings and the test mod now compiles. Still need to update some overwrite Mixins that...

The power tiers are wrong: - LV is 8 EU/t, should be 32 EU/t - MV is 32 EU/t, should be 128 EU/t - HV is 128 EU/t, should be...

Player had mentioned this a few weeks ago, right now local capture with `@Inject` is a liability whenever the target code changes. `@ModifyVariable` has a more ideal local targeting system,...

Somewhat related to #10, an [`INameMappingService`](https://github.com/cpw/modlauncher/blob/master/src/main/java/cpw/mods/modlauncher/api/INameMappingService.java) can map class names just like it can do methods and fields but there's nothing exposed in the coremod API to be able to...

Noticed this when trying to read zip entries by their declared size: ```java try (ZipOutputStream zip = new ZipOutputStream(new FileOutputStream("test.zip"))) { zip.putNextEntry(new ZipEntry("example")); byte[] in = new byte[3000]; //Just something...