diff --git a/code/modules/food_and_drinks/food/foods/meat.dm b/code/modules/food_and_drinks/food/foods/meat.dm index 95626d4c7d0..845051c82f2 100644 --- a/code/modules/food_and_drinks/food/foods/meat.dm +++ b/code/modules/food_and_drinks/food/foods/meat.dm @@ -269,10 +269,14 @@ bitesize = 3 list_reagents = list("protein" = 2) +/obj/item/food/meat/patty_raw/examine(mob/user) + . = ..() + . += "Use it in hand to shape it into a raw meatball." + /obj/item/food/meat/patty_raw/attack_self__legacy__attackchain(mob/user) user.visible_message( - "[user] shapes [src] into a ball.", - "You shape [src] into a ball." + "[user] shapes [src] into a raw meatball.", + "You shape [src] into a raw meatball." ) playsound(user, 'sound/effects/blobattack.ogg', 50, 1) var/obj/item/food/meat/raw_meatball/M = new(get_turf(user)) @@ -290,6 +294,11 @@ list_reagents = list("protein" = 4, "vitamin" = 1) tastes = list("raw meat" = 1) +/obj/item/food/ground_meat/examine(mob/user) + . = ..() + . += "Use it in hand to shape it into a raw meatball." + . += "Use it in hand again to flatten it into a raw patty." + /obj/item/food/ground_meat/attack_self__legacy__attackchain(mob/living/user) user.visible_message( "[user] shapes [src] into a ball.", @@ -311,6 +320,10 @@ list_reagents = list("protein" = 4, "vitamin" = 1) tastes = list("raw meat" = 1) +/obj/item/food/meat/raw_meatball/examine(mob/user) + . = ..() + . += "Use it in hand to flatten it into a raw patty." + /obj/item/food/meat/raw_meatball/attack_self__legacy__attackchain(mob/user) user.visible_message( "[user] flattens [src] into a patty.",