From 790c8a0451c76b97a685e6ab46332def2de58758 Mon Sep 17 00:00:00 2001 From: NanakoAC Date: Sat, 1 Oct 2016 12:07:48 +0100 Subject: [PATCH] Bearskins (#1027) A notable omission when i added bear events, that a few people have asked for. Harvesting a dead bear now also makes a bearpelt for wearing. Trophies for the lizards --- .../mob/living/simple_animal/hostile/bear.dm | 5 +++++ html/changelogs/Nanako-Bearhat.yml | 14 ++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 html/changelogs/Nanako-Bearhat.yml diff --git a/code/modules/mob/living/simple_animal/hostile/bear.dm b/code/modules/mob/living/simple_animal/hostile/bear.dm index 7f735d3c424..3092a47a5fa 100644 --- a/code/modules/mob/living/simple_animal/hostile/bear.dm +++ b/code/modules/mob/living/simple_animal/hostile/bear.dm @@ -80,6 +80,11 @@ ..() update_bearmode() +/mob/living/simple_animal/hostile/bear/harvest() + new /obj/item/clothing/head/bearpelt(get_turf(src)) + ..() + + /mob/living/simple_animal/hostile/bear/proc/set_stance(var/input) var/previous = stance stance = input diff --git a/html/changelogs/Nanako-Bearhat.yml b/html/changelogs/Nanako-Bearhat.yml new file mode 100644 index 00000000000..1442a9f87d0 --- /dev/null +++ b/html/changelogs/Nanako-Bearhat.yml @@ -0,0 +1,14 @@ + +# Your name. +author: Nanako + +# 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: + - rscadd: "Harvesting bears with a knife now skins them too."