forked from ChomeNS/chipmunkmod
Add a temporary patch for Chat message validation failed
This commit is contained in:
parent
a91b5ac1f0
commit
92612c6b32
3 changed files with 32 additions and 1 deletions
|
@ -0,0 +1,18 @@
|
||||||
|
package land.chipmunk.chipmunkmod.mixin;
|
||||||
|
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
import net.minecraft.client.network.ClientPlayNetworkHandler;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
|
||||||
|
@Mixin(net.minecraft.network.ClientConnection.class)
|
||||||
|
public class ClientConnectionMixin {
|
||||||
|
@Inject(at = @At("HEAD"), method = "disconnect", cancellable = true)
|
||||||
|
public void disconnect (Text disconnectReason, CallbackInfo ci) {
|
||||||
|
if (disconnectReason == ClientPlayNetworkHandlerAccessor.chatValidationFailedText()) {
|
||||||
|
ci.cancel();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
package land.chipmunk.chipmunkmod.mixin;
|
||||||
|
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
|
||||||
|
@Mixin(net.minecraft.client.network.ClientPlayNetworkHandler.class)
|
||||||
|
public interface ClientPlayNetworkHandlerAccessor {
|
||||||
|
@Accessor("CHAT_VALIDATION_FAILED_TEXT")
|
||||||
|
public static Text chatValidationFailedText () { throw new AssertionError(); }
|
||||||
|
}
|
|
@ -7,7 +7,9 @@
|
||||||
],
|
],
|
||||||
"client": [
|
"client": [
|
||||||
"ChatScreenMixin",
|
"ChatScreenMixin",
|
||||||
"ChatInputSuggestorMixin"
|
"ChatInputSuggestorMixin",
|
||||||
|
"ClientPlayNetworkHandlerAccessor",
|
||||||
|
"ClientConnectionMixin"
|
||||||
],
|
],
|
||||||
"injectors": {
|
"injectors": {
|
||||||
"defaultRequire": 1
|
"defaultRequire": 1
|
||||||
|
|
Loading…
Reference in a new issue