Fix Various Test Fails (#2186)

# Description

Fixes a few test fails caused by merging PRs that had test fails. Also
fixed a bug with spell popup text. And cleaned up the Mantis blade
summoning test.

https://github.com/user-attachments/assets/3ae44f67-99da-4d16-ade1-5473bf7baad0

# Changelog

🆑
- tweak: Taught the Psionic Mantis how to summon his blade quietly, and
not do so via screaming like a lunatic.

---------

Signed-off-by: VMSolidus <evilexecutive@gmail.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
(cherry picked from commit 7aebe8a48f7ed1d252ba9859cb5a2d4482cc21e4)
This commit is contained in:
VMSolidus
2025-04-06 15:44:17 -04:00
committed by Spatison
parent 601fc72888
commit f08210b8f5
7 changed files with 58 additions and 10 deletions

View File

@@ -18,6 +18,6 @@ public sealed class MagicSystem : SharedMagicSystem
private void OnSpellSpoken(ref SpeakSpellEvent args)
{
_chat.TrySendInGameICMessage(args.Performer, Loc.GetString(args.Speech), InGameICChatType.Speak, false);
_chat.TrySendInGameICMessage(args.Performer, Loc.GetString(args.Speech), args.ChatType, false);
}
}