Skip to content

Commit

Permalink
quick fix to previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Nov 9, 2023
1 parent cd81a92 commit 6cefa31
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ public static void init() {
}
} catch (RuntimeException e) {
ResourceLocation fluidId = ForgeRegistries.FLUIDS.getKey(fluid);
Log.error("Caught exception while checking the fluid type of {}: {}", fluidId, e.getMessage());
Log.error("Caught exception while checking the fluid type of %s: %s", fluidId, e.getMessage());
if (fluidId != null) {
Log.error("Looks like {} isn't setting a fluid type for this fluid, please report to the mod author", fluidId.getNamespace());
Log.error("Looks like %s isn't setting a fluid type for this fluid, please report to the mod author", fluidId.getNamespace());
}
}
}
Expand Down

0 comments on commit 6cefa31

Please sign in to comment.