From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Thu, 27 Apr 2023 18:56:26 +0000 (-0500) Subject: Fix ban_exemption_get only listing Datacenter flag (#15814) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=4b371ae27128104e1fe1b81e35655770a0206def;p=space-station-14.git Fix ban_exemption_get only listing Datacenter flag (#15814) --- diff --git a/Content.Server/Administration/Commands/BanExemptionCommands.cs b/Content.Server/Administration/Commands/BanExemptionCommands.cs index 5a811634e6..6db00db90c 100644 --- a/Content.Server/Administration/Commands/BanExemptionCommands.cs +++ b/Content.Server/Administration/Commands/BanExemptionCommands.cs @@ -98,7 +98,7 @@ public sealed class BanExemptionGetCommand : LocalizedCommands { var mask = (ServerBanExemptFlags) (1 << i); if ((mask & flags) == 0) - break; + continue; if (!first) joined.Append(", ");