mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
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:
@@ -500,7 +500,7 @@
|
||||
var/list/things_to_disrupt = list(target)
|
||||
if(isliving(target))
|
||||
var/mob/living/live_target = target
|
||||
things_to_disrupt += live_target.get_all_gear()
|
||||
things_to_disrupt += live_target.get_all_gear(INCLUDE_PROSTHETICS|INCLUDE_ABSTRACT|INCLUDE_ACCESSORIES)
|
||||
|
||||
for(var/atom/disrupted as anything in things_to_disrupt)
|
||||
if(disrupted.on_saboteur(src, 1 MINUTES))
|
||||
|
||||
Reference in New Issue
Block a user