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:
Albert Pham 2013-03-12 14:07:25 -07:00
parent 8efb995667
commit 33d0d7cd6c

View File

@ -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);
} }