From 4307c3804471fa1e8205fbcee87dd6fdc21172ec Mon Sep 17 00:00:00 2001 From: Bloop <13398309+vinylspiders@users.noreply.github.com> Date: Mon, 29 Dec 2025 21:41:49 -0500 Subject: [PATCH] Stop logging character dummies not being able to equip accessories (#94635) ## About The Pull Request Tin, noticed this spam in my log from a character preview that wasn't wearing a uniform, and they had an accessory in their loadout. It should not be doing this stuff in the char prefs menu when it's be possible to preview uniformless characters. ## Why It's Good For The Game Stops senseless world.log spam ## Changelog Not player-facing --- code/datums/outfit.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/outfit.dm b/code/datums/outfit.dm index 007f7a26daa..182df168bfd 100644 --- a/code/datums/outfit.dm +++ b/code/datums/outfit.dm @@ -231,7 +231,7 @@ var/obj/item/clothing/under/U = user.w_uniform if(U) U.attach_accessory(SSwardrobe.provide_type(accessory, user)) - else + else if(!visuals_only) WARNING("Unable to equip accessory [accessory] in outfit [name]. No uniform present!") if(l_hand)