Unfortunately this dev caused an issue within Ren'Py itself. I could only fix this by overruling Ren'Py's build-in function
SetLocalVariable()
, which I don't want to do.
I have a work-around for you:
- Open the file
renpy/common/00action_data.rpy
- Find the line
def SetLocalVariable(name, value):
(line 161)
- Add a line bellow that one containing:
import sys
Details:
They assigned a character to the variable
sys
, which is a
You must be registered to see the links
because it's use by Ren'Py internally.
Be doing this they broke a function inside Ren'Py that URM needs.