an error, probably from the mod? it seems safely ignorable but might as well report anyway
As someone posted above, it's a missing variable. It was declared in the last version's copy of gallery_ripson.rpy but that file is not in the new mod release.
Also, don't ignore it or the menu it's attached to won't work right.
HERE'S A QUICK FIX IF ANYONE NEEDS IT:
open ./game/
ep1.rpy and go to line 23.
23 init python:
24 def switch_Textbox_visibility():
Change it to this block, inserting the various defined vars. (Not all of them are needed for this release, but adding them won't hurt.)
23 init python:
ripsonGR = ("{color=#0f0}")
ripsonRED = ("{color=#f00}")
ripsonLBlue = ("{color=#8080ff}")
ripsonBlack = ("{color=#000000}")
ripsonRed = ("{color=#f00}")
ripsonREd = ("{color=#f00}")
ripsonReD = ("{color=#f00}")
ripsonrED = ("{color=#f00}")
ripsongR = ("{color=#0f0}")
ripsonGr = ("{color=#0f0}")
ripsongr = ("{color=#0f0}")
ripsonLBlue = ("{color=#8080ff}")
ripsonBlack = ("{color=#000000}")
ripsonBlue = ("{color=#0000ff}")
ripsonWhite = ("{color=#ffffff}")
ripsonHarlow = ("{color=#ffa0fa}")
ripsonRiley = ("{color=#ffff50}")
ripsonErika = ("{color=#b400ff}")
ripsonVanessa = ("{color=#00ff30}")
ripsonKate = ("{color=#ff005f}")
ripsonUni = ("{color=#E7E9B9}")
def switch_Textbox_visibility():
(I'm sure
Ripson will fix/patch it but in the meantime you can use the above.)