From 0c65e35cd8f54cc0bddd0ad436af3b49158fda83 Mon Sep 17 00:00:00 2001 From: Aviu00 Date: Tue, 5 Mar 2024 21:18:11 +0300 Subject: [PATCH] - fix: Fix cult popups. --- Content.Server/_White/Cult/Runes/Systems/CultSystem.Verb.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/_White/Cult/Runes/Systems/CultSystem.Verb.cs b/Content.Server/_White/Cult/Runes/Systems/CultSystem.Verb.cs index d4b8cb238f..059fa77710 100644 --- a/Content.Server/_White/Cult/Runes/Systems/CultSystem.Verb.cs +++ b/Content.Server/_White/Cult/Runes/Systems/CultSystem.Verb.cs @@ -57,7 +57,7 @@ public sealed partial class CultSystem if (comp.SelectedEmpowers.Count >= 1) { - _popupSystem.PopupEntity(Loc.GetString("verb-spell-create-too-much"), ent); + _popupSystem.PopupEntity(Loc.GetString("verb-spell-create-too-much"), ent, ent); return; } @@ -106,7 +106,7 @@ public sealed partial class CultSystem { if (ent.Comp.SelectedEmpowers.Count == 0) { - _popupSystem.PopupEntity(Loc.GetString("verb-spell-remove-no-spells"), ent); + _popupSystem.PopupEntity(Loc.GetString("verb-spell-remove-no-spells"), ent, ent); return; }