mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
adds kitchen tools to omnitool (#54718)
This commit is contained in:
@@ -64,7 +64,9 @@
|
||||
"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"),
|
||||
"Blood Filter" = image(icon = 'icons/obj/surgery.dmi', icon_state = "bloodfilter")
|
||||
"Knife" = image(icon = 'icons/obj/kitchen.dmi', icon_state = "knife"),
|
||||
"Blood Filter" = image(icon = 'icons/obj/surgery.dmi', icon_state = "bloodfilter"),
|
||||
"Rolling Pin" = image(icon = 'icons/obj/kitchen.dmi', icon_state = "rolling_pin")
|
||||
)
|
||||
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))
|
||||
@@ -102,5 +104,9 @@
|
||||
tool_behaviour = TOOL_SAW
|
||||
if("Bonesetter")
|
||||
tool_behaviour = TOOL_BONESET
|
||||
if("Knife")
|
||||
tool_behaviour = TOOL_KNIFE
|
||||
if("Blood Filter")
|
||||
tool_behaviour = TOOL_BLOODFILTER
|
||||
if("Rolling Pin")
|
||||
tool_behaviour = TOOL_ROLLINGPIN
|
||||
|
||||
Reference in New Issue
Block a user