diff --git a/code/modules/hallucination/fake_message.dm b/code/modules/hallucination/fake_message.dm index 43041ef667f..a1040496f5e 100644 --- a/code/modules/hallucination/fake_message.dm +++ b/code/modules/hallucination/fake_message.dm @@ -24,28 +24,29 @@ if(istype(equipped_backpack)) // in the future, this could / should be de-harcoded and // just draw from a pool uplink, theft, and antag item typepaths - var/static/list/stash_items = list( - ".357 revovler", - "energy sword", - "cryptographic sequencer", - "power sink", - "C-4 charge", - "energy bow", - "stun baton", - "flash", - "dart pistol", - "circular saw", - "ritual dagger", - "spellbook", - "Codex Cicatrix", - "captain's spare ID", - "hand teleporter", - "hypospray", - "antique laser gun", - "X-01 MultiPhase Energy Gun", - "station's blueprints", + var/static/list/stash_item_paths = list( + /obj/item/areaeditor/blueprints, + /obj/item/assembly/flash, + /obj/item/card/id/advanced/gold/captains_spare, + /obj/item/card/emag, + /obj/item/circular_saw, + /obj/item/codex_cicatrix, + /obj/item/grenade/c4, + /obj/item/gun/ballistic/revolver, + /obj/item/gun/energy/e_gun/hos, + /obj/item/gun/energy/laser/captain, + /obj/item/gun/energy/recharge/ebow, + /obj/item/gun/syringe/syndicate, + /obj/item/hand_tele, + /obj/item/melee/baton/security, + /obj/item/melee/cultblade/dagger, + /obj/item/melee/energy, + /obj/item/powersink, //this is a bulky item what + /obj/item/reagent_containers/hypospray/cmo, + /obj/item/spellbook, ) - message_pool[span_notice("[suspicious_personnel] puts the [pick(stash_items)] into [equipped_backpack].")] = 5 + var/obj/item/stashed_item = pick(stash_item_paths) + message_pool[span_notice("[suspicious_personnel] puts the [initial(stashed_item.name)] into [equipped_backpack].")] = 5 message_pool["[span_bold("[suspicious_personnel]")] [pick("sneezes", "coughs")]."] = 1