forked from ChomeNS/chipmunkmod
still does nothing but whatever
This commit is contained in:
parent
5ca7f086cf
commit
306319e6a1
1 changed files with 2 additions and 0 deletions
|
@ -11,10 +11,12 @@ public class StringHelperMixin {
|
||||||
@Inject(method = "truncateChat", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "truncateChat", at = @At("HEAD"), cancellable = true)
|
||||||
private static void truncateChat (String text, CallbackInfoReturnable<String> cir) {
|
private static void truncateChat (String text, CallbackInfoReturnable<String> cir) {
|
||||||
cir.setReturnValue(text);
|
cir.setReturnValue(text);
|
||||||
|
cir.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "stripTextFormat", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "stripTextFormat", at = @At("HEAD"), cancellable = true)
|
||||||
private static void stripTextFormat(String text, CallbackInfoReturnable<String> cir) {
|
private static void stripTextFormat(String text, CallbackInfoReturnable<String> cir) {
|
||||||
cir.setReturnValue(text);
|
cir.setReturnValue(text);
|
||||||
|
cir.cancel();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue