Skip to content

Commit

Permalink
Fix incorrect mod ID for custom EMC mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Apr 30, 2024
1 parent b89ce8e commit 19d40d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/gripe/_90/appliede/AppliedE.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public static boolean useCustomMapper() {
}

private static void registerEMC(ItemLike item, int emc) {
APICustomEMCMapper.INSTANCE.registerCustomEMC("ae2", new CustomEMCRegistration(NSSItem.createItem(item), emc));
APICustomEMCMapper.INSTANCE.registerCustomEMC(MODID, new CustomEMCRegistration(NSSItem.createItem(item), emc));
}

private static <P extends IPart> Item part(Class<P> partClass, Function<IPartItem<P>, P> factory) {
Expand Down

0 comments on commit 19d40d8

Please sign in to comment.