How to fix Weather Control by Aries?

Aries003_WeatherControlEmbersFix.zip (413 Bytes)

I figured out the bug. The above is a super simple plugin that should fix the issue.

The cause was really simple: The plugin forgot to input the embers screen tone color into memory. Basically what ‘Cannot read property 0 of undefined’ means is it’s trying to read data from a list that doesn’t exist. The fix is essentially changing just one line.


Aries.P003_WCT.HeatTone   = eval(Aries.P003_WCT.Param["Embers Screen Tone Color"]);

You could run this as a script as well and it also fixes the bug. This code creates that exact list that was missing and reads from the plugin parameters.

2 Likes