not only this.. totally crap releaseThe old saves or new start give this often:
You are missing other update files, before last version.The old saves or new start give this often:
While running game code:
File "game/story/map/Street_A/myhome.rpy", line 9179, in script
" "
File "game/story/story_tool.rpy", line 15451, in execute
screen story_tool_place_house_kitchen_eat_movie_br_5:
File "game/story/story_tool.rpy", line 15451, in execute
screen story_tool_place_house_kitchen_eat_movie_br_5:
File "game/story/story_tool.rpy", line 15452, in execute
frame:
File "game/story/story_tool.rpy", line 15456, in execute
add Movie(size=(1420, 798), channel="movie", play="images/story_tool/place/house/kitchen/eat/movie/br/5.webm")
File "game/story/story_tool.rpy", line 15456, in <module>
add Movie(size=(1420, 798), channel="movie", play="images/story_tool/place/house/kitchen/eat/movie/br/5.webm")
Exception: Can't register channel outside of init phase.
Its not missing update. Happened to me every time it tried to play videos. I found the fix for it in "audio.py" file, at line 847. First time i ever looked at renpy code. No idea how it should be, but now that i changed it, its working for me. Videos are played normally now.You are missing other update files, before last version.
Thanks for the fix, it was driving me nutsIts not missing update. Happened to me every time it tried to play videos. I found the fix for it in "audio.py" file, at line 847. First time i ever looked at renpy code. No idea how it should be, but now that i changed it, its working for me. Videos are played normally now.
changed this:
if not renpy.game.context().init_phase and (" " not in name):
to this:
if not renpy.game.context().init_phase and ("" not in name):