Big baked rice complexity fix. (#80193)

## About The Pull Request
Someone pointed out to me that big baked rice actually gets WORSE when
cooked, which doesn't make any sense to me, I assume it's just an
oversight that was never patched.


![image](https://github.com/tgstation/tgstation/assets/53197594/a065386b-408f-4ab3-8ad7-38569f6407f6)

## Why It's Good For The Game
I don't want food getting worse when you put more effort into it.
## Changelog
🆑
fix: fixed big rice pans getting worse with cooking.
/🆑
This commit is contained in:
xXPawnStarrXx
2023-12-10 02:12:46 +01:00
committed by GitHub
parent 5893bc47f4
commit d9cdd4917a
+2 -2
View File
@@ -239,7 +239,7 @@
tastes = list("rice" = 1, "potato" = 1, "veggies" = 1)
foodtypes = VEGETABLES | GRAIN
w_class = WEIGHT_CLASS_NORMAL
crafting_complexity = FOOD_COMPLEXITY_1
crafting_complexity = FOOD_COMPLEXITY_5
/obj/item/food/big_baked_rice/make_processable()
AddElement(/datum/element/processable, TOOL_KNIFE, /obj/item/food/lil_baked_rice, 6, 3 SECONDS, table_required = TRUE, screentip_verb = "Cut")
@@ -256,7 +256,7 @@
tastes = list("rice" = 1, "potato" = 1, "veggies" = 1)
foodtypes = VEGETABLES | GRAIN
w_class = WEIGHT_CLASS_SMALL
crafting_complexity = FOOD_COMPLEXITY_1
crafting_complexity = FOOD_COMPLEXITY_5
/obj/item/food/oven_baked_corn
name = "oven-baked corn"