(slot)
| 646 | } |
| 647 | |
| 648 | async function putAway (slot) { |
| 649 | const window = bot.currentWindow || bot.inventory |
| 650 | const promisePutAway = once(window, `updateSlot:${slot}`) |
| 651 | await clickWindow(slot, 0, 0) |
| 652 | const start = window.inventoryStart |
| 653 | const end = window.inventoryEnd |
| 654 | await putSelectedItemRange(start, end, window, null) |
| 655 | await promisePutAway |
| 656 | } |
| 657 | |
| 658 | async function moveSlotItem (sourceSlot, destSlot) { |
| 659 | await clickWindow(sourceSlot, 0, 0) |
nothing calls this directly
no test coverage detected
searching dependent graphs…