Fixed tic tac toe naming

This commit is contained in:
lieght
2025-12-13 15:17:16 +01:00
parent 9c20fcbc39
commit 150fb2986f

View File

@@ -32,7 +32,7 @@ public class OnlineView extends ViewWidget {
var localHostButton = Primitive.button("host!", () -> { var localHostButton = Primitive.button("host!", () -> {
var games = new ConcurrentHashMap<String, Class<? extends TurnBasedGame>>(); var games = new ConcurrentHashMap<String, Class<? extends TurnBasedGame>>();
games.put("tictactoe", BitboardTicTacToe.class); games.put("tic-tac-toe", BitboardTicTacToe.class);
games.put("reversi", BitboardReversi.class); games.put("reversi", BitboardReversi.class);
var a = new MasterServer(6666, games, Duration.ofSeconds(10)); var a = new MasterServer(6666, games, Duration.ofSeconds(10));