An exception during shutdown

Report core bugs regarding the Ultima Online Emulator Core release (version 097). You can attach your Core Dump. One bug per post.

Moderator: POL Developer

Locked
User avatar
OldnGrey
POL Expert
Posts: 657
Joined: Sat Feb 04, 2006 6:26 pm

An exception during shutdown

Post by OldnGrey »

A really strange exception during shutdown.

Happened when it was logging people off and the logoff.ecl was running from the Distro Party system.

Code: Select all

include ":partySystem:config";

program LogOff(character)
	var party := GetObjProperty(character, PARTY_PROP);
	
	if ( party )
		Start_Script("handlePartyRemove", array{character, character.serial, party});
	endif

	return 1;
endprogram
Exception happened at PC21 which is the return 1; line.

Does this make sense? I have 2 crash dumps for the same thing.
Locked