mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
Fixes #8107.
The announcer again has its given name, rather than a randomly selected one. The announcer now states its business, rather than talks about it. The announcer now uses the proper frequency.
This commit is contained in:
@@ -198,7 +198,7 @@
|
|||||||
var/obj/item/device/radio/R = new (src)
|
var/obj/item/device/radio/R = new (src)
|
||||||
var/AN = "Self-Destruct System"
|
var/AN = "Self-Destruct System"
|
||||||
|
|
||||||
R.autosay("Caution. Self-Destruct sequence has been actived. Self-destructing in Ten..", AN)
|
R.autosay("Caution. Self-Destruct sequence has been activated. Self-destructing in Ten..", AN)
|
||||||
for (var/i=9 to 1 step -1)
|
for (var/i=9 to 1 step -1)
|
||||||
sleep(10)
|
sleep(10)
|
||||||
var/msg = ""
|
var/msg = ""
|
||||||
|
|||||||
@@ -167,10 +167,11 @@
|
|||||||
return
|
return
|
||||||
|
|
||||||
var/mob/living/silicon/ai/A = new /mob/living/silicon/ai(src, null, null, 1)
|
var/mob/living/silicon/ai/A = new /mob/living/silicon/ai(src, null, null, 1)
|
||||||
|
A.SetName(from)
|
||||||
Broadcast_Message(connection, A,
|
Broadcast_Message(connection, A,
|
||||||
0, "*garbled automated announcement*", src,
|
0, "*garbled automated announcement*", src,
|
||||||
message, from, "Automated Announcement", from, "synthesized voice",
|
message, from, "Automated Announcement", from, "synthesized voice",
|
||||||
4, 0, list(1), PUB_FREQ)
|
4, 0, list(0), connection.frequency, "states")
|
||||||
del(A)
|
del(A)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user