Revert "Fix PR #395 ^^"

This reverts commit 7612998bda.
This commit is contained in:
Lukas Rieger (Blue) 2023-02-25 22:42:45 +01:00
parent 7612998bda
commit 0f58b7409b
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
1 changed files with 2 additions and 2 deletions

View File

@ -111,9 +111,9 @@ public class BlueMapMapImpl implements BlueMapMap {
public synchronized void setFrozen(boolean frozen) {
if (frozen != isFrozen()) {
if (frozen) {
unfreeze();
} else {
freeze();
} else {
unfreeze();
}
}
}