More OCD.

This commit is contained in:
gmcferrin
2013-01-09 23:07:32 -05:00
parent e193da2cd7
commit 4a4db675f1
10 changed files with 66 additions and 66 deletions

View File

@ -249,7 +249,7 @@ public class Misc {
* @param quantity The amount of items to drop
*/
public static void randomDropItems(Location location, ItemStack is, int chance, int quantity) {
for(int i = 0; i < quantity; i++) {
for (int i = 0; i < quantity; i++) {
randomDropItem(location, is, chance);
}
}