- Joined
- Dec 15, 2014
- Messages
- 39
- Reaction score
- 1
Does anyone knows what is causing the soft DC (back to login screen with Unable to connect message) when there are many drops on the ground? I have set my runningOID to 30k/500k etc but it still crashes whenever they are a lot of drops. I know for sure it is not lag that is causing this issue. It has something to do with drops because when I disable drops from mobs, it doesn't crash me.
This is my addMapObject in MapleMap (TiredStory):
Any help would be appreciated, thanks.
This is my addMapObject in MapleMap (TiredStory):
Code:
public void addMapObject(MapleMapObject mapobject) { objectlock.writeLock().lock();
try {
mapobject.setObjectId(runningOid);
this.mapobjects.put(Integer.valueOf(runningOid), mapobject);
incrementRunningOid();
} finally {
objectlock.writeLock().unlock();
}
}
Any help would be appreciated, thanks.

