소스 검색

These go the other way around.

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

+ 2 - 2
src/main/java/com/gmail/nossr50/skills/alchemy/AlchemyPotionBrewer.java

@@ -126,10 +126,10 @@ public final class AlchemyPotionBrewer {
         boolean success = false;
 
         if (click.isLeftClick()) {
-            success = transferOneItem(view, fromSlot, toSlot);
+            success = transferItems(view, fromSlot, toSlot);
         }
         else if (click.isRightClick()) {
-            success = transferItems(view, fromSlot, toSlot);
+            success = transferOneItem(view, fromSlot, toSlot);
         }
 
         return success;