[MIRROR] Fixes gondola meatslab not being able to be placed into infuser [MDB IGNORE] (#20038)

* Fixes gondola meatslab not being able to be placed into infuser (#74173)

## About The Pull Request

https://github.com/tgstation/tgstation/pull/73796 Seems to have made it
so that gondola meat is used in the infuser instead of its body, which
turns into meat on death. The issue with that is the meat slab does not
have the `GORE` flag and so was rejected by the infuser.

As per
https://github.com/tgstation/tgstation/blob/afe6ecc353eef0db92a23dd1928768651071d11e/code/game/machinery/dna_infuser/dna_infuser.dm#L294-L297

Looking at the code this should fix it right up.

## Why It's Good For The Game

Bugfix

## Changelog
🆑
fix: fixes gondola meatslab not being able to be placed into the DNA
infuser
/🆑

* Fixes gondola meatslab not being able to be placed into infuser

---------

Co-authored-by: Bloop <vinylspiders@gmail.com>
This commit is contained in:
SkyratBot
2023-03-22 22:47:36 -07:00
committed by GitHub
co-authored by Bloop
parent 73712f3740
commit c3219b2ae2
+1 -1
View File
@@ -352,7 +352,7 @@
/datum/reagent/consumable/cooking_oil = 3,
)
tastes = list("meat" = 4, "tranquility" = 1)
foodtypes = RAW | MEAT
foodtypes = RAW | MEAT | GORE
/obj/item/food/meat/slab/gondola/make_processable()
AddElement(/datum/element/processable, TOOL_KNIFE, /obj/item/food/meat/rawcutlet/gondola, 3, 3 SECONDS, table_required = TRUE, screentip_verb = "Cut")