Fix worker harded code hash

This commit is contained in:
2026-03-15 13:52:17 -03:00
parent 61011959f2
commit 42f5536580
3 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -19,6 +19,6 @@
</head>
<body>
<canvas id="game"></canvas>
<script src="main.ts" type="module"></script>
<script src="main.js" type="module"></script>
</body>
</html>
+1 -1
View File
@@ -18,7 +18,7 @@ import { AssetManager } from "../../assets.ts";
let gdimension: Dimension;
const worker = new Worker(new URL("./systems/rendering/chunk_mesh_worker-AYRYRGPW.js", import.meta.url), {
const worker = new Worker(new URL("./systems/rendering/chunk_mesh_worker.js", import.meta.url), {
type: "module",
});