From 36f5e702bb18366a4ecd516683dd87fba780dcb1 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Tue, 28 Jun 2022 04:57:57 +0700 Subject: [PATCH] Fix typo in `CommandAnnouncer`'s label constant --- sources/CommandAnnouncer.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/CommandAnnouncer.uc b/sources/CommandAnnouncer.uc index 8fceb1b..28b2406 100644 --- a/sources/CommandAnnouncer.uc +++ b/sources/CommandAnnouncer.uc @@ -253,7 +253,7 @@ private final function AnnounceTemplate( if (!template.IsInitialized()) return; template - .TextArg(P("intigator"), instigatorName) + .TextArg(P("instigator"), instigatorName) .TextArg(P("target"), targetName); result = template.CollectFormattedM(); writer.Say(result);