Update to 1.16.2

This commit is contained in:
Pyrofab
2020-08-17 09:49:13 +02:00
parent 7e8194a529
commit fd84d68897
6 changed files with 22 additions and 23 deletions

View File

@@ -14,14 +14,14 @@ public class MixinScreen {
@ModifyConstant(
method = "renderBackground(Lnet/minecraft/client/util/math/MatrixStack;I)V",
constant = @Constant(intValue = -1072689136))
public int getFirstBackgroundColor(int color) {
private int getFirstBackgroundColor(int color) {
return Blur.INSTANCE.getBackgroundColor(false);
}
@ModifyConstant(
method = "renderBackground(Lnet/minecraft/client/util/math/MatrixStack;I)V",
constant = @Constant(intValue = -804253680))
public int getSecondBackgroundColor(int color) {
private int getSecondBackgroundColor(int color) {
return Blur.INSTANCE.getBackgroundColor(true);
}
}