Procházet zdrojové kódy

fix for currency chances

tags/v0.9.1^2
Shaun před 3 roky
rodič
revize
383a142a73
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/server/items/generator.js

+ 1
- 1
src/server/items/generator.js Zobrazit soubor

@@ -47,7 +47,7 @@ module.exports = {
if (blueprint.level < 5)
currencyChance = 0;
else if (blueprint.level < 14)
currencyChance = (blueprint.level - 4) / 11;
currencyChance *= (blueprint.level - 4) / 11;

//If you kill a mob that's too low of a level, idols are much more rare
if (


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