Skip to content

Commit

Permalink
[MIRROR] [NO GBP] Fix airtank gib not dropping parts or items [MDB IG…
Browse files Browse the repository at this point in the history
…NORE] (#24441)

* [NO GBP] Fix airtank gib not dropping parts or items (#79088)

## About The Pull Request
- Fixes #79086

I missed a `PROC_REF` when I refactored gib code.

## Why It's Good For The Game
Keeps the same consistency as before.

## Changelog
:cl:
fix: Airtank suicides will now drop items and organs again.
/:cl:

* [NO GBP] Fix airtank gib not dropping parts or items

---------

Co-authored-by: Tim <[email protected]>
  • Loading branch information
2 people authored and FFMirrorBot committed Oct 19, 2023
1 parent 912beca commit 6a5bcaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/death.dm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
BT.on_death()

/mob/living/carbon/proc/inflate_gib() // Plays an animation that makes mobs appear to inflate before finally gibbing
addtimer(CALLBACK(src, PROC_REF(gib), null, null, TRUE, TRUE), 25)
addtimer(CALLBACK(src, PROC_REF(gib), DROP_BRAIN|DROP_ORGANS|DROP_ITEMS), 25)
var/matrix/M = matrix()
M.Scale(1.8, 1.2)
animate(src, time = 40, transform = M, easing = SINE_EASING)
Expand Down

0 comments on commit 6a5bcaa

Please sign in to comment.