Tile entity swap

Поделиться
HTML-код
  • Опубликовано: 29 окт 2024

Комментарии • 58

  • @CommandLeo
    @CommandLeo 3 года назад +44

    Comparators are tile entities because they store their power level in NBT data. However in reality it's not necessary (except for the fact that it would remove overloaded comparators and break contraptions that have observers observing comparators), as shown in MC-164011.

    • @punchster289
      @punchster289 3 года назад +9

      Considering the alternative is having 32 block states i think it makes sense

    • @appelnonsurtaxe
      @appelnonsurtaxe Год назад +3

      @@punchster289 I'm late to the party but it would be 128 actually, there are 4 orientations too
      4 orientations * 2 operation modes * 16 power levels

  • @punchster289
    @punchster289 3 года назад +57

    Its unfortunate there are very few cases that let you merge interesting properties of one block with another tile entity. 99% of the time you just get a broken block lol.
    Hopper or beacon storage is interesting bc its the only way to get a full chest storage in a transparent block with a top surface, might be useful for storage tech. Banner storage is nice bc its invisible and chest models cause fps lag. But both are limited bc they can't be merged as a double chest.

    • @Alpha-Testing
      @Alpha-Testing 2 года назад +6

      Just came over from your channel after watching the cactus storage thing. Just stealing all my ideas before I have a chance to have them.
      Fucking Legend.

    • @Webmage101
      @Webmage101 2 года назад

      Why'd you pause the game

  • @FungIsSquish
    @FungIsSquish 3 года назад +20

    The way he says “bee nest” 💀

  • @ws8396
    @ws8396 2 года назад +28

    This could be useful in anarchy. You could store stuff in a chest and then change it to a different block, and xray and chestesp wouldnt detect it

    • @oricalu448
      @oricalu448 2 года назад +34

      If you can get an update supressor working on any anarchy server, be my guest.

    • @nfqs
      @nfqs 2 года назад +1

      you cant make floating comparators in anarchy

    • @ganondalf8090
      @ganondalf8090 2 года назад +2

      @@nfqs there are some servers with special tools, some of them are mining related, and some are poorly coded and dont send out block updates. I play on such a server, i tried this but it must have been patched in 1.19. I didnt put the activator rails down though, i dont see what function they would have in this setup, but who knows maybe that's my problem.

  • @observr-1
    @observr-1 3 года назад +15

    actually that portal setup is made by Savva and i forgor to credit him

  • @mantacid1221
    @mantacid1221 Год назад +2

    Finally, we can now replicate that one bedrock bug that allowed you to put honey back in beehives!

  • @an-yr7gk
    @an-yr7gk 3 года назад +11

    rip cactus storage

    • @hackerreport4975
      @hackerreport4975 3 года назад +6

      You can still use it by inputting items in water streams. Just not hoppers :(

    • @vibaj16
      @vibaj16 3 года назад +2

      @@hackerreport4975 ?

    • @hackerreport4975
      @hackerreport4975 3 года назад +3

      @@vibaj16 Im not even sure what I meant

    • @ZÏ̇̃
      @ZÏ̇̃ 2 года назад +6

      @@vibaj16 one way storage

  • @bluecrab2
    @bluecrab2 3 года назад +8

    Incredible discovery!! :D

  • @martinshoosterman
    @martinshoosterman Год назад +2

    Doing this with a command block would be cool, as that would give you an indestructible chest.
    Also doing this with hoppers swapped into a spawnable block would be pretty useful for mob farms. Ignoring how stupid that would be.

    • @widmo206
      @widmo206 Год назад +2

      I think picking up items by a hopper is part of the block, not the tile entity. Haven't tested it tho, so I could be wrong

  • @binathiessen4920
    @binathiessen4920 2 года назад +5

    So, could you have a bed with doublechest NBT data?

    • @JKM115
      @JKM115  2 года назад +3

      Huh, yeah I guess

  • @TwinShards
    @TwinShards 2 года назад +5

    _Make a chest enchant-table/anvil_ = Obsidian chest :)

  • @mirelamiljak6906
    @mirelamiljak6906 2 года назад +2

    Bed storage in the nether

  • @porktuga1232
    @porktuga1232 3 года назад +3

    Cool find

  • @thecwd8919
    @thecwd8919 2 года назад +2

    How does this interact with nbt data from command blocks?

  • @theuseraccountname
    @theuseraccountname 3 года назад +1

    Invisible storage! Nice.

  • @ELCEKAID
    @ELCEKAID 2 года назад +3

    10:15
    literally, ender chest

  • @nou5440
    @nou5440 2 года назад +1

    this has the most quiet audio ever

  • @qcom1008
    @qcom1008 3 года назад +7

    is there a way to open the chest gui in survival mode?

    • @JKM115
      @JKM115  3 года назад +6

      In survival? No

    • @vibaj16
      @vibaj16 3 года назад

      @@JKM115 I can't open it in spectator either...

    • @vibaj16
      @vibaj16 3 года назад +1

      nevermind, it just doesn't work wiht comparators. Also, the banner becomes visible when I relog

  • @сергейморозов-у8ь
    @сергейморозов-у8ь 3 года назад +1

    Savva one love

  • @wChris_
    @wChris_ 2 года назад +1

    Wait is there a bug report for the brewing stand not sending blockupdates?

  • @appelnonsurtaxe
    @appelnonsurtaxe Год назад +2

    How is it possible that you open the chest GUI? Having done modding, I have a basic understanding of how block entities work, and the click (or should I say "use") event is dispatched to the Block class, not the BlockEntity class. So when you right click, say, a skull, it should call the "onUse" method of SkullBlock (which is probably not even overridden) and would never try to open a GUI whatsoever...
    Or does minecraft short-circuit click event when there's a block entity present and trusts it for the block type? That doesn't sound right though...

    • @JKM115
      @JKM115  Год назад +3

      I'd assume that spectator interactions call different methods, because otherwise if you tried to interact with a regular barrel in spectator, it would change it's blockstate to opened, which would be unwanted.

    • @appelnonsurtaxe
      @appelnonsurtaxe Год назад +1

      @@JKM115 that makes a lot of sense, I didn't even pay attention to the spectator mode. Thanks for the quick reply!

  • @FrogsAreGods
    @FrogsAreGods 2 года назад +1

    can somebody test if you can break blocks in survival while your head is in the end gateway i need to know for prison comunity reasons

  • @BOD1B1LDER
    @BOD1B1LDER 2 года назад +1

    Подскажите пожалуйста, это можно без команнды в выживание делать?

    • @deletechannel3776
      @deletechannel3776 2 года назад

      Если я правильно понял то всё, что нужно чтобы это провернуть это update supressor, а они вполне себе спокойно строятся в выживании...так-что ответ скорее всего да

  • @Prod_by_proto
    @Prod_by_proto 2 года назад +2

    Jkm, I think you have all the tools you need to run commands in survival. Let me know if I'm wrong

  • @James-kk3nm
    @James-kk3nm 5 дней назад

    James please do an updated block event delay vid!

  • @telotawa
    @telotawa Год назад

    does the comparator chest still work as a comparator?

  • @toxic_lp5443
    @toxic_lp5443 2 года назад +1

    Can you do world download or smth i did exacltly the sam and it doesnt work

    • @vinicus508
      @vinicus508 2 года назад +1

      You need an update supressor

  • @HelPfeffer
    @HelPfeffer Год назад

    8:50
    But, can you open it?
    With the hand

  • @flanbi9943
    @flanbi9943 2 года назад

    I dont get the floating comparator part of this tutorial, how do you get it to stay like this?

    • @mantacid1221
      @mantacid1221 Год назад

      It’s a ghost block. It’s not actually there. It gets updated while in an illegal state and pops off serverside only.

    • @flanbi9943
      @flanbi9943 Год назад

      @@mantacid1221 so its not replicable when you arent on a server?

    • @mantacid1221
      @mantacid1221 Год назад

      @@flanbi9943 i think it is replicable.

  • @whitestonejazz
    @whitestonejazz 2 года назад

    cool

  • @hmmlol6502
    @hmmlol6502 2 года назад

    How do you get floating comparator

    • @JKM115
      @JKM115  2 года назад +2

      Either by placing it on top of a trapdoor and opening it, or you update suppress removal of the block below the comparator

  • @ppeez
    @ppeez Год назад

    Benis??