Prosthetic Item arms no longer prevent ventcrawling: the remake (#93499)

## About The Pull Request
This is me picking up #93077 but with code changes relative to the two
new flags that Krysonism added in his PR, which unfortunately he never
finished.

## Why It's Good For The Game
Monkeys should be able to ventcrawl even if their left or right arm is
actually a chainsaw or armblade or whatever. See #93077

## Changelog
🆑 Krysonism
balance: prosthetic item limbs are no longer considered equipped items
for some purposes such as ventcrawling.
/🆑

---------

Co-authored-by: Krysonism <robustness13@hotmail.com>
This commit is contained in:
Ghom
2025-10-23 17:13:18 +02:00
committed by GitHub
parent e044772e81
commit 38bebeaf47
26 changed files with 54 additions and 41 deletions
@@ -86,7 +86,7 @@
found_target = wash_potential
break
for(var/atom/clothing in wash_potential.get_equipped_items())
for(var/atom/clothing in wash_potential.get_equipped_items(INCLUDE_HELD|INCLUDE_PROSTHETICS))
if(GET_ATOM_BLOOD_DNA_LENGTH(clothing))
found_target = wash_potential
break