Debris should drop normal drops

This commit is contained in:
T00thpick1
2013-05-15 10:23:09 -04:00
parent 3158c7e3eb
commit 78f53f294a
3 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,6 @@
package com.gmail.nossr50.util;
import java.util.Collection;
import java.util.Random;
import org.bukkit.Location;
@ -206,4 +207,10 @@ public final class Misc {
public static Random getRandom() {
return random;
}
public static void dropItems(Location location, Collection<ItemStack> drops) {
for (ItemStack drop : drops) {
dropItem(location, drop);
}
}
}