diff --git a/src/lib/plugins/inventory.js b/src/lib/plugins/inventory.js index 57a1f0d..de4bc24 100644 --- a/src/lib/plugins/inventory.js +++ b/src/lib/plugins/inventory.js @@ -38,9 +38,11 @@ module.exports.player = function(player) if(clickInfo.mouseButton == 0){ // Shift + Left click // Inventory deals with this + return; }else{ // Shift + right click // Inventory deals with this + return; } break; @@ -65,9 +67,11 @@ module.exports.player = function(player) if(clickInfo.mouseButton == 0){ // Drop one item at slot // Inventory handles removing one + return; }else{ // Drop full stack at slot // Inventory handles removing the whole stack + return; } } break;