diff --git a/src/client/GameModeSelector.ts b/src/client/GameModeSelector.ts
index 012cfe27d..e80047a6c 100644
--- a/src/client/GameModeSelector.ts
+++ b/src/client/GameModeSelector.ts
@@ -147,21 +147,17 @@ export class GameModeSelector extends LitElement {
class="grid grid-cols-1 sm:grid-cols-[2fr_1fr] gap-4 sm:h-[min(24rem,40vh)]"
>
- ${special
+ ${ffa
? html`
- ${this.renderSpecialLobbyCard(special)}
+ ${this.renderLobbyCard(ffa, this.getLobbyTitle(ffa))}
`
- : ffa
- ? html`
- ${this.renderLobbyCard(ffa, this.getLobbyTitle(ffa))}
-
`
- : nothing}
+ : nothing}
-
+
- ${special && ffa
+ ${special
? html`
- ${this.renderLobbyCard(ffa, this.getLobbyTitle(ffa))}
+ ${this.renderSpecialLobbyCard(special)}
`
: nothing}
${teams