Quick crafters update
Minor update on mineral/jewel crafters' code.
This commit is contained in:
@@ -120,7 +120,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);
|
||||
|
||||
var prompt = "You want me to make ";
|
||||
if (qty == 1)
|
||||
|
||||
Reference in New Issue
Block a user