Cant upload the version I fixed. But if you want to fix the office. Find the string:
if $tasks.festival4 != undefined || $festival.repeat == true
and replace it with
if $tasks.festival4 != undefined || (def $festival && $festival.repeat == true)
Can confirm this works, at least for the first error I ran into (when Megan wants you to open the management app on the computer)
For anyone confused on how to do this fix, right click the Gateway.html file inside the main folder, and click 'edit in notepad' (or notepad++ if you have it)
Then ctrl+F search for this if $tasks.festival4 != undefined || $festival.repeat == true
Once you've found it, copy this if $tasks.festival4 != undefined || (def $festival && $festival.repeat == true)
And just paste over the original entry that you found with the ctrl+F search. Make sure to leave any surrounding characters in the line and only delete the exact code that was highlighted when you did the search.