From f3a16ffa88fc3ee3efba041f6a198230e063235a Mon Sep 17 00:00:00 2001 From: Jason Date: Mon, 18 Sep 2023 15:38:17 -0500 Subject: [PATCH] Fix mining satchel icon (#17356) * Update ore_satchel.dm Fix mining satchel icon by using new bags.dmi path * add changelog * Changelog Grammar --------- Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> --- code/modules/mining/ore_satchel.dm | 2 +- html/changelogs/jasorn-pr-17356.yml | 42 +++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/jasorn-pr-17356.yml diff --git a/code/modules/mining/ore_satchel.dm b/code/modules/mining/ore_satchel.dm index 93a32254a91..4343e828b4e 100644 --- a/code/modules/mining/ore_satchel.dm +++ b/code/modules/mining/ore_satchel.dm @@ -2,7 +2,7 @@ name = "mining satchel" desc = "This little bugger can be used to store and transport ores." desc_info = "You can attach a warp extraction pack to it, then click on an ore box that has a warp extraction beacon signaller attached to it to link them. Then ore put into this will be bluespace teleported into the ore box." - icon = 'icons/obj/mining.dmi' + icon = 'icons/obj/storage/bags.dmi' icon_state = "satchel" slot_flags = SLOT_BELT | SLOT_POCKET max_storage_space = 100 diff --git a/html/changelogs/jasorn-pr-17356.yml b/html/changelogs/jasorn-pr-17356.yml new file mode 100644 index 00000000000..e2a4f9485e6 --- /dev/null +++ b/html/changelogs/jasorn-pr-17356.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: Jasorn + +# 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: "Fixed the mining satchel icon path." +