From 77afc4383d37fed326f3c345e195edfcb577e734 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Sat, 22 Dec 2012 09:56:10 +0000 Subject: [PATCH] Removed some world << "" debug messages from multichoice polls. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5373 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/new_player/new_player.dm | 3 --- 1 file changed, 3 deletions(-) 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)