]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix ban_exemption_get only listing Datacenter flag (#15814)
authorChief-Engineer <119664036+Chief-Engineer@users.noreply.github.com>
Thu, 27 Apr 2023 18:56:26 +0000 (13:56 -0500)
committerGitHub <noreply@github.com>
Thu, 27 Apr 2023 18:56:26 +0000 (11:56 -0700)
Content.Server/Administration/Commands/BanExemptionCommands.cs

index 5a811634e6fc841a9dbc208256cfb6d9cb200c53..6db00db90ce6721ba811e024fadbd04ddaf2f6be 100644 (file)
@@ -98,7 +98,7 @@ public sealed class BanExemptionGetCommand : LocalizedCommands
         {
             var mask = (ServerBanExemptFlags) (1 << i);
             if ((mask & flags) == 0)
-                break;
+                continue;
 
             if (!first)
                 joined.Append(", ");