diff --git a/src/js/game/core.js b/src/js/game/core.js index 9147778f..3d9130e0 100644 --- a/src/js/game/core.js +++ b/src/js/game/core.js @@ -213,9 +213,6 @@ export class GameCore { logger.log("Creating new canvas"); canvas = document.createElement("canvas"); canvas.id = "ingame_Canvas"; - canvas.setAttribute("opaque", "true"); - canvas.setAttribute("webkitOpaque", "true"); - canvas.setAttribute("mozOpaque", "true"); this.root.gameState.getDivElement().appendChild(canvas); context = canvas.getContext("2d", { alpha: false });