0

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

SuperStormer
  • 4,997
  • 5
  • 25
  • 35
WNG
  • 1
  • 2
  • 2
    I think it's off-topic and should be on [Arqade](https://gaming.stackexchange.com/) – Elikill58 Oct 03 '21 at 12:45
  • 1
    its off topic, but the answer is to write `"true"` instead of `true`: `summon falling_block ~ ~ ~ {BlockState:{Name:"minecraft:piston",Properties:{extended:"true"}},Time:-1000,NoGravity:1b}` – Ofek Oct 05 '21 at 00:52

1 Answers1

0

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)

Elikill58
  • 4,050
  • 24
  • 23
  • 45