33 lines
799 B
Java
33 lines
799 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.commands.execution;
|
|
|
|
public record ChainModifiers(byte flags) {
|
|
public static final ChainModifiers DEFAULT = new ChainModifiers(0);
|
|
private static final byte FLAG_FORKED = 1;
|
|
private static final byte FLAG_IS_RETURN = 2;
|
|
|
|
private ChainModifiers setFlag(byte flag) {
|
|
int newFlags = this.flags | flag;
|
|
return newFlags != this.flags ? new ChainModifiers((byte)newFlags) : this;
|
|
}
|
|
|
|
public boolean isForked() {
|
|
return (this.flags & 1) != 0;
|
|
}
|
|
|
|
public ChainModifiers setForked() {
|
|
return this.setFlag((byte)1);
|
|
}
|
|
|
|
public boolean isReturn() {
|
|
return (this.flags & 2) != 0;
|
|
}
|
|
|
|
public ChainModifiers setReturn() {
|
|
return this.setFlag((byte)2);
|
|
}
|
|
}
|
|
|