diff --git a/agot-bg-game-server/src/client/EntireGameComponent.tsx b/agot-bg-game-server/src/client/EntireGameComponent.tsx index 49a7349ce..621fb3d48 100644 --- a/agot-bg-game-server/src/client/EntireGameComponent.tsx +++ b/agot-bg-game-server/src/client/EntireGameComponent.tsx @@ -10,7 +10,6 @@ import CancelledComponent from "./CancelledComponent"; import CancelledGameState from "../common/cancelled-game-state/CancelledGameState"; import Col from "react-bootstrap/Col"; import Badge from "react-bootstrap/Badge"; -import notificationSound from "../../public/sounds/notification.ogg"; import faviconNormal from "../../public/images/favicon.ico"; import faviconAlert from "../../public/images/favicon-alert.ico"; import rollingDicesImage from "../../public/images/icons/rolling-dices.svg"; @@ -25,7 +24,6 @@ import HouseIconComponent from "./game-state-panel/utils/HouseIconComponent"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faLock, faTriangleExclamation } from "@fortawesome/free-solid-svg-icons"; import GameEndedGameState from "../common/ingame-game-state/game-ended-game-state/GameEndedGameState"; -import introSound from "../../public/sounds/game-of-thrones-intro.ogg"; import CombatGameState from "../common/ingame-game-state/action-game-state/resolve-march-order-game-state/combat-game-state/CombatGameState"; import { toast, ToastContainer } from "react-toastify"; import { cssTransition } from "react-toastify"; @@ -48,7 +46,6 @@ interface EntireGameComponentProps { @observer export default class EntireGameComponent extends Component { @observable showMapWhenDrafting = false; - @observable playWelcomeSound = false; setIntervalId = -1; get entireGame(): EntireGame { @@ -121,9 +118,6 @@ export default class EntireGameComponent extends Component : this.entireGame.childGameState instanceof CancelledGameState && } - {this.playWelcomeSound && !this.props.gameClient.musicMuted && -