show console on cmd

This commit is contained in:
2024-08-09 15:37:36 +02:00
parent a30893e04c
commit ef314ac227
3 changed files with 12 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ public static class Extensions
{
public static bool IsSide(this Side @this, Side side)
{
return @this.HasFlag(side) || side.HasFlag(@this);
return @this.HasFlag(side);
}