You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having issues in specific situations when trying to use reob to reobfuscate a mod. Specifically here's some examples I've pulled out with JD-GUI from the reob'ed jar. These two examples are from two different classes.
public <T extends Item> T getItem(String name)
{
return (up)this.registeredMinecraftObjects.get(name);
}
// FloodFillState is a mod class
private List<FloodFillState> getBlocksToBreak(World world, int x, int y, int z, Block wood, int woodMeta, Block leaves, int leavesMeta) {
// ... <snip>
}
These seem to be representative of all the issues we've run into.
The text was updated successfully, but these errors were encountered:
In short, we have a separate src folder from MCP and to date that project has also compiled to our own bin folder too. BON worked great for that (small) project, but when I tried to move that build system across to a larger project I ran into the issues above. Reason I want to stick with this system? Well, mostly because 4 second builds in jenkins are awesome. I may just try to hack it together with MCP's reobf though if this really isn't supported in BON.
I'm having issues in specific situations when trying to use reob to reobfuscate a mod. Specifically here's some examples I've pulled out with JD-GUI from the reob'ed jar. These two examples are from two different classes.
These seem to be representative of all the issues we've run into.
The text was updated successfully, but these errors were encountered: