From 0775b40e623894501dff02f4ed7b963671345c1c Mon Sep 17 00:00:00 2001 From: KingOfThePing <43940569+KingOfThePing@users.noreply.github.com> Date: Sun, 14 Aug 2022 12:20:22 +0200 Subject: [PATCH] Round Quattro Bugfixes (#14612) --- .../objects/items/weapons/surgery_tools.dm | 5 ++- code/modules/mining/mine_items.dm | 3 -- ...KingOfThePing - bugfixes_round_quattro.yml | 42 +++++++++++++++++++ 3 files changed, 45 insertions(+), 5 deletions(-) create mode 100644 html/changelogs/KingOfThePing - bugfixes_round_quattro.yml diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index f47176b3661..1601a4c3a2c 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -331,7 +331,8 @@ /obj/item/surgery/hemostat = 1, /obj/item/surgery/retractor = 1, /obj/item/surgery/scalpel = 1, - /obj/item/surgery/surgicaldrill = 1 + /obj/item/surgery/surgicaldrill = 1, + /obj/item/surgery/cautery, ) can_hold = list( @@ -341,4 +342,4 @@ /obj/item/surgery/retractor, /obj/item/surgery/scalpel, /obj/item/surgery/surgicaldrill - ) \ No newline at end of file + ) diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm index 0840c6e0507..f7eed4c6197 100644 --- a/code/modules/mining/mine_items.dm +++ b/code/modules/mining/mine_items.dm @@ -487,9 +487,6 @@ var/obj/item/stack/flag/F = locate() in get_turf(src) var/turf/T = get_turf(src) - if(!T || !istype(T, /turf/unsimulated/floor/asteroid)) - to_chat(user, SPAN_WARNING("The beacon won't stand up in this terrain.")) - return if(F?.upright) to_chat(user, SPAN_WARNING("There is already a beacon here.")) diff --git a/html/changelogs/KingOfThePing - bugfixes_round_quattro.yml b/html/changelogs/KingOfThePing - bugfixes_round_quattro.yml new file mode 100644 index 00000000000..064cfcd1839 --- /dev/null +++ b/html/changelogs/KingOfThePing - bugfixes_round_quattro.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: KingOfThePing + +# 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 mining beacons unable to be planet on any other turf than unsimulated asteroid turfs." + - bugfix: "Added a cautery to the robotics surgical tray, which was most likely forgotten."