Player can now disable emojis

This commit is contained in:
NewHappyRabbit
2025-02-13 21:27:52 +02:00
parent 0b9ab34b63
commit 08e1a7acf7
9 changed files with 141 additions and 38 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
import { GameType, Player, PlayerInfo, UnitInfo, UnitType } from "../game/Game";
import { UserSettings } from "../game/UserSettings";
import { GameConfig } from "../Schemas";
import { ServerConfig } from "./Config";
import { DefaultConfig, DefaultServerConfig } from "./DefaultConfig";
@@ -13,8 +14,8 @@ export class DevServerConfig extends DefaultServerConfig {
}
export class DevConfig extends DefaultConfig {
constructor(sc: ServerConfig, gc: GameConfig) {
super(sc, gc);
constructor(sc: ServerConfig, gc: GameConfig, us: UserSettings) {
super(sc, gc, us);
}
numSpawnPhaseTurns(): number {