Skip to content

Instantly share code, notes, and snippets.

@Cazzar
Created December 15, 2014 09:43
Show Gist options
  • Save Cazzar/70faa02cec3dd463276d to your computer and use it in GitHub Desktop.
Save Cazzar/70faa02cec3dd463276d to your computer and use it in GitHub Desktop.
public void missingMappings(FMLMissingMappingsEvent e) {
for (FMLMissingMappingsEvent.MissingMapping mapping : e.getAll()) {
if ("ukeboxreloaded:blockJukebox".equals(mapping.name)) { //You know, because FML has a small mapping issue.
mapping.remap(proxy.jukeBox);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment