9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2025-12-29 03:29:12 +00:00

Fix locked map data not being applied in some cases

This commit is contained in:
William
2023-01-03 12:38:17 +00:00
parent 30dd48ce88
commit 5817de83e5

View File

@@ -77,7 +77,7 @@ public class BukkitMapHandler {
}
final MapMeta mapMeta = (MapMeta) itemStack.getItemMeta();
if (mapMeta == null || mapMeta.getMapView() == null || !mapMeta.getMapView().isLocked()) {
if (mapMeta == null) {
return;
}