Skip to content

Commit

Permalink
Update SplashTextResourceSupplierReplacer.java
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Jul 12, 2024
1 parent 5340ada commit bd8fd99
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@ private void get(CallbackInfoReturnable<SplashTextRenderer> cir) {
}

if (splashText != null) {
Splasher.LOGGER.info(
"Loaded splash text: '" + splashText + "' in language "
+ (!localized ? "en_us" : MinecraftClient.getInstance().getLanguageManager().getLanguage()) + "."
Splasher.LOGGER.info(
"Loaded splash text: '{}' in language {}.",
splashText,
!localized ? "en_us" : MinecraftClient.getInstance().getLanguageManager().getLanguage()
);
} else {
Splasher.LOGGER.warn("Loaded empty splash text.");
Expand Down

0 comments on commit bd8fd99

Please sign in to comment.