Fix bug in previous dev build that would make mcMMO never drop items...

This commit is contained in:
GJ 2013-02-01 15:07:18 -05:00
parent 862f5d73e1
commit b0acea3353

View File

@ -344,7 +344,7 @@ public final class Misc {
*/
public static void dropItem(Location location, ItemStack itemStack) {
if (itemStack.getType() != null || itemStack.getType() == Material.AIR) {
if (itemStack.getType() == null || itemStack.getType() == Material.AIR) {
return;
}