Skip to content

Commit

Permalink
Fix API
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed Oct 19, 2023
1 parent 0db21e0 commit bc4f3b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public static boolean hasFeatures(long requestedFeatures) {
public static <T> void invokeEntrypoint(String name, Class<T> type, Consumer<? super T> invoker) throws RuntimeException {
if (FABRIC_0_14_23_INVOKE_ENTRYPOINTS != null) {
try {
FABRIC_0_14_23_INVOKE_ENTRYPOINTS.invoke(name, type, invoker);
FABRIC_0_14_23_INVOKE_ENTRYPOINTS.invoke(FabricLoader.getInstance(), name, type, invoker);
} catch (Throwable t) {
rethrow(t);
}
Expand Down

0 comments on commit bc4f3b5

Please sign in to comment.