From 8b730e3a90d1bd24cb09d93c6fab20c021a2c985 Mon Sep 17 00:00:00 2001 From: Mechoid Date: Wed, 25 Nov 2020 01:47:44 -0800 Subject: [PATCH] Allows mobs to ventcrawl with any item in their allowed items list, even if it's worn or carried. --- code/modules/ventcrawl/ventcrawl.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/ventcrawl/ventcrawl.dm b/code/modules/ventcrawl/ventcrawl.dm index 543390d722..60188f375a 100644 --- a/code/modules/ventcrawl/ventcrawl.dm +++ b/code/modules/ventcrawl/ventcrawl.dm @@ -62,8 +62,8 @@ var/list/ventcrawl_machinery = list( listed = TRUE break - //Only allow it if it's "IN" the mob, not equipped on/being held - if(listed && !get_inventory_slot(carried_item)) + //Only allow it if it's "IN" the mob, not equipped on/being held. //Disabled, as it's very annoying that, for example, Pun Pun has no way to ventcrawl with his suit if given the verb, since the list of allowed items is ignored for worn items. + if(listed/* && !get_inventory_slot(carried_item)*/) return 1 /mob/living/carbon/is_allowed_vent_crawl_item(var/obj/item/carried_item)