From 57424983bf167ca3a8d594c9967aa8459df1824b Mon Sep 17 00:00:00 2001 From: Atermonera Date: Thu, 26 Nov 2020 10:38:36 -0800 Subject: [PATCH 1/2] Merge pull request #7767 from Mechoid/VentcrawlTweak Tweak Ventcrawl To Allow Allowed Items to be Worn --- 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 c7af54a6d4a..2e7710e8391 100644 --- a/code/modules/ventcrawl/ventcrawl.dm +++ b/code/modules/ventcrawl/ventcrawl.dm @@ -64,8 +64,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)