Skip to content

Commit 4268062

Browse files
committed
bugfix: map was not compact size in compact gamemode
1 parent 8f4e6c2 commit 4268062

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/server/MapPlaylist.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export class MapPlaylist {
159159
gameMap: map,
160160
maxPlayers: await this.lobbyMaxPlayers(map, mode, playerTeams, isCompact),
161161
gameType: GameType.Public,
162-
gameMapSize: GameMapSize.Normal,
162+
gameMapSize: isCompact ? GameMapSize.Compact : GameMapSize.Normal,
163163
publicGameModifiers: {
164164
isCompact,
165165
isRandomSpawn: false,

0 commit comments

Comments
 (0)