From 41f6620c2aef24b093bdf7ff243ae321d122d57c Mon Sep 17 00:00:00 2001 From: Bakaface <42347687+bakaf@users.noreply.github.com> Date: Sun, 12 Nov 2023 20:48:06 +0530 Subject: [PATCH] Adds cheese to the cheese (#23218) --- .../objects/items/granters/action_granters/summon_cheese.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/granters/action_granters/summon_cheese.dm b/code/game/objects/items/granters/action_granters/summon_cheese.dm index 0ee14969755..c115a46b73c 100644 --- a/code/game/objects/items/granters/action_granters/summon_cheese.dm +++ b/code/game/objects/items/granters/action_granters/summon_cheese.dm @@ -22,7 +22,7 @@ /obj/item/book/granter/spell/summon_cheese/recoil(mob/living/user) to_chat(user, "[src] turns into a wedge of cheese!") - var/obj/item/reagent_containers/food/snacks/cheesewedge/book_cheese = new + var/obj/item/reagent_containers/food/snacks/cheesewedge/presliced/book_cheese = new user.drop_item() user.put_in_hands(book_cheese) qdel(src)