Skip to content

Commit

Permalink
[MIRROR] Fire ant colonies created by burning actually contain fire a…
Browse files Browse the repository at this point in the history
…nts (#2299)

* Fire ant colonies created by burning actually contain fire ants (#83002)

## About The Pull Request
Fire ant colonies created by burning regular ants now give you fire ants
when scooped up
There were 2 lines of code clearing the ants' reagent when they're
burned. They're not needed because ants use `decal_reagent`
Tested and it works without these 2 lines

![fireants](https://github.com/tgstation/tgstation/assets/113535457/aee4ec28-a767-4dfe-b870-2a222848ae3a)
## Why It's Good For The Game
Fixes #82864 
## Changelog
:cl:
fix: Fire ant colonies created by burning regular ants will now contain
fire ants as their reagent
/:cl:

* Fire ant colonies created by burning actually contain fire ants

---------

Co-authored-by: cnleth <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed May 3, 2024
1 parent 2dcaab8 commit fe32e4e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions code/game/objects/effects/decals/cleanable/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -412,9 +412,7 @@
. += emissive_appearance(icon, "[icon_state]_light", src, alpha = src.alpha)

/obj/effect/decal/cleanable/ants/fire_act(exposed_temperature, exposed_volume)
var/obj/effect/decal/cleanable/ants/fire/fire_ants = new(loc)
fire_ants.reagents.clear_reagents()
reagents.trans_to(fire_ants, fire_ants.reagents.maximum_volume)
new /obj/effect/decal/cleanable/ants/fire(loc)
qdel(src)

/obj/effect/decal/cleanable/ants/fire
Expand Down

0 comments on commit fe32e4e

Please sign in to comment.