mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 00:21:11 +01:00
Disable Click Macros (#10533)
This commit is contained in:
@@ -2037,3 +2037,21 @@
|
||||
if(!(accent in species.allowed_accents))
|
||||
accent = species.default_accent
|
||||
return TRUE
|
||||
|
||||
/mob/living/carbon/human/verb/click_belt()
|
||||
set hidden = 1
|
||||
set name = "click_belt"
|
||||
if(belt)
|
||||
belt.Click()
|
||||
|
||||
/mob/living/carbon/human/verb/click_uniform()
|
||||
set hidden = 1
|
||||
set name = "click_uniform"
|
||||
if(w_uniform)
|
||||
w_uniform.Click()
|
||||
|
||||
/mob/living/carbon/human/verb/click_back()
|
||||
set hidden = 1
|
||||
set name = "click_back"
|
||||
if(back)
|
||||
back.Click()
|
||||
@@ -975,3 +975,9 @@ default behaviour is:
|
||||
if(src)
|
||||
clear_fullscreen("flash", 25)
|
||||
return 1
|
||||
|
||||
/mob/living/verb/toggle_run_intent()
|
||||
set hidden = 1
|
||||
set name = "mov_intent"
|
||||
if(hud_used?.move_intent)
|
||||
hud_used.move_intent.Click()
|
||||
@@ -1448,4 +1448,4 @@
|
||||
if(!check_has_body_select())
|
||||
return
|
||||
var/obj/screen/zone_sel/selector = mob.zone_sel
|
||||
selector.set_selected_zone(next_in_list(mob.zone_sel.selecting,zones))
|
||||
selector.set_selected_zone(next_in_list(mob.zone_sel.selecting,zones))
|
||||
Reference in New Issue
Block a user