ID:142378
 
Code:
Admin_Fix_Invisible(mob/M in world)
switch(alert("Pick an icon.","Male","Female"))
if("Male")
icon='Goodwitchs.dmi'
icon_state="NeonBlue"
if("Female")
icon='Goodwitchs.dmi'
icon_state="godwitch"


Problem description:

It only lets us choose female, not male. Idk if its something to do with the order its in or not
Alert has more than three inputs. message, title, choices is all you normally need to put in, but their are more, look it up in the reference.
You need one after "Pick an icon." to be a title. Right now, your alert would have Male as the title.
Might I suggest fixing the error in your code that's causing people to lose their icons instead?