Minecraft 1.17.1 How to Summon a Falling Block: (piston[extended=true])?

627 Views Asked by At

I tried the following command:

summon falling_block ~ ~ ~ {BlockState:{Name:"minecraft:piston",Properties:{extended:true}},Time:-1000,NoGravity:1b}

but it wasn't the type of piston that I want to summon.

Here is what I am looking for Here is what I am looking for

1

There are 1 best solutions below

0
Elikill58 On

You have to use "true" instead of true

This is the command to do it:

summon falling_block ~ ~ ~ {BlockState:{Name:"minecraft:piston",Properties:{extended:"true"}},Time:-1000,NoGravity:1b}

(tested in 1.17, find by Ofek)