We've split up the commands, scripting and mods, and add ons category! Please be sure you get your thread in the right place.

6

Ctrl+Mouse Scoll Click gives +NBT tag to redstone repeaters/ect...

1 Comments

Please sign in to leave a comment.

Sorted by oldest
  • 2
    Registered User commented
    Comment actions Permalink

    Redstone repeaters don't save their tick number in NBT data, they save it in their block state. And ctrl + middle clicking should not copy block state, in my opinion, because that would mean that the repeater item would place repeaters in the same orientation, all the time (because repeaters also save their orientation in their block state).

    A quick solution to your repeater problem could be the BlockStateTag tag. The command below (works in 1.14+ only) would give you a repeater that is already on 4 ticks when you place it.

    /give @s repeater{BlockStateTag:{delay:4}}

    (I haven't actually tested this command yet so if it doesn't work, maybe the one below will)

    /give @s repeater{BlockStateTag:{delay:"4"}}