From 362033a0c7b2e13d37cb938fc6b054662b153caf Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BAlio=20C=C3=A9sar=20Ueti?= <52474532+Mirino97@users.noreply.github.com> Date: Sun, 21 Apr 2024 06:01:00 -0300 Subject: [PATCH] Fix ghost prayer interaction (#27199) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fix ghost prayer interaction Co-authored-by: Júlio César --- Content.Server/Prayer/PrayerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Prayer/PrayerSystem.cs b/Content.Server/Prayer/PrayerSystem.cs index f5051741c0..c8ef368dad 100644 --- a/Content.Server/Prayer/PrayerSystem.cs +++ b/Content.Server/Prayer/PrayerSystem.cs @@ -39,7 +39,7 @@ public sealed class PrayerSystem : EntitySystem return; // this is to prevent ghosts from using it - if (!args.CanAccess) + if (!args.CanInteract) return; var prayerVerb = new ActivationVerb -- 2.52.0