]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix mime broken vow alert (#33303)
authorCheddaCheez <cheddacheezy@gmail.com>
Thu, 14 Nov 2024 16:56:21 +0000 (10:56 -0600)
committerGitHub <noreply@github.com>
Thu, 14 Nov 2024 16:56:21 +0000 (19:56 +0300)
Swap VowAlert and VowBrokenAlert on lines 149 and 150 so that the proper alerts are cleared and shown

Content.Server/Abilities/Mime/MimePowersSystem.cs

index 20889f293c3b058176156c5c5d4850c6a0170b91..bd8cf7c176618be7012c8316144c446533125121 100644 (file)
@@ -146,8 +146,8 @@ namespace Content.Server.Abilities.Mime
             mimePowers.ReadyToRepent = false;
             mimePowers.VowBroken = false;
             AddComp<MutedComponent>(uid);
-            _alertsSystem.ClearAlert(uid, mimePowers.VowAlert);
-            _alertsSystem.ShowAlert(uid, mimePowers.VowBrokenAlert);
+            _alertsSystem.ClearAlert(uid, mimePowers.VowBrokenAlert);
+            _alertsSystem.ShowAlert(uid, mimePowers.VowAlert);
             _actionsSystem.AddAction(uid, ref mimePowers.InvisibleWallActionEntity, mimePowers.InvisibleWallAction, uid);
         }
     }