====
TAGS
====
rule_prefix_tag = x1 x2
another_tag = y1 y2
=====
RULES
=====
rule_prefix_tag [no thing:rule_prefix_tag:another_tag] -> []
In Pattern:Script, this rule correctly complies into:
[ no thing:x1:y1 no thing:x1:y2 ] -> [ ]
+ [ no thing:x2:y1 no thing:x2:y2 ] -> [ ]
But in PuzzleScript Next, this rule incorrectly complies into:
[ no thing:x1:y1 ] -> [ ]
+ [ no thing:x1:y2 ] -> [ ]
+ [ no thing:x2:y1 ] -> [ ]
+ [ no thing:x2:y2 ] -> [ ]