소스 검색

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

GJ 12 년 전
부모
커밋
b0acea3353
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/gmail/nossr50/util/Misc.java

+ 1 - 1
src/main/java/com/gmail/nossr50/util/Misc.java

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