Commit 6c1c673a3c3ceadb08addb772a59b265f6894637
1 parent
6763ac3e
Match capitalisation of client brand to previous value
Showing
1 changed file
with
1 additions
and
1 deletions
src/client/java/com/mumfrey/liteloader/client/mixin/MixinClientBrandRetriever.java
| @@ -16,7 +16,7 @@ import net.minecraft.client.ClientBrandRetriever; | @@ -16,7 +16,7 @@ import net.minecraft.client.ClientBrandRetriever; | ||
| 16 | public abstract class MixinClientBrandRetriever | 16 | public abstract class MixinClientBrandRetriever |
| 17 | { | 17 | { |
| 18 | private static final String BRANDING_VANILLA = "vanilla"; | 18 | private static final String BRANDING_VANILLA = "vanilla"; |
| 19 | - private static final String BRANDING_LITELOADER = "liteloader"; | 19 | + private static final String BRANDING_LITELOADER = "LiteLoader"; |
| 20 | 20 | ||
| 21 | @Inject(method = "getClientModName", at = @At("RETURN"), cancellable = true) | 21 | @Inject(method = "getClientModName", at = @At("RETURN"), cancellable = true) |
| 22 | private static void appendLiteLoaderBranding(CallbackInfoReturnable<String> cir) | 22 | private static void appendLiteLoaderBranding(CallbackInfoReturnable<String> cir) |