Medical belt/medical aid kit consistency updates (#53442)

Lets the new blood filter tool be put in medical belts/medical aid kits since those are supposed to hold surgery tools
Lets spray bottles, amputation shears, and surgical tape be put in medical aid kits since it's supposed to hold the same stuff as the medical belt (I didn't add the plumbing stuff to medical aid kits though since chemists don't get them)
Removes bio bag and chem bag from the medical first aid kit since they're too big to go in there anyway
Adds blood filter mode to the debug omnitool since it's supposed to have a mode for every tool define
This commit is contained in:
Tony
2020-09-05 22:28:15 -03:00
committed by GitHub
parent 2db3bb8ea8
commit c03794c934
3 changed files with 10 additions and 4 deletions
+4 -1
View File
@@ -63,7 +63,8 @@
"Drill" = image(icon = 'icons/obj/surgery.dmi', icon_state = "drill"),
"Scalpel" = image(icon = 'icons/obj/surgery.dmi', icon_state = "scalpel"),
"Saw" = image(icon = 'icons/obj/surgery.dmi', icon_state = "saw"),
"Bonesetter" = image(icon = 'icons/obj/surgery.dmi', icon_state = "bone setter")
"Bonesetter" = image(icon = 'icons/obj/surgery.dmi', icon_state = "bone setter"),
"Blood Filter" = image(icon = 'icons/obj/surgery.dmi', icon_state = "bloodfilter")
)
var/tool_result = show_radial_menu(user, src, tool_list, custom_check = CALLBACK(src, .proc/check_menu, user), require_near = TRUE, tooltips = TRUE)
if(!check_menu(user))
@@ -101,3 +102,5 @@
tool_behaviour = TOOL_SAW
if("Bonesetter")
tool_behaviour = TOOL_BONESET
if("Blood Filter")
tool_behaviour = TOOL_BLOODFILTER