Browse Source

Merge branch 'Fix-Issue#63' into 'staging'

Fix issue #63

See merge request !35
tags/v0.1.2^2
Big Bad Waffle 7 years ago
parent
commit
5dcd9c2d48
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/items/salvager.js

+ 1
- 1
src/server/items/salvager.js View File

@@ -120,7 +120,7 @@ define([
if (m.qualityMult)
max *= (m.qualityMult * (item.quality + 1));

var quantity = Math.ceil(random.norm(0, 1) * max);
var quantity = Math.ceil(random.norm(0, 1) * max) || 1;
if (maxRoll)
quantity = Math.ceil(max);



Loading…
Cancel
Save