mirror of
https://git.zelz.net/catfoolyou/Project164.git
synced 2025-12-14 10:47:41 +00:00
No integrated server, fix this later
This commit is contained in:
File diff suppressed because it is too large
Load Diff
806281
javascript/classes.js
806281
javascript/classes.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -19,7 +19,7 @@ try {
|
||||
*/
|
||||
const relayId = Math.floor(Math.random() * 3);
|
||||
window.eaglercraftOpts = {
|
||||
container: "game_frame", assetsURI: "assets.epk", serverWorkerURI: null, worldsFolder: "TEST",
|
||||
container: "game_frame", assetsURI: "assets.epk", serverWorkerURI: "worker_bootstrap.js", worldsFolder: "TEST",
|
||||
assetOverrides: {
|
||||
// "title/no-pano-blur.flag": "",
|
||||
"records/wait.mp3": "wait.mp3",
|
||||
|
||||
5
javascript/worker_bootstrap.js
Normal file
5
javascript/worker_bootstrap.js
Normal file
@@ -0,0 +1,5 @@
|
||||
onmessage = function(o) {
|
||||
importScripts("classes_server.js");
|
||||
eaglercraftServerOpts = o.data;
|
||||
main();
|
||||
};
|
||||
Reference in New Issue
Block a user