Skip to content

Commit

Permalink
fix typo in asm remap handler
Browse files Browse the repository at this point in the history
  • Loading branch information
UpcraftLP committed Jul 28, 2021
1 parent 7de13af commit 05ab7f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class AsmHelper {
private static final Remapper remapHack = new Remapper() {
@Override
public String map(String internalName) {
return FabricLoader.getInstance().getMappingResolver().mapClassName(MappingFormats.INTERMEDIARY, internalName.replace('/', '.')).replace('/', '.');
return FabricLoader.getInstance().getMappingResolver().mapClassName(MappingFormats.INTERMEDIARY, internalName.replace('/', '.')).replace('.', '/');
}
};

Expand Down

0 comments on commit 05ab7f9

Please sign in to comment.