[ci skip] Add more identifying patch comments, merge related patches
This commit is contained in:
parent
864f4072c1
commit
b5b92e90d8
38 changed files with 181 additions and 229 deletions
|
@ -26,21 +26,21 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
@Override
|
||||
public BlockPos.MutableBlockPos setX(int i) {
|
||||
- super.setX(i);
|
||||
+ this.x = i; // Paper
|
||||
+ this.x = i; // Paper - force line
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockPos.MutableBlockPos setY(int i) {
|
||||
- super.setY(i);
|
||||
+ this.y = i; // Paper
|
||||
+ this.y = i; // Paper - force line
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockPos.MutableBlockPos setZ(int i) {
|
||||
- super.setZ(i);
|
||||
+ this.z = i; // Paper
|
||||
+ this.z = i; // Paper - force line
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -55,9 +55,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
- private int x;
|
||||
- private int y;
|
||||
- private int z;
|
||||
+ protected int x; // Paper - protected
|
||||
+ protected int y; // Paper - protected
|
||||
+ protected int z; // Paper - protected
|
||||
+ protected int x; // Paper - force line; protected
|
||||
+ protected int y; // Paper - force line; protected
|
||||
+ protected int z; // Paper - force line; protected
|
||||
|
||||
public static Codec<Vec3i> offsetCodec(int maxAbsValue) {
|
||||
return ExtraCodecs.validate(CODEC, (vec) -> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue