From b500b08ad64557cc28269f9666ce40f98a8bf462 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Tue, 7 May 2024 00:56:40 -0400 Subject: [PATCH 1/2] Misc stuff Adds ambulence alt title to paramedic also fixes a bug where the random name wouldn't apply to your client at the start of the round --- code/game/jobs/job/medical_vr.dm | 5 ++++- maps/~map_system/funny_name.dm | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/code/game/jobs/job/medical_vr.dm b/code/game/jobs/job/medical_vr.dm index 321f0599a5c..ada94f201b3 100644 --- a/code/game/jobs/job/medical_vr.dm +++ b/code/game/jobs/job/medical_vr.dm @@ -80,7 +80,7 @@ /datum/job/paramedic pto_type = PTO_MEDICAL - alt_titles = list("Emergency Medical Technician" = /datum/alt_title/emt, "Medical Responder" = /datum/alt_title/medical_responder, "Search and Rescue" = /datum/alt_title/sar) + alt_titles = list("Emergency Medical Technician" = /datum/alt_title/emt, "Medical Responder" = /datum/alt_title/medical_responder, "Search and Rescue" = /datum/alt_title/sar, "Ambulance" = /datum/alt_title/ambulance) total_positions = 3 spawn_positions = 3 @@ -92,3 +92,6 @@ /datum/alt_title/sar title = "Search and Rescue" + +/datum/alt_title/ambulance + title = "Ambulance" diff --git a/maps/~map_system/funny_name.dm b/maps/~map_system/funny_name.dm index 9ec858659bd..cb15a6de022 100644 --- a/maps/~map_system/funny_name.dm +++ b/maps/~map_system/funny_name.dm @@ -114,6 +114,6 @@ /datum/map/proc/funny_name() GLOB.special_station_name = "[pick(adj)] [pick(sub)] [pick(suf)]" - for(var/mob/living/L in player_list) - if(L.client) - L.client.update_special_station_name() + for(var/mob/M in player_list) + if(M.client) + M.client.update_special_station_name() From 1edea31536748e36e6c43922c3de16b8cc6d4702 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Tue, 7 May 2024 00:59:39 -0400 Subject: [PATCH 2/2] 0059 --- code/modules/vore/eating/vorepanel_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 1b1cdda29d0..af6e4efd5d3 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -762,7 +762,7 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", return FALSE for(var/atom/movable/target in host.vore_selected) - to_chat(target,"You're squished from [host]'s host.vore_selected to their [lowertext(choice.name)]!") + to_chat(target,"You're squished from [host]'s [host.vore_selected] to their [lowertext(choice.name)]!") host.vore_selected.transfer_contents(target, choice, 1) return TRUE //RS ADD START