diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 57826e5e52a..077c79bfc98 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -225,16 +225,13 @@ if("MULTICHOICE") var/id_min = text2num(href_list["minoptionid"]) var/id_max = text2num(href_list["maxoptionid"]) - world << "MULTICHOICE" if( (id_max - id_min) > 100 ) //Basic exploit prevention usr << "The option ID difference is too big. Please contact administration or the database admin." return for(var/optionid = id_min; optionid <= id_max; optionid++) - world << "checking [optionid]" if(!isnull(href_list["option_[optionid]"])) //Test if this optionid was selected - world << "FOUND [optionid]" vote_on_poll(pollid, optionid, 1) proc/IsJobAvailable(rank)