Skip to content

Commit

Permalink
[Automated] Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
DangoCat authored and GarboMuffin committed Dec 27, 2024
1 parent 8af53ce commit 79aecbb
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions extensions/Lily/ClonesPlus.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@
// If we are inside "create clone of myself with [ ] set to [ ]" then the variable isn't
// set yet. startHats() will evaluate the predicate eagerly, so it wouldn't work here.
if (!isCreatingCloneWithVariable) {
Scratch.vm.runtime.startHats('lmsclonesplus_whenCloneStartsWithVar', null, clone);
Scratch.vm.runtime.startHats(
"lmsclonesplus_whenCloneStartsWithVar",
null,
clone
);
}

return clone;
Expand Down Expand Up @@ -460,8 +464,12 @@
if (cloneVariable) {
cloneVariable.value = args.INPUTB;
}

Scratch.vm.runtime.startHats('lmsclonesplus_whenCloneStartsWithVar', null, clone);

Scratch.vm.runtime.startHats(
"lmsclonesplus_whenCloneStartsWithVar",
null,
clone
);
}
} finally {
isCreatingCloneWithVariable = false;
Expand Down

0 comments on commit 79aecbb

Please sign in to comment.