Defaulted quantities should be defaulted everywhere.

Fixes #1581
This commit is contained in:
Glitchfinder 2013-11-03 09:40:04 -08:00
parent cd470d5497
commit af578870c7

View File

@ -108,6 +108,10 @@ public class Repair {
}
}
if (quantity <= 0) {
return 2;
}
return quantity;
}
}