From b257857fd3596a75e8e37b49c98cac709f4807f4 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sun, 22 Dec 2019 13:17:58 -0800 Subject: [PATCH] nagging people is annoying --- code/controllers/subsystem/vote.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index fd56804d06..810cc4566e 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -40,13 +40,6 @@ SUBSYSTEM_DEF(vote) client_popup.set_content(interface(C)) client_popup.open(0) next_pop = world.time+VOTE_COOLDOWN - if(vote_system == RANKED_CHOICE_VOTING) - for(var/client/C in GLOB.clients) - if((C.ckey in voted) && voted[C.ckey].len < choices.len && !(C in voting)) - client_popup = new(C, "vote", "Voting Panel", nwidth=600,nheight=600) - client_popup.set_window_options("can_close=0") - client_popup.set_content(interface(C)) - client_popup.open(0)