Not even shift clicking works...

This commit is contained in:
C109 2015-11-24 18:09:55 -05:00
parent d5a8acbe3b
commit 69379d75e4

View file

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