This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
auser's profile picture

[1.41][SMP]

Started by auser, 28 September 2012 - 02:53 AM
auser #1
Posted 28 September 2012 - 04:53 AM
ComputerCraft Version Information: 1.41 Client / 1.41 Server
Tekkit with upgraded CC
CB /ver command:
This server is running CraftBukkit version
git-Bukkit-jenkins-CraftBukkit-173 (MC: 1.2.5) (Implementing API version 1.2.5-R4.1-MCPC-SNAPSHOT)

Description of Bug: turtle.place() allows liquid to be placed & retreived diagonally above a turtle

Steps to Reproduce Bug:
1) put 2 dirt in turtle slot 1
2) put water bucket in turtle slot2
3) run this program

for a=1,5 do
turtle.up()
end
turtle.select(1)
turtle.placeUp()
turtle.down()
turtle.place()
turtle.select(2)
turtle.place()


Retreival will not be reproduced as it is getting late.
Cloudy #2
Posted 28 September 2012 - 07:25 AM
You're placing a water bucket against a dirt block with no gap and expecting it to work? Try that yourself and see if it works.

Edit: Derp, I see. Will look into.
auser #3
Posted 30 September 2012 - 08:43 AM
apologies for incorrect title/summary info currently is
[1.41][SMP]
should be
[1.41][SMP] placing & retreiving liquids with a bucket

Also: should I write an example program for retreival?