Quick crafters update

Minor update on mineral/jewel crafters' code.
This commit is contained in:
ronancpl
2018-01-22 15:00:05 -02:00
parent f74dfbb46a
commit 2d932a9e12
12 changed files with 12 additions and 14 deletions

View File

@@ -138,7 +138,7 @@ function action(mode, type, selection) {
qty = 1;
}
else
qty = (selection > 0) ? selection : (-selection <= 0 ? 1 : -selection);
qty = (selection > 0) ? selection : (selection < 0 ? -selection : 1);
if (selectedType == 0){ //glove refine
var itemSet = new Array(1082002,1082029,1082030,1082031,1082032,1082037,1082042,1082046,1082075,1082065,1082092);