Server Translation API

Server Translation API

11.4k Downloads

Disconnection reason doesn't translate

NikitaCartes opened this issue ยท 2 comments

commented

example

I made the littlest mod that reproduce that bug: https://github.com/NikitaCartes-forks/TranslationBugExample

Basically it's just:

@Mixin(PlayerManager.class)
public abstract class PlayerManagerMixin {

    @Inject(method = "checkCanJoin(Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/text/Text;", at = @At("HEAD"), cancellable = true)
    private void checkCanJoin(SocketAddress socketAddress, GameProfile profile, CallbackInfoReturnable<Text> cir) {
        TranslatableText returnText = new TranslatableText("text.bugexample.bugexample");
        cir.setReturnValue(returnText);
    }
}
commented

This should be fixed in newer versions I think

commented

I updated my mod to 1.18.2 but it's still doesn't translated