mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-07 04:00:46 +00:00
Not even shift clicking works...
This commit is contained in:
parent
d5a8acbe3b
commit
69379d75e4
1 changed files with 4 additions and 0 deletions
|
|
@ -38,9 +38,11 @@ module.exports.player = function(player)
|
||||||
if(clickInfo.mouseButton == 0){
|
if(clickInfo.mouseButton == 0){
|
||||||
// Shift + Left click
|
// Shift + Left click
|
||||||
// Inventory deals with this
|
// Inventory deals with this
|
||||||
|
return;
|
||||||
}else{
|
}else{
|
||||||
// Shift + right click
|
// Shift + right click
|
||||||
// Inventory deals with this
|
// Inventory deals with this
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
@ -65,9 +67,11 @@ module.exports.player = function(player)
|
||||||
if(clickInfo.mouseButton == 0){
|
if(clickInfo.mouseButton == 0){
|
||||||
// Drop one item at slot
|
// Drop one item at slot
|
||||||
// Inventory handles removing one
|
// Inventory handles removing one
|
||||||
|
return;
|
||||||
}else{
|
}else{
|
||||||
// Drop full stack at slot
|
// Drop full stack at slot
|
||||||
// Inventory handles removing the whole stack
|
// Inventory handles removing the whole stack
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue