Merge pull request #3051 from skykatik/patch-1

var -> let
This commit is contained in:
Anuken 2020-10-21 10:48:22 -04:00 committed by GitHub
commit 48f5be6623
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,8 +9,8 @@ const readBytes = path => Vars.mods.getScripts().readBytes(path)
const loadMusic = path => Vars.mods.getScripts().loadMusic(path)
const loadSound = path => Vars.mods.getScripts().loadSound(path)
var scriptName = "base.js"
var modName = "none"
let scriptName = "base.js"
let modName = "none"
const print = text => log(modName + "/" + scriptName, text);