From 0759fc04f2152f91c4bb953fa3e5d183435ddfce Mon Sep 17 00:00:00 2001 From: LamkasDev Date: Tue, 13 Sep 2022 18:30:12 +0200 Subject: [PATCH] fix: remove strapon checks for portal panties --- modular_sand/code/game/objects/items/fleshlight.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_sand/code/game/objects/items/fleshlight.dm b/modular_sand/code/game/objects/items/fleshlight.dm index 923c4f2462..bdd7698aa1 100644 --- a/modular_sand/code/game/objects/items/fleshlight.dm +++ b/modular_sand/code/game/objects/items/fleshlight.dm @@ -691,11 +691,11 @@ to_chat(human, "The anus is covered or there is none!") return FALSE if(CUM_TARGET_PENIS) - if(!human.has_penis(REQUIRE_EXPOSED) && !human.has_strapon(REQUIRE_EXPOSED)) + if(!human.has_penis(REQUIRE_EXPOSED)) to_chat(human, "The penis is covered or there is none!") return FALSE if(CUM_TARGET_URETHRA) - if(!human.has_penis(REQUIRE_EXPOSED) && !human.has_strapon(REQUIRE_EXPOSED)) + if(!human.has_penis(REQUIRE_EXPOSED)) to_chat(human, "The urethra is covered or there is none!") return FALSE if(CUM_TARGET_MOUTH)