From 4b371ae27128104e1fe1b81e35655770a0206def Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Thu, 27 Apr 2023 13:56:26 -0500 Subject: [PATCH] Fix ban_exemption_get only listing Datacenter flag (#15814) --- Content.Server/Administration/Commands/BanExemptionCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(", "); -- 2.51.2