From a8ef4cff50c845bdd8839d77fa2d87554a9da957 Mon Sep 17 00:00:00 2001 From: projectkepler-RU <99981766+projectkepler-ru@users.noreply.github.com> Date: Mon, 10 Apr 2023 22:52:11 +0700 Subject: [PATCH] Update head_of_security.dm --- code/modules/jobs/job_types/head_of_security.dm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/head_of_security.dm b/code/modules/jobs/job_types/head_of_security.dm index 31ae0411026..b3ed39c885a 100644 --- a/code/modules/jobs/job_types/head_of_security.dm +++ b/code/modules/jobs/job_types/head_of_security.dm @@ -54,7 +54,6 @@ suit_store = /obj/item/gun/energy/e_gun //KEPLER EDIT RESTORATION backpack_contents = list( /obj/item/evidencebag = 1, - /obj/item/storage/box/gunset/glock18_hos = 1, //SKYRAT EDIT ADDITION /obj/item/flashlight/seclite = 1, /obj/item/modular_computer/pda/heads/hos =1, ) @@ -87,3 +86,19 @@ head = null mask = /obj/item/clothing/mask/gas/sechailer internals_slot = ITEM_SLOT_SUITSTORE + +/obj/item/choice_beacon/head_of_security + name = "gun choice beacon" + desc = "whatever you choose will determine the outcome of space station 13 and the fate of the company so choose wisely."" + company_source = "Romulus Shipping Company" + company_message = span_bold("Copy that [user] supply pod enroute!") + +/obj/item/choice_beacon/head_of_security/generate_display_names() + var/static/list/hosgun_list + if(!hosgun_list) + hosgun_list = list() + for(var/obj/item/storage/box/hosgun/box as anything in typesof(/obj/item/storage/box/hos)) + hosgun_list[initial(box.name)] = box + return hosgun_list + +