mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
fix: correctly in initialise unlimited limit (#2231)
This commit is contained in:
parent
2a08ad28a4
commit
e9b781d127
@ -2,6 +2,7 @@ package com.fastasyncworldedit.core.limit;
|
|||||||
|
|
||||||
import com.fastasyncworldedit.core.FaweCache;
|
import com.fastasyncworldedit.core.FaweCache;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
public class FaweLimit {
|
public class FaweLimit {
|
||||||
@ -114,10 +115,10 @@ public class FaweLimit {
|
|||||||
MAX.FAST_PLACEMENT = true;
|
MAX.FAST_PLACEMENT = true;
|
||||||
MAX.CONFIRM_LARGE = true;
|
MAX.CONFIRM_LARGE = true;
|
||||||
MAX.RESTRICT_HISTORY_TO_REGIONS = false;
|
MAX.RESTRICT_HISTORY_TO_REGIONS = false;
|
||||||
MAX.STRIP_NBT = null;
|
MAX.STRIP_NBT = Collections.emptySet();
|
||||||
MAX.UNIVERSAL_DISALLOWED_BLOCKS = false;
|
MAX.UNIVERSAL_DISALLOWED_BLOCKS = false;
|
||||||
MAX.DISALLOWED_BLOCKS = null;
|
MAX.DISALLOWED_BLOCKS = Collections.emptySet();
|
||||||
MAX.REMAP_PROPERTIES = null;
|
MAX.REMAP_PROPERTIES = Collections.emptySet();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean MAX_CHANGES() {
|
public boolean MAX_CHANGES() {
|
||||||
|
Loading…
Reference in New Issue
Block a user