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.
 
 
 

20 lines
272 B

  1. let events = require('../../misc/events');
  2. let config = [
  3. {
  4. name: 'cave',
  5. path: 'config/maps'
  6. },
  7. {
  8. name: 'fjolarok',
  9. path: 'config/maps'
  10. }
  11. ];
  12. module.exports = {
  13. init: function () {
  14. events.emit('onBeforeGetMapList', config);
  15. this.mapList = config;
  16. }
  17. };