From ca21b13b76b1ba68ed1f25498b30b12fbebb842c Mon Sep 17 00:00:00 2001 From: lzk228 <124214523+lzk228@users.noreply.github.com> Date: Sat, 13 May 2023 15:27:15 +0300 Subject: [PATCH] [Fix] Prayer locked notify (#16385) --- 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 64c8f376f0..02328d2fae 100644 --- a/Content.Server/Prayer/PrayerSystem.cs +++ b/Content.Server/Prayer/PrayerSystem.cs @@ -50,7 +50,7 @@ public sealed class PrayerSystem : EntitySystem { if (comp.BibleUserOnly && !EntityManager.TryGetComponent(args.User, out var bibleUser)) { - _popupSystem.PopupEntity(Loc.GetString("prayer-popup-notify-locked"), uid, actor.PlayerSession, PopupType.Large); + _popupSystem.PopupEntity(Loc.GetString("prayer-popup-notify-pray-locked"), uid, actor.PlayerSession, PopupType.Large); return; }