Most games (or other programs) will pick an arbitrary player from the candidate list.
Can be randomized, just the one with the lowest/highest player number, by whoever manages to join the game first etc.
Making this an unhandled error condition would be lazy, not user-friendly and overall pretty stupid.
Comment has been collapsed.
You give the dev a load of shit for not being fit to do their job
Comment has been collapsed.
Pretty much this.
Not having something in place to handle this is a design failure, therefore a serious bug.
Having something in place that doesn't work correctly - well depending on how it's implemented all sorts of fun things can happen. From the host/server crashing or spinning infinitely as it tries to make up it's mind, to breaking the gameplay by having no special player or multiple special players.
Comment has been collapsed.
It kinda depends on how the programmer has written his or her code.
These are some possibilities that could happen:
Comment has been collapsed.
It would probably just throw out unhandled exception error, click ok to attempt to continue...
I'm guessing that the special player will simply be not unselected (code is skipped) and game continues.
Game will throw out next unhandled error at the next moment where 'special player' has to do something according to the code, as there is no special player. Then at some point after clicking trough error messages you either crash game or return to main menu if code supplies reasons for that event.
Comment has been collapsed.
The code will do what you tell it to do.
Nothings happens magically. unhandled stuff behavior is determined by your implementation and language\compiler
Comment has been collapsed.
1,736 Comments - Last post 1 hour ago by MBaer
213 Comments - Last post 2 hours ago by looseangel
17,148 Comments - Last post 3 hours ago by pivotalHarry
384 Comments - Last post 3 hours ago by GarlicToast
67 Comments - Last post 3 hours ago by JonathanDoe
15 Comments - Last post 4 hours ago by Fluffster
4 Comments - Last post 4 hours ago by gameboy9725
1,240 Comments - Last post 16 minutes ago by Tucs
153 Comments - Last post 17 minutes ago by Ad4m
113 Comments - Last post 22 minutes ago by StarPONY
280 Comments - Last post 30 minutes ago by Askelladd
161 Comments - Last post 48 minutes ago by Myrsan
30,539 Comments - Last post 1 hour ago by Yamaraus
152 Comments - Last post 1 hour ago by forseeker
Comment has been collapsed.