Fixes and adds more atmospheric keybinds (#9785)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
Ectype
2025-01-04 04:06:16 -06:00
committed by GitHub
parent d903eb979f
commit 1fa8bd1e4e
4 changed files with 61 additions and 5 deletions

View File

@@ -246,3 +246,19 @@
node2_connect = turn(dir, -90)
node3_connect = dir
return list(node1_connect, node2_connect, node3_connect)
//CHOMPEdit Start - Keybinds for EVEEERYTHING
/obj/machinery/atmospherics/trinary/CtrlClick(mob/user)
user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN)
if(allowed(user))
update_use_power(!use_power)
update_icon()
add_fingerprint(user)
if(use_power)
to_chat(user, span_notice("You toggle the [name] on."))
else
to_chat(user, span_notice("You toggle the [name] off."))
else
to_chat(user, span_warning("Access denied."))
//CHOMPEdit End