From f0d39e14926a6663415f4c1ffe1c1b63bea8dc35 Mon Sep 17 00:00:00 2001 From: lllllllllwith10ls <38187754+lllllllllwith10ls@users.noreply.github.com> Date: Sat, 30 Sep 2023 19:13:07 -0500 Subject: [PATCH] added a new runAfterAutogen mod and fixed some mods --- index.html | 8 +++- mods/chem.js | 87 +++++++++++++++++++---------------- mods/generative_mods.js | 32 ++++++++++--- mods/metals.js | 23 ++++++++- mods/mobs.js | 25 +++++++++- mods/neutronium_compressor.js | 22 ++++++++- mods/rays.js | 24 +++++++++- mods/runAfterAutogen2.js | 52 +++++++++++++++++++++ mods/the_ground.js | 2 +- 9 files changed, 220 insertions(+), 55 deletions(-) create mode 100644 mods/runAfterAutogen2.js diff --git a/index.html b/index.html index b9b8c5ec..f7f0a70a 100644 --- a/index.html +++ b/index.html @@ -94,7 +94,6 @@ // requestFullScreen function requestFullScreen(element) { /* Supports most browsers and their versions.*/ var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen || element.mozRequestFullScreen || element.msRequestFullScreen; if (requestMethod) { /*Native full screen.*/ requestMethod.call(element); } else if (typeof window.ActiveXObject !== "undefined") { /*Older IE.*/ var wscript = new ActiveXObject("WScript.Shell"); if (wscript !== null) { wscript.SendKeys("{F11}"); } } } - + + +