Created
December 15, 2014 09:43
-
-
Save Cazzar/70faa02cec3dd463276d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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