thanks, i hate debugging from an xbox

This commit is contained in:
An Orbit 2023-04-16 19:48:09 -04:00 committed by GitHub
parent f13f2086e1
commit 4bbd0ee223
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
var modName = "mods/save_loading.js";
try {
function zeroToNull(val) {
if(val === 0) { return null };
return val;
@ -325,3 +325,6 @@ elements.save_loader = {
color: "#FFFFFF",
desc: saveLoaderDescription,
};
} catch (error) {
alert(`save_loading error: ${error.message}`);
};