var/list/entrants = list()
mob
proc
pinput()
for(var/mob/player/P in world)
P.entry = input(P,"Enter your acronym.","Acronym!")
spawn(450)
if(P.entry == null)
P<<"<small><small>You didnt enter an acronym in time!"
else
entrants.Add(P)
P << "Time is up!"
world << "<b><FONT COLOR = purple>[name]- [P.entry]"
/*
How do I go about getting a vote of entrants from every player, then output a winning result to the world?
*/
How do I go about getting a vote of entrants from every player, then output a winning result to the world?