From 8307b060558abc94ad416ebef27d979a9195a108 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Thu, 3 Oct 2024 09:15:27 -0400 Subject: [PATCH] fix: make food on shelves ant-proof (#26961) * fix: make food on shelves ant-proof * Update food_base.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: warriorstar-orion --------- Signed-off-by: warriorstar-orion Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --- code/modules/food_and_drinks/food_base.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/food_base.dm b/code/modules/food_and_drinks/food_base.dm index 9fd4583acd2f..34faf1426a22 100644 --- a/code/modules/food_and_drinks/food_base.dm +++ b/code/modules/food_and_drinks/food_base.dm @@ -64,7 +64,8 @@ ant_suppressors = typecacheof(list( /obj/structure/table, /obj/structure/rack, - /obj/structure/closet + /obj/structure/closet, + /obj/structure/shelf )) START_PROCESSING(SSobj, src) ant_location = get_turf(src)