From 50bc2a23661ca6ec69e2bb829be15adf093f1661 Mon Sep 17 00:00:00 2001
From: Burzah <116982774+Burzah@users.noreply.github.com>
Date: Sun, 20 Aug 2023 19:16:30 -0700
Subject: [PATCH] advtooluser dex messages (#21996)
---
code/game/machinery/airlock_control/airlock_controllers.dm | 1 +
code/game/objects/items/weapons/dna_injector.dm | 1 +
code/game/objects/items/weapons/handcuffs.dm | 1 +
3 files changed, 3 insertions(+)
diff --git a/code/game/machinery/airlock_control/airlock_controllers.dm b/code/game/machinery/airlock_control/airlock_controllers.dm
index cf4da3e384b..4d7a59cf4d1 100644
--- a/code/game/machinery/airlock_control/airlock_controllers.dm
+++ b/code/game/machinery/airlock_control/airlock_controllers.dm
@@ -81,6 +81,7 @@
/obj/machinery/airlock_controller/attack_hand(mob/user)
if(!user.IsAdvancedToolUser())
+ to_chat(user, "You don't have the dexterity to do this!")
return FALSE
ui_interact(user)
diff --git a/code/game/objects/items/weapons/dna_injector.dm b/code/game/objects/items/weapons/dna_injector.dm
index 7e6c1d3c631..2492e42fea0 100644
--- a/code/game/objects/items/weapons/dna_injector.dm
+++ b/code/game/objects/items/weapons/dna_injector.dm
@@ -117,6 +117,7 @@
return FALSE
if(!user.IsAdvancedToolUser())
+ to_chat(user, "You don't have the dexterity to do this!")
return FALSE
var/attack_log = "injected with the Isolated [name]"
diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm
index 37d5ab57fae..d8565028a89 100644
--- a/code/game/objects/items/weapons/handcuffs.dm
+++ b/code/game/objects/items/weapons/handcuffs.dm
@@ -27,6 +27,7 @@
/obj/item/restraints/handcuffs/attack(mob/living/carbon/C, mob/user)
if(!user.IsAdvancedToolUser())
+ to_chat(user, "You don't have the dexterity to do this!")
return
if(!istype(C))