mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Fixed WORLDEDIT-2717, max-blocks-changed . maximum overriden by default
min(default_limit, max_limit) meant that the max limit was really default_limit when the default was less than the max
This commit is contained in:
parent
8efb995667
commit
33d0d7cd6c
@ -334,8 +334,7 @@ public class WorldEdit {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Bound the change limit
|
// Bound the change limit
|
||||||
int maxChangeLimit = Math.min(config.defaultChangeLimit,
|
int maxChangeLimit = config.maxChangeLimit;
|
||||||
config.maxChangeLimit);
|
|
||||||
if (currentChangeLimit == -1 || currentChangeLimit > maxChangeLimit) {
|
if (currentChangeLimit == -1 || currentChangeLimit > maxChangeLimit) {
|
||||||
session.setBlockChangeLimit(maxChangeLimit);
|
session.setBlockChangeLimit(maxChangeLimit);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user