- Sep 29, 2017
- 20
- 7
Softlocked in one of the Group kitchen scenes, the 100 love one.Error: the passage "BLOC 1SK" does not exist
Fixed it myself, but for anyone else trapped in the loop, replace:
Code:
//NEXT BLOC
function nextBloc(event) {
event.stopPropagation();
console.log("nextBloc function called");
nextPartOfDay(); //▮▮▮
SugarCube.Engine.play("BLOC 1SK");
}
Code:
//NEXT BLOC
function nextBloc(event) {
event.stopPropagation();
console.log("nextBloc function called");
nextPartOfDay(); //▮▮▮
SugarCube.Engine.play("1SK");
}
Last edited: