diff options
author | bibo38 <bibo38@github.com> | 2015-06-25 13:01:48 +0200 |
---|---|---|
committer | bibo38 <bibo38@github.com> | 2015-06-25 13:01:48 +0200 |
commit | ec628846d2dbc65736f1c8bee90ff44a04e615e1 (patch) | |
tree | 1468dc7417d0731b79ec99a812a3c9788c00e0e3 /src/Protocol | |
parent | Merge pull request #2284 from cuberite/FixBiomeGen (diff) | |
download | cuberite-ec628846d2dbc65736f1c8bee90ff44a04e615e1.tar cuberite-ec628846d2dbc65736f1c8bee90ff44a04e615e1.tar.gz cuberite-ec628846d2dbc65736f1c8bee90ff44a04e615e1.tar.bz2 cuberite-ec628846d2dbc65736f1c8bee90ff44a04e615e1.tar.lz cuberite-ec628846d2dbc65736f1c8bee90ff44a04e615e1.tar.xz cuberite-ec628846d2dbc65736f1c8bee90ff44a04e615e1.tar.zst cuberite-ec628846d2dbc65736f1c8bee90ff44a04e615e1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 2 | ||||
-rw-r--r-- | src/Protocol/Protocol18x.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 3d96071b5..c5c0f4a03 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -2374,7 +2374,7 @@ void cProtocol172::HandlePacketWindowClick(cByteBuffer & a_ByteBuffer) case 0x0206: Action = caNumber7; break; case 0x0207: Action = caNumber8; break; case 0x0208: Action = caNumber9; break; - case 0x0300: Action = caMiddleClick; break; + case 0x0302: Action = caMiddleClick; break; case 0x0400: Action = (SlotNum == SLOT_NUM_OUTSIDE) ? caLeftClickOutsideHoldNothing : caDropKey; break; case 0x0401: Action = (SlotNum == SLOT_NUM_OUTSIDE) ? caRightClickOutsideHoldNothing : caCtrlDropKey; break; case 0x0500: Action = (SlotNum == SLOT_NUM_OUTSIDE) ? caLeftPaintBegin : caUnknown; break; diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp index 7cbabf806..d5dd328a4 100644 --- a/src/Protocol/Protocol18x.cpp +++ b/src/Protocol/Protocol18x.cpp @@ -2692,7 +2692,7 @@ void cProtocol180::HandlePacketWindowClick(cByteBuffer & a_ByteBuffer) case 0x0206: Action = caNumber7; break; case 0x0207: Action = caNumber8; break; case 0x0208: Action = caNumber9; break; - case 0x0300: Action = caMiddleClick; break; + case 0x0302: Action = caMiddleClick; break; case 0x0400: Action = (SlotNum == SLOT_NUM_OUTSIDE) ? caLeftClickOutsideHoldNothing : caDropKey; break; case 0x0401: Action = (SlotNum == SLOT_NUM_OUTSIDE) ? caRightClickOutsideHoldNothing : caCtrlDropKey; break; case 0x0500: Action = (SlotNum == SLOT_NUM_OUTSIDE) ? caLeftPaintBegin : caUnknown; break; |