Difference between revisions of "Turtle.placeDown"
From ComputerCraft Wiki
m |
(returns bool) |
||
Line 6: | Line 6: | ||
|addon=ComputerCraft | |addon=ComputerCraft | ||
|desc=Places a Block of the selected Slot below | |desc=Places a Block of the selected Slot below | ||
+ | |returns=[[boolean]] whether the turtle succeeded in placing the block. False if selected slot is empty, or if there is already a block below. | ||
|examples= | |examples= | ||
{{Example | {{Example |
Revision as of 13:41, 11 October 2012
Function turtle.placeDown | |
Places a Block of the selected Slot below | |
Syntax | turtle.placeDown() |
Returns | boolean whether the turtle succeeded in placing the block. False if selected slot is empty, or if there is already a block below. |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Places a Block of the selected Slot below | |
Code |
turtle.placeDown() |