Round Quattro Bugfixes (#14612)

This commit is contained in:
KingOfThePing
2022-08-14 12:20:22 +02:00
committed by GitHub
parent d677a6db8c
commit 0775b40e62
3 changed files with 45 additions and 5 deletions
@@ -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
)
)
-3
View File
@@ -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."))
@@ -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."