瀏覽代碼

These go the other way around.

GJ 11 年之前
父節點
當前提交
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;