Add fire proof flag to item that are lava proofed by xenobio potion (#86871)

## About The Pull Request
fix #85250
## Why It's Good For The Game
Kinda makes sense that lava proofed item wouldnt break from fire damage
## Changelog
🆑
fix: fixed lava proofed clothing from xenobio potion being damaged from
fire
/🆑
This commit is contained in:
FinancialGoose
2024-09-25 07:49:57 -04:00
committed by GitHub
parent 26cc667798
commit ddc6a2fa8d
@@ -170,6 +170,7 @@ Slimecrossing Potions
if (isclothing(clothing))
var/obj/item/clothing/clothing_real = clothing
clothing_real.clothing_flags |= LAVAPROTECT
clothing_real.resistance_flags |= FIRE_PROOF
uses--
if(uses <= 0)
qdel(src)