Skip to content

Commit b3f096b

Browse files
committed
Add NO_FLOW (-f) region flag for preventing liquid flow
1 parent f3b1b60 commit b3f096b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/mctourney/autoreferee/regions/AutoRefRegion.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@ public static enum Flag
3737
NO_EXPLOSIONS (1 << 3, false, 'e', "noexplosion"),
3838
NO_ACCESS (1 << 4, false, 'a', "noaccess"),
3939
NO_TELEPORT (1 << 5, false, 't', "noteleport"),
40-
SPAWNERS_ONLY (1 << 6, false, 'w', "spawnersonly");
40+
SPAWNERS_ONLY (1 << 6, false, 'w', "spawnersonly"),
41+
NO_FLOW (1 << 7, true, 'f', "noflow");
4142

4243
// generated from above values
43-
public static final String OPTIONS = "abenstw";
44+
public static final String OPTIONS = "abenstwf";
4445

4546
private int value;
4647
private String name;

0 commit comments

Comments
 (0)