From 062fa1771586847427ebfa70d8d155224c9a8a7c Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Thu, 16 Jan 2025 20:46:12 -0500 Subject: [PATCH] Holopads now only activate on help intent (#27970) --- code/game/machinery/hologram.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm index e2e4465b9f3..c57b10ff4ea 100644 --- a/code/game/machinery/hologram.dm +++ b/code/game/machinery/hologram.dm @@ -176,6 +176,9 @@ GLOBAL_LIST_EMPTY(holopads) if(outgoing_call) return + if(user.a_intent != INTENT_HELP) + return + user.set_machine(src) interact(user)