From: lzk228 <124214523+lzk228@users.noreply.github.com> Date: Sat, 13 May 2023 12:27:15 +0000 (+0300) Subject: [Fix] Prayer locked notify (#16385) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=ca21b13b76b1ba68ed1f25498b30b12fbebb842c;p=space-station-14.git [Fix] Prayer locked notify (#16385) --- 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; }