It looks like you're new here. If you want to get involved, click one of these buttons!
<<set $currentLoops.splice($currentLoops.indexOf($march),1)>>
For Twine 2 I change this into : (set: $dests.splice($dests.indexOf($dest),1))
Witch actually works ! besides I got this error : "(set:)'s 1st value is an array, but should be an assignment operation."
Comments
The Harlowe (set:) macro expects you to be assigning the result of the Javascript expression to a variable, which is why you get the error message. You can solve this by assigning the result of your expression to a dummy meaningless variable, as shown in the following example: If you want to save line space you could reformat the above like so:
It make sens now.