ソースを参照

fix for currency chances

(cherry picked from commit 383a142a73)
tags/v0.9.0.1
Shaun 3年前
committed by Big Bad Waffle
コミット
6c5db3e4f3
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/server/items/generator.js

+ 1
- 1
src/server/items/generator.js ファイルの表示

@@ -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 (


読み込み中…
キャンセル
保存