Procházet zdrojové kódy

removed test code

tags/v0.8.3^2
Shaun před 3 roky
rodič
revize
c9bc87d925
3 změnil soubory, kde provedl 7 přidání a 7 odebrání
  1. +1
    -1
      src/server/components/syncer.js
  2. +5
    -5
      src/server/config/maps/sewer/events/plagueOfRats.js
  3. +1
    -1
      src/server/config/serverConfig.js

+ 1
- 1
src/server/components/syncer.js Zobrazit soubor

@@ -31,7 +31,7 @@ module.exports = {
this.buffer = [];
},

queue: function (args, a) {
queue: function (args) {
this.buffer.push(args);
},



+ 5
- 5
src/server/config/maps/sewer/events/plagueOfRats.js Zobrazit soubor

@@ -51,13 +51,13 @@ const descriptionStrings = {
};

const config = {
//cron: '0 */3 * * *',
cron: '* * * * *',
cron: '0 */3 * * *',
//cron: '* * * * *',
idFirstSpawnPhase: 6,
idFailPhase: 19,
maxEscapees: 5000,
//repeats: [5, 5, 3],
repeats: [1, 1, 1],
maxEscapees: 5,
repeats: [5, 5, 3],
//repeats: [1, 1, 1],
rewardItemsPerKill: 3
};



+ 1
- 1
src/server/config/serverConfig.js Zobrazit soubor

@@ -8,7 +8,7 @@ module.exports = {
// sqlite
// rethink
//eslint-disable-next-line no-process-env
db: process.env.IWD_DB || 'rethink',
db: process.env.IWD_DB || 'sqlite',
//eslint-disable-next-line no-process-env
dbHost: process.env.IWD_DB_HOST || 'localhost',
//eslint-disable-next-line no-process-env


Načítá se…
Zrušit
Uložit