Kick stamina spell (#844)

* kick spell

* kick fix
This commit is contained in:
Ed
2025-02-06 12:38:20 +03:00
committed by GitHub
parent 60737dc36e
commit b5eb3a3dc1
11 changed files with 100 additions and 8 deletions

View File

@@ -95,7 +95,8 @@ public abstract partial class CP14SharedMagicSystem
var ev = new CP14VerbalAspectSpeechEvent
{
Performer = args.Performer,
Speech = ent.Comp.StartSpeech,
Speech = Loc.GetString(ent.Comp.StartSpeech),
Emote = ent.Comp.Emote
};
RaiseLocalEvent(ent, ref ev);
}
@@ -108,7 +109,8 @@ public abstract partial class CP14SharedMagicSystem
var ev = new CP14VerbalAspectSpeechEvent
{
Performer = args.Performer,
Speech = ent.Comp.EndSpeech,
Speech = Loc.GetString(ent.Comp.EndSpeech),
Emote = ent.Comp.Emote
};
RaiseLocalEvent(ent, ref ev);
}