You essentially seg-fault when using 'openMap false' in a "Map" event handler.
Crash - addMissionEventHandler ["Map",{openMap false}];
Fine - addMissionEventHandler ["Map",{0 spawn{openMap false}}];
Can be fixed by turning it into spawn{openMap false};