You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 regels
244 B

  1. module.exports = {
  2. update: function () {
  3. const anyMobsAlive = this.event.objects.some(o => {
  4. if (!o.mob)
  5. return false;
  6. else if (!o.destroyed)
  7. return true;
  8. return false;
  9. });
  10. if (!anyMobsAlive)
  11. this.end = true;
  12. }
  13. };