From 47b45eb1f83c45e1e86a6456f27a80b631f8da23 Mon Sep 17 00:00:00 2001 From: Abbie Fland <34605836+AbbieFland@users.noreply.github.com> Date: Thu, 22 Feb 2018 03:17:03 +0000 Subject: [PATCH] Fixed pAI communicator buttons. While pAI could open their communicator, they were unable to interact with any of the buttons in its UI. This adds the UI of their own built-in communicator to the other two UIs they were already explicitly allowed to access (those of their own radio and their own interface). --- code/modules/nano/interaction/default.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/nano/interaction/default.dm b/code/modules/nano/interaction/default.dm index e612ca9ca0..dbb0781d33 100644 --- a/code/modules/nano/interaction/default.dm +++ b/code/modules/nano/interaction/default.dm @@ -17,7 +17,7 @@ return STATUS_UPDATE // Ghosts can view updates /mob/living/silicon/pai/default_can_use_topic(var/src_object) - if((src_object == src || src_object == radio) && !stat) + if((src_object == src || src_object == radio || src_object == communicator) && !stat) return STATUS_INTERACTIVE else return ..()