Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 282 Bytes

21_endOfTheLine.md

File metadata and controls

23 lines (15 loc) · 282 Bytes

Jhack (giacgbj)

For example, in:

  • Menu -> Scripts -> object.js:

you can modify this code:

  if (!game.map.finalLevel) {
    game._moveToNextLevel();
  }

like this:

  if (game.map.finalLevel) {
    game._moveToNextLevel();
  }