Skip to content

Commit

Permalink
Merge pull request #1086 from Armored-Dragon/fix/ControllerScripts-un…
Browse files Browse the repository at this point in the history
…caught-exception

Fix controllerScripts uncaught exception.
  • Loading branch information
ksuprynowicz authored Jul 16, 2024
2 parents d7eb29b + 8656f23 commit 54e993f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/system/controllers/controllerScripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function runDefaultsTogether() {
function runDefaultsSeparately() {
for (var i in CONTOLLER_SCRIPTS) {
if (CONTOLLER_SCRIPTS.hasOwnProperty(i)) {
print("loading " + CONTOLLER_SCRIPTS[j]);
print("loading " + CONTOLLER_SCRIPTS[i]);
Script.load(CONTOLLER_SCRIPTS[i]);
}
}
Expand Down

0 comments on commit 54e993f

Please sign in to comment.