Skip to content

Commit

Permalink
Fix 1.18.2 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
Provismet committed Oct 2, 2023
1 parent a4d18da commit 68a8432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/provismet/vmcmc/ClientVMC.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ClientVMC implements ClientModInitializer {
public static final Logger LOGGER = LoggerFactory.getLogger(MODID);

public static Identifier identifier (String path) {
return Identifier.of(MODID, path);
return new Identifier(MODID, path);
}

@Override
Expand Down

0 comments on commit 68a8432

Please sign in to comment.