From 9820143f39a3b5dfe8a0e7a7b447809ba43e5ca1 Mon Sep 17 00:00:00 2001 From: mikomyazaki <47489928+mikomyazaki@users.noreply.github.com> Date: Wed, 19 Feb 2020 04:25:31 +0000 Subject: [PATCH] PDA messenger now has psychiatrist listed (#8303) --- code/game/objects/items/devices/PDA/PDA.dm | 2 +- html/changelogs/psych_pda_messenger.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/psych_pda_messenger.yml diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 98ecdedf738..4dcd532f7d0 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -535,7 +535,7 @@ var/global/list/obj/item/device/pda/PDAs = list() if(P.icon_state == "pda-hop"||P.icon_state == "pda-bar"||P.icon_state == "pda-holy"||P.icon_state == "pda-lawyer"||P.icon_state == "pda-libb"||P.icon_state == "pda-hydro"||P.icon_state == "pda-chef"||P.icon_state == "pda-j") pdas.Add(list(list("Name" = "[P]", "Reference" = "\ref[P]", "Detonate" = "[P.detonate]", "inconvo" = "0"))) if(8) //medical - if(P.icon_state == "pda-cmo"||P.icon_state == "pda-v"||P.icon_state == "pda-m"||P.icon_state == "pda-chem") + if(P.icon_state == "pda-cmo"||P.icon_state == "pda-v"||P.icon_state == "pda-m"||P.icon_state == "pda-chem"||P.icon_state == "pda-psych") pdas.Add(list(list("Name" = "[P]", "Reference" = "\ref[P]", "Detonate" = "[P.detonate]", "inconvo" = "0"))) count++ diff --git a/html/changelogs/psych_pda_messenger.yml b/html/changelogs/psych_pda_messenger.yml new file mode 100644 index 00000000000..8a5971afa93 --- /dev/null +++ b/html/changelogs/psych_pda_messenger.yml @@ -0,0 +1,6 @@ +author: mikomyazaki + +delete-after: True + +changes: + - bugfix: "Psychiatrists now show up on the PDA messenger as medical staff." \ No newline at end of file