diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index c5523ea5b78..84490ae6c5d 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -114,8 +114,14 @@ ..() /obj/item/storage/box/survival + name = "emergency survival box" + desc = "A faithful box that will remain with you, no matter where you go, and probably save you." + icon_state = "e_box" autodrobe_no_remove = 1 - starts_with = list(/obj/item/clothing/mask/breath = 1, /obj/item/tank/emergency_oxygen = 1) + starts_with = list(/obj/item/clothing/mask/breath = 1, + /obj/item/tank/emergency_oxygen = 1, + /obj/item/device/flashlight/flare = 1 + ) /obj/item/storage/box/survival/fill() ..() diff --git a/html/changelogs/mattatlas-weirdbox.yml b/html/changelogs/mattatlas-weirdbox.yml new file mode 100644 index 00000000000..33647c2d556 --- /dev/null +++ b/html/changelogs/mattatlas-weirdbox.yml @@ -0,0 +1,42 @@ +################################ +# 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: MattAtlas, 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: + - imageadd: "Resprited and renamed the internals box you spawn with. Thank you Wezzy for the sprite." + - rscadd: "Added a flare to the emergency survival box." diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index 8252ddc4620..a18148ab877 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ