mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Quiet cryo (#7572)
This commit is contained in:
@@ -219,6 +219,7 @@
|
|||||||
var/last_no_computer_message = 0
|
var/last_no_computer_message = 0
|
||||||
var/applies_stasis = 0 //VOREStation Edit: allow people to change their mind
|
var/applies_stasis = 0 //VOREStation Edit: allow people to change their mind
|
||||||
|
|
||||||
|
var/quiet = FALSE // CHOMPEdit - No announcement.
|
||||||
/obj/machinery/cryopod/robot
|
/obj/machinery/cryopod/robot
|
||||||
name = "robotic storage unit"
|
name = "robotic storage unit"
|
||||||
desc = "A storage unit for robots."
|
desc = "A storage unit for robots."
|
||||||
@@ -535,6 +536,9 @@
|
|||||||
if(istype(to_despawn, /mob/living/dominated_brain))
|
if(istype(to_despawn, /mob/living/dominated_brain))
|
||||||
depart_announce = FALSE
|
depart_announce = FALSE
|
||||||
|
|
||||||
|
if(src.quiet) // CHOMPEdit - No announcement.
|
||||||
|
depart_announce = FALSE
|
||||||
|
|
||||||
if(depart_announce)
|
if(depart_announce)
|
||||||
announce.autosay("[to_despawn.real_name][departing_job ? ", [departing_job], " : " "][on_store_message]", "[on_store_name]", announce_channel, using_map.get_map_levels(z, TRUE, om_range = DEFAULT_OVERMAP_RANGE))
|
announce.autosay("[to_despawn.real_name][departing_job ? ", [departing_job], " : " "][on_store_message]", "[on_store_name]", announce_channel, using_map.get_map_levels(z, TRUE, om_range = DEFAULT_OVERMAP_RANGE))
|
||||||
visible_message("<span class='notice'>\The [initial(name)] [on_store_visible_message_1] [to_despawn.real_name] [on_store_visible_message_2]</span>", 3)
|
visible_message("<span class='notice'>\The [initial(name)] [on_store_visible_message_1] [to_despawn.real_name] [on_store_visible_message_2]</span>", 3)
|
||||||
|
|||||||
9
modular_chomp/code/game/machinery/cryopod.dm
Normal file
9
modular_chomp/code/game/machinery/cryopod.dm
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/obj/machinery/cryopod/robot/door/gateway/quiet
|
||||||
|
name = "departure teleporter"
|
||||||
|
desc = "The short-range teleporter you might've came in from. You could leave easily using this."
|
||||||
|
quiet = TRUE
|
||||||
|
|
||||||
|
/obj/machinery/cryopod/robot/door/dorms/quiet
|
||||||
|
name = "departure airlock"
|
||||||
|
desc = "A secured airlock you might've come in from. You could leave easily using this."
|
||||||
|
quiet = TRUE
|
||||||
@@ -4638,6 +4638,7 @@
|
|||||||
#include "modular_chomp\code\game\machinery\airconditioner_ch.dm"
|
#include "modular_chomp\code\game\machinery\airconditioner_ch.dm"
|
||||||
#include "modular_chomp\code\game\machinery\autolathe_armory.dm"
|
#include "modular_chomp\code\game\machinery\autolathe_armory.dm"
|
||||||
#include "modular_chomp\code\game\machinery\colormate.dm"
|
#include "modular_chomp\code\game\machinery\colormate.dm"
|
||||||
|
#include "modular_chomp\code\game\machinery\cryopod.dm"
|
||||||
#include "modular_chomp\code\game\machinery\holosign.dm"
|
#include "modular_chomp\code\game\machinery\holosign.dm"
|
||||||
#include "modular_chomp\code\game\machinery\paradox.dm"
|
#include "modular_chomp\code\game\machinery\paradox.dm"
|
||||||
#include "modular_chomp\code\game\machinery\petrification.dm"
|
#include "modular_chomp\code\game\machinery\petrification.dm"
|
||||||
|
|||||||
Reference in New Issue
Block a user