| 1307 | |
| 1308 | |
| 1309 | int cProtocol125::ParseCreativeInventoryAction(void) |
| 1310 | { |
| 1311 | HANDLE_PACKET_READ(ReadBEShort, short, SlotNum); |
| 1312 | cItem HeldItem; |
| 1313 | int res = ParseItem(HeldItem); |
| 1314 | if (res < 0) |
| 1315 | { |
| 1316 | return res; |
| 1317 | } |
| 1318 | m_Client->HandleCreativeInventory(SlotNum, HeldItem); |
| 1319 | return PARSE_OK; |
| 1320 | } |
| 1321 | |
| 1322 | |
| 1323 |
nothing calls this directly
no test coverage detected