mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Complete inventory shift click
Complete item stacking mechanism for left click
This commit is contained in:
parent
a6e6668fe0
commit
9137fa59e7
5 changed files with 180 additions and 27 deletions
|
|
@ -1573,7 +1573,7 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
case WindowActionType.LeftClick: button = 0; break;
|
||||
case WindowActionType.RightClick: button = 1; break;
|
||||
case WindowActionType.MiddleClick: button = 2; mode = 3; break;
|
||||
case WindowActionType.ShiftClick: button = 0; mode = 1; break;
|
||||
case WindowActionType.ShiftClick: button = 0; mode = 1; item = new Item(-1, 0, null); break;
|
||||
case WindowActionType.DropItem:
|
||||
button = 0;
|
||||
mode = 4;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue