1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-17 17:32:36 +01:00

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;
}
}