From 214b95445e47bcf8ad0ee1d22e64b07605464077 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 9 Jul 2020 23:59:51 -0700 Subject: [PATCH] status panel --- code/controllers/subsystem/vote.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index c8a48ef188..390d42dcb4 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -55,14 +55,15 @@ SUBSYSTEM_DEF(vote) /datum/controller/subsystem/vote/proc/render_statpanel(mob/M) if(!mode) // check if vote is running return - if(!statpanel("Vote")) // don't bother if they're not focused on this panel + if(!statpanel("Status")) // don't bother if they're not focused on this panel return var/static/list/supported = list(PLURALITY_VOTING, APPROVAL_VOTING) + stat(null, null) + stat("Vote active!", "There is currently a vote running. Question: [question]") if(!(vote_system in supported)) - stat("Vote Manually!", "The current vote system is not supported by statpanel rendering. Please vote manually by opening the vote popup using the action button or chat link.") + stat("", "The current vote system is not supported by statpanel rendering. Please vote manually by opening the vote popup using the action button or chat link.") return stat("Time Left:", "[round(end_time - world.time)] seconds") - stat("Question:", question) stat(null, null) stat("Choices:", null) stat(null, null)