This commit is contained in:
Lukas Rieger (Blue) 2023-02-25 22:03:31 +01:00
parent b9a3c2849a
commit 7612998bda
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) {
freeze();
} else {
unfreeze();
} else {
freeze();
}
}
}