From 9e0bd9d237ca78d7d2dc751b248835d1ed2416a5 Mon Sep 17 00:00:00 2001
From: Kashargul <144968721+Kashargul@users.noreply.github.com>
Date: Sat, 23 Nov 2024 03:25:23 +0100
Subject: [PATCH 1/2] fixes vote announce time
---
code/modules/vote/vote_datum.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/modules/vote/vote_datum.dm b/code/modules/vote/vote_datum.dm
index 9c739ada02..49b2b2f783 100644
--- a/code/modules/vote/vote_datum.dm
+++ b/code/modules/vote/vote_datum.dm
@@ -117,9 +117,9 @@
return null
-/datum/vote/proc/announce(start_text, var/time = vote_time/10)
+/datum/vote/proc/announce(start_text, var/time = vote_time)
to_chat(world, span_lightpurple("Type vote or click here to place your vote. \
- You have [time] seconds to vote."))
+ You have [time/10] seconds to vote."))
world << sound('sound/ambience/alarm4.ogg', repeat = 0, wait = 0, volume = 50, channel = 3)
/datum/vote/Topic(href, list/href_list)
From 6ff89f7eee5f84aa6a98175a317c02aaf40f010a Mon Sep 17 00:00:00 2001
From: Kashargul <144968721+Kashargul@users.noreply.github.com>
Date: Sat, 23 Nov 2024 23:19:25 +0100
Subject: [PATCH 2/2] .
---
tgui/packages/tgui/interfaces/Canister.tsx | 1 -
1 file changed, 1 deletion(-)
diff --git a/tgui/packages/tgui/interfaces/Canister.tsx b/tgui/packages/tgui/interfaces/Canister.tsx
index e219489112..6f221964bf 100644
--- a/tgui/packages/tgui/interfaces/Canister.tsx
+++ b/tgui/packages/tgui/interfaces/Canister.tsx
@@ -71,7 +71,6 @@ export const Canister = (props) => {