Skip to content

Commit

Permalink
Improve Mixin config creation error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sfPlayer1 committed Oct 20, 2024
1 parent 362bc05 commit 686b59f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static void init(EnvType side, FabricLoaderImpl loader) {
try {
Mixins.addConfiguration(config);
} catch (Throwable t) {
throw new RuntimeException(String.format("Error creating Mixin config %s for mod %s", config, mod.getMetadata().getId()), t);
throw new RuntimeException(String.format("Error parsing or using Mixin config %s for mod %s", config, mod.getMetadata().getId()), t);
}
}
}
Expand Down

0 comments on commit 686b59f

Please # to comment.