From b5fa8d2262f8b4ce5971fe90a81dacbf5c765e26 Mon Sep 17 00:00:00 2001 From: xDanilcusx Date: Wed, 3 Apr 2024 13:09:01 +0300 Subject: [PATCH] alt+click lets you select all beenos on current z --- code/modules/admin/game_master/game_master.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/admin/game_master/game_master.dm b/code/modules/admin/game_master/game_master.dm index 2426ace529..50a0746a73 100644 --- a/code/modules/admin/game_master/game_master.dm +++ b/code/modules/admin/game_master/game_master.dm @@ -416,6 +416,13 @@ GLOBAL_VAR_INIT(radio_communication_clarity, 100) return TRUE + if(LAZYACCESS(modifiers, ALT_CLICK)) + for(var/atom/selected_xeno in GLOB.xeno_mob_list) + if(selected_xeno.z != game_master_client.mob.z) + continue + select_xeno(selected_xeno) + return TRUE + if(!LAZYACCESS(modifiers, SHIFT_CLICK)) for(var/deselected_xeno in controlled_xenos) deselect_xeno(deselected_xeno)