mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 22:42:26 +01:00
Exosuit Convenience (#12159)
This commit is contained in:
@@ -42,17 +42,17 @@
|
||||
return
|
||||
|
||||
if(modifiers["alt"])
|
||||
if(selected_system)
|
||||
if(selected_system == A)
|
||||
selected_system.attack_self(user)
|
||||
setClickCooldown(5)
|
||||
var/obj/item/mecha_equipment/ME = A
|
||||
if(istype(ME))
|
||||
ME.attack_self(user)
|
||||
setClickCooldown(5)
|
||||
return
|
||||
|
||||
if(modifiers["ctrl"])
|
||||
if(selected_system)
|
||||
if(selected_system == A)
|
||||
selected_system.CtrlClick(user)
|
||||
setClickCooldown(5)
|
||||
var/obj/item/mecha_equipment/ME = A
|
||||
if(istype(ME))
|
||||
ME.CtrlClick(user)
|
||||
setClickCooldown(5)
|
||||
return
|
||||
|
||||
if(!(user in pilots) && user != src)
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
author: Geeves
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- tweak: "You can now Ctrl and Alt click on mech equipment without having to select them first."
|
||||
Reference in New Issue
Block a user