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.
 
 
 

26 lines
308 B

  1. //Imports
  2. const events = require('../misc/events');
  3. //Internals
  4. const mapList = [
  5. {
  6. name: 'cave',
  7. path: 'config/maps'
  8. },
  9. {
  10. name: 'fjolarok',
  11. path: 'config/maps'
  12. }
  13. ];
  14. //Helpers
  15. const init = () => {
  16. events.emit('onBeforeGetMapList', mapList);
  17. };
  18. //Exports
  19. module.exports = {
  20. init,
  21. mapList
  22. };