QUOTE(OnceForAll @ Nov 1 2025, 10:57)

The new isekai (new version of the HV) brokes the "duration" feature, here is how you can fix this:
In your script manager, open the editor, find
CODE
/(x(\d))*[^(]*, (\d+)/
and replace it with
CODE
/(x(\d))*[^(]*,\s?(\d+)/
My new regex works for both existing persistent and new isekai.
Thanks!
However, the code for me was
CODE
/(x(\d))*[^\(]*, (\d+)/
and was on line 754. The difference was a \ in the brackets.
So the code I used was
CODE
/(x(\d))*[^\(]*,\s?(\d+)/
and this worked in both persistent and isekai.