turtle.dropUp
From ComputerCraft Wiki
Function turtle.dropUp | |
Drops all items off the selected slot, or, if count is specified, drops that many items. The items are dropped on the space above the turtle by default, but if there is an inventory in that block, the items go to that inventory instead. Then the items will be placed in the first available slot of the inventory, starting at the top left, moving right and then down. Before Minecraft 1.5/ComputerCraft 1.51, dropUp would load the bottom (fuel) slot for furnaces, since the hopper-related changes, fuel is loaded into the sides, and the output slot is available on the bottom (using turtle.suckUp) | |
Syntax | turtle.dropUp([number count]) |
Returns | boolean true if an item was dropped; false otherwise. |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Drops all items in the first available slot. | |
Code |
turtle.dropUp() |