1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-07-05 07:04:44 +02:00

Fixed bug where shift right clicking potion ingredients was broken

This commit is contained in:
TfT_02
2014-03-23 12:59:43 +01:00
parent cfa3d34dff
commit cdfb0da5c9
2 changed files with 5 additions and 2 deletions
src/main/java/com/gmail/nossr50

@ -161,7 +161,7 @@ public final class AlchemyPotionBrewer {
}
from.setAmount(fromAmount - 1);
view.setItem(Alchemy.INGREDIENT_SLOT, emptyTo ? null : to);
view.setItem(Alchemy.INGREDIENT_SLOT, to);
view.setItem(fromSlot, from);
return true;