Skip to content

Commit

Permalink
Improves calling ini()'s ensures all are called exactly once, polished.
Browse files Browse the repository at this point in the history
  • Loading branch information
Baltasarq committed Oct 31, 2023
1 parent d54673f commit 01adfef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/fi.js
Original file line number Diff line number Diff line change
Expand Up @@ -2415,9 +2415,9 @@ const ctrl = ( function() {
persona.objs.forEach( obj => ents.add( obj ) );
});

// Call ini()
for(const ent of ents.values()) {
ent.ini();
// Call ini()'s
for(const ENT of ents.values()) {
ENT.ini();
}

return;
Expand Down

0 comments on commit 01adfef

Please sign in to comment.