From a4585f7102372b2c1fcf8707b207ff0ab443514f Mon Sep 17 00:00:00 2001 From: "Wowzewow (Wezzy)" <42310821+alsoandanswer@users.noreply.github.com> Date: Mon, 1 Aug 2022 08:07:22 +0800 Subject: [PATCH] Removes superflous line from snack code (#14506) * Removes superflous line from snack code * lolhg * line deleted --- .../Chemistry-Reagents-Food-Drinks.dm | 6 +-- html/changelogs/wezzy_superfluousline.yml | 41 +++++++++++++++++++ 2 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 html/changelogs/wezzy_superfluousline.yml diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index 8548f394753..0ba80bbe27a 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -156,10 +156,6 @@ var/cooked_name = "coating" taste_description = "some sort of frying coating" -/decl/reagent/nutriment/coating/initial_effect(mob/living/carbon/M, alien, datum/reagents/holder) - . = ..() - to_chat(M, "Ugh, this raw [name] tastes disgusting.") - /decl/reagent/nutriment/coating/digest(var/mob/living/carbon/M, var/removed, var/datum/reagents/holder) var/nut_fact = holder.reagent_data[type]["cooked"] ? nutriment_factor : nutriment_factor / 2 // it's the nut fact M.heal_organ_damage(regen_factor * removed, 0) @@ -5237,4 +5233,4 @@ glass_icon_state = "pulque_coffee" glass_name = "coffee pulque" - description = "A traditional Mictlanian drink made from fermented sap of maguey. This one is coffee flavored." \ No newline at end of file + description = "A traditional Mictlanian drink made from fermented sap of maguey. This one is coffee flavored." diff --git a/html/changelogs/wezzy_superfluousline.yml b/html/changelogs/wezzy_superfluousline.yml new file mode 100644 index 00000000000..c9e8343cfc2 --- /dev/null +++ b/html/changelogs/wezzy_superfluousline.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Wowzewow (Wezzy) + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Removes superfluous taste description from batter."