From a66ec6c52126fb4a8fac292b6a96264b274099a1 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Tue, 7 Jun 2022 19:46:40 +0700 Subject: [PATCH] Fix `callerPlayer` remaining in `otherConsole` --- sources/Commands/Command.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Commands/Command.uc b/sources/Commands/Command.uc index 8a127b7..7491429 100644 --- a/sources/Commands/Command.uc +++ b/sources/Commands/Command.uc @@ -404,7 +404,7 @@ private final function MakeConsoles( local int i; publicConsole = _.console.ForAll(); callerConsole = _.console.For(callerPlayer); - othersConsole = _.console.ForAll(); + othersConsole = _.console.ForAll().ButPlayer(callerPlayer); for (i = 0; i < targetPlayers.length; i += 1) { othersConsole.ButPlayer(targetPlayers[i]); }