From 2cbb6d792108911b90622aeee9396c5130514ec1 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Mon, 1 Apr 2024 18:17:43 -0400 Subject: [PATCH] Tiny liddol fimx --- code/datums/outfits/outfit.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/datums/outfits/outfit.dm b/code/datums/outfits/outfit.dm index e762b3e6c13..67338ff1e82 100644 --- a/code/datums/outfits/outfit.dm +++ b/code/datums/outfits/outfit.dm @@ -127,9 +127,8 @@ var/list/outfits_decls_by_type_ if(gloves) H.equip_to_slot_or_del(new gloves(H),slot_gloves) if(shoes) - if(H.client?.prefs?.shoe_hater) //RS ADD - return - H.equip_to_slot_or_del(new shoes(H),slot_shoes) + if(!(H.client?.prefs?.shoe_hater)) //RS ADD + H.equip_to_slot_or_del(new shoes(H),slot_shoes) if(mask) H.equip_to_slot_or_del(new mask(H),slot_wear_mask) if(head)