Fixes tape instantly falling off bleeding wounds & cleanmedical gauze (#95667)

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
This commit is contained in:
Leland Kemble
2026-04-08 16:45:08 +02:00
committed by GitHub
co-authored by MrMelbert
parent 366448d63c
commit cc0fc61d9e
5 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -1653,7 +1653,7 @@
*/
/obj/item/bodypart/proc/seep_gauze(seep_amt = 0)
var/obj/item/stack/medical/wrap/current_gauze = LAZYACCESS(applied_items, LIMB_ITEM_GAUZE)
if(!current_gauze)
if(!current_gauze || !current_gauze.absorption_capacity)
return FALSE
current_gauze.absorption_capacity -= seep_amt
if(current_gauze.absorption_capacity <= 0)