From f016c4680603ef61eef861162e74caaf34c28ba2 Mon Sep 17 00:00:00 2001 From: Twinmold Date: Thu, 20 Apr 2017 22:43:56 -0500 Subject: [PATCH] Past-TENSIFY the Logs Bad joke. GG tiger. --- code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm | 2 +- code/modules/food_and_drinks/kitchen_machinery/grill_new.dm | 2 +- code/modules/food_and_drinks/kitchen_machinery/oven_new.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm index e312b989d70..1781479ec6c 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm @@ -59,7 +59,7 @@ user.changeNext_move(CLICK_CD_MELEE) C.apply_damage(25, BURN, "head") //25 fire damage and disfigurement because your face was just deep fried! head.disfigure("burn") - add_logs(user, G.affecting, "deep-fried face") + add_logs(user, G.affecting, "deep-fried", addition="'s face") qdel(G) //Removes the grip so the person MIGHT have a small chance to run the fuck away and to prevent rapid dunks. return 1 return 0 diff --git a/code/modules/food_and_drinks/kitchen_machinery/grill_new.dm b/code/modules/food_and_drinks/kitchen_machinery/grill_new.dm index 16bdbf976fa..d63971dcc30 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/grill_new.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/grill_new.dm @@ -55,7 +55,7 @@ C.emote("scream") user.changeNext_move(CLICK_CD_MELEE) C.adjustFireLoss(30) - add_logs(user, G.affecting, "burns on a grill") + add_logs(user, G.affecting, "burned", src) qdel(G) //Removes the grip to prevent rapid sears and give you a chance to run return 1 return 0 \ No newline at end of file diff --git a/code/modules/food_and_drinks/kitchen_machinery/oven_new.dm b/code/modules/food_and_drinks/kitchen_machinery/oven_new.dm index d6a5921a656..bd850288bc4 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/oven_new.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/oven_new.dm @@ -61,7 +61,7 @@ C.apply_damage(5, BURN, "head") //5 fire damage, 15 brute damage, and weakening because your head was just in a hot oven with the door bashing into your neck! C.apply_damage(15, BRUTE, "head") C.Weaken(2) - add_logs(user, G.affecting, "head smashed in oven") + add_logs(user, G.affecting, "smashed", addition="'s head on [src]") qdel(G) //Removes the grip to prevent rapid bashes. With the weaken, you PROBABLY can't run unless they are slow to grab you again... return 1 return 0