25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

20 satır
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. };