Skip to content

Commit 01adfef

Browse files
committed
Improves calling ini()'s ensures all are called exactly once, polished.
1 parent d54673f commit 01adfef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/fi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2415,9 +2415,9 @@ const ctrl = ( function() {
24152415
persona.objs.forEach( obj => ents.add( obj ) );
24162416
});
24172417

2418-
// Call ini()
2419-
for(const ent of ents.values()) {
2420-
ent.ini();
2418+
// Call ini()'s
2419+
for(const ENT of ents.values()) {
2420+
ENT.ini();
24212421
}
24222422

24232423
return;

0 commit comments

Comments
 (0)