From 1527fd3edff115c0725f24686ade550c03849e7d Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Fri, 12 Apr 2024 18:02:40 +0300 Subject: [PATCH] stop pulling on C, toggle movement unbound (#55) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About The Pull Request Стоп пулл на С Переключение движения убрано по умолчанию --- modular_bandastation/keybinding/code/living.dm | 2 +- modular_bandastation/keybinding/code/mob.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_bandastation/keybinding/code/living.dm b/modular_bandastation/keybinding/code/living.dm index 8dd442016d4e8..f07a12c5546b6 100644 --- a/modular_bandastation/keybinding/code/living.dm +++ b/modular_bandastation/keybinding/code/living.dm @@ -25,7 +25,7 @@ /datum/keybinding/living/toggle_move_intent full_name = "Смена режима ходьбы (зажать)" - hotkey_keys = list("C") + hotkey_keys = list("Unbound") description = "Удерживайте, чтобы временно поменять режим передвижения." /datum/keybinding/living/toggle_move_intent_alternative diff --git a/modular_bandastation/keybinding/code/mob.dm b/modular_bandastation/keybinding/code/mob.dm index dab2cbcdfaf62..e9233eb28e277 100644 --- a/modular_bandastation/keybinding/code/mob.dm +++ b/modular_bandastation/keybinding/code/mob.dm @@ -1,6 +1,6 @@ /datum/keybinding/mob/stop_pulling full_name = "Перестать тащить" - hotkey_keys = list("H", "Delete") + hotkey_keys = list("C", "Delete") /datum/keybinding/mob/swap_hands full_name = "Поменять руки"