Fix CME in MapleMap.sendObjectPlacement (#339)

This commit is contained in:
MedicOP
2019-01-18 15:29:14 +01:00
committed by Ronan Lana
parent 80d362dab3
commit d2a9c01949

View File

@@ -2917,7 +2917,7 @@ public class MapleMap {
objectRLock.lock();
try {
objects = Collections.unmodifiableCollection(mapobjects.values());
objects = new ArrayList<>(mapobjects.values());
} finally {
objectRLock.unlock();
}