Skip to content

Commit e1decf9

Browse files
committed
Disable ghost block fix by default
1 parent 42909a7 commit e1decf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/earthcomputer/clientcommands/TempRules.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class TempRules {
3232
.setReadOnly();
3333
public static final Rule<Boolean> MOCKING_WEATHER = registerRule("mockingWeather", DataType.BOOLEAN, Boolean.FALSE)
3434
.setReadOnly();
35-
public static final Rule<Boolean> GHOST_BLOCK_FIX = registerRule("ghostBlockFix", DataType.BOOLEAN, Boolean.TRUE);
35+
public static final Rule<Boolean> GHOST_BLOCK_FIX = registerRule("ghostBlockFix", DataType.BOOLEAN, Boolean.FALSE);
3636

3737
public static boolean hasRule(String name) {
3838
return rules.containsKey(name);

0 commit comments

Comments
 (0)