Difference between revisions of "Turtle.placeUp"
From ComputerCraft Wiki
(Added note to see turtle.select to select the block to be placed.) |
m (Moved to CAT:LuaCoreFunctions) |
||
Line 1: | Line 1: | ||
− | |||
{{lowercase}} | {{lowercase}} | ||
{{Function | {{Function | ||
Line 14: | Line 13: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:Lua_Core_Functions]] |
Revision as of 18:57, 28 November 2012
Function turtle.placeUp | |
Places a Block of the selected Slot above. See function turtle.select for information on selecting a slot for placement. | |
Syntax | turtle.placeUp() |
Returns | boolean whether the turtle succeeded in placing the block. False if selected slot is empty, or if there is already a block above. |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Places a Block of the selected Slot above | |
Code |
turtle.placeUp() |