選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

20 行
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. };