What Does An Observer ACTUALLY See?

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

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

  • @yowza234
    @yowza234 Год назад +519

    I genuinely enjoy the imagery of an observer getting so briefly excited it momentarily shits itself energy for a tick and immediately regains stoic composure

  • @Mr.Carrot
    @Mr.Carrot Год назад +777

    At this point, a list of what the observers *can't* detect would be more useful

    • @TrialBySquire
      @TrialBySquire Год назад +59

      Minecarts passing by, unfortunately

    • @mohitonon-alco4287
      @mohitonon-alco4287 Год назад

      ​@@TrialBySquirethey aren't block updates, and you have detector rails for that purposr

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

      ​@@TrialBySquireno f*cking way

    • @ConcavePgons
      @ConcavePgons Год назад +28

      Bedrock Edition observers detect much less than Java.

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

      ​@@TrialBySquireit can if you use a detector rail

  • @WhoosferPlus
    @WhoosferPlus Год назад +313

    "when it grows" my fav line of this video

  • @xecron9116
    @xecron9116 Год назад +100

    For those wondering what condition the observer checks, it typically reads the *blockstate* in front of it. A blockstate is a variable containing data on the block at that XYZ position which is used to change how certain blocks behave, how they look, and (you guessed it) to detect changes at a point. When the block in front of an observer is removed, placed, or updated through some behavior or player interaction. The data in the blockstate is changed, which is detected by the observer resulting in it sending a signal behind it.
    Also, the data within the observer's blockstate is changed when it detects something, which is why you can chain observers.

    • @Uranium-jj7le
      @Uranium-jj7le Год назад +1

      >Observer checks changes in blockstates
      Observer when observing a change, changes its blockstate
      Thank you random mojang dev

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

      ​@@Uranium-jj7leI think that goes back as far as introducing blockstates, there's no way it COULD give a pulse without it unless it just...didn't have blockstates...which is impossible

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

      @@GeeBeeOhThree is correct here. "Powered" is considered a block state property, and it's this property that a lot of redstone blocks check for...redstone power (along with another property for signal strength, for those blocks that use it). All rails use the same state properties, too (the non-cornering being a restricted subset). Crop ages are similar, though there are like six variants (based on the max age value).
      Gravity blocks falling is--likewise--due to the block turning into an entity (just like TNT). As far as the observer is concerned, the block ceased to exist, just as if it was destroyed.
      The campfire cooking items being placed and removed *isn't* a blockstate change, even though it involves a visual update. Because there are many kinds of cookable food (and mods can add them), that information isn't encoded in the blockstate (the list of valid states cannot be altered), but rather in the block entity itself as inventory. Those inventory items are then specially rendered by the entity renderer (which basically delegates back to the item renderer, with some transformations so it appears in the desired location and rotation).
      Chest opening/closing is handled even more differently, though I forget exactly how it works. Some data is stored in the block entity, but its animation state is separate from that iirc. Comparators and the trapped chest outputting a redstone signal is bespoke logic.

  • @caspermadlener4191
    @caspermadlener4191 Год назад +67

    1. Redstone ore doesn't power when you place a block against it, only when you right or left click it. This is noticeable when you shift-click a block against it.
    2. You forgot the dragon egg.
    3. Pistons heads aren't oberved when trying to retract slime over pull limit.
    4. When you clip the end of some plants, it is detected.

    • @jazziiRed
      @jazziiRed  Год назад +18

      If you're referring to the dragon egg teleporting, then yes I did overlook that. Also, I did not know that about piston heads, thanks!

    • @Endless-fire
      @Endless-fire Год назад

      @@jazziiRed they are refering to how in Java Edition, certain plants stop growing if shears are used on the tip.

  • @mooing_cowmilk
    @mooing_cowmilk Год назад +81

    One major thing observers can't detect is rapid changes, which breaks most age based farms, or fast tick block streams. Other items it can't detect is the creation of the nether portal block (lighting a nether portal), change text color of signs, left clicking a note box (in survival plays it but not detect).

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

      Changing the color of a sign is probably because you're not changing the block itself, but rather it's tile entity, which I guess doesn't create a block update

  • @broski7792
    @broski7792 Год назад +199

    My two favourite are string when an entity enters or leaves it's hitbox, and note blocks when you change the instrument underneath.
    I used the string one to make an automatic water dispenser for the riptide enchantment. When you stand in it, it dispenses water at your feet so you can riptide, and then when you leave, it triggers the dispenser again, getting rid of the water.
    I've never really used the note block one, but it's a neat mechanic which can help you distinguish between blocks in some scenarios, like a block stream.
    Edit: |-_-|

    • @jazziiRed
      @jazziiRed  Год назад +26

      That's a nice little contraption. I like it! |-_-|

    • @u12bdragon
      @u12bdragon Год назад +12

      Observers are more like [-.-_-.-] i think

    • @olegmoki
      @olegmoki Год назад +10

      |т_т|

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

      Heard of pressure plates?

    • @duckified.
      @duckified. Год назад +4

      @@F17A pressure plates have to be placed on full blocks, string is more versatile

  • @FarTheGoober
    @FarTheGoober Год назад +35

    Genuinely couldn’t believe how small this channel was. Video quality is amazing and it’s clear you put a lot of time and effort into this video!! I’ll be glad to be along the ride do you getting famous because this deserves more recognition!

  • @Juni_Dingo
    @Juni_Dingo Год назад +353

    Such a criminally underrated channel, you deserve so much more attention |-_-|

  • @Kokonutzlz
    @Kokonutzlz Год назад +100

    9:17 it should also detect when the sponge evaporates :) It's not just a furnace recipe, it happens automatically in the Nether.
    The string thing is really cool, as you don't need a more visible tripwire hook setup to activate it getting walked on. The hard part is now to hide the observer 🤔

    • @jazziiRed
      @jazziiRed  Год назад +53

      I thought about adding that, but it happens so instantly that the observer doesn't have a chance to detect it. It's still on cool down from detecting you placing it.

    • @Nulono
      @Nulono Год назад +6

      @@jazziiRed Could that and the cactus limitation be bypassed by commands?

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

      probably

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

      @@Nulono I think as long as the cactus is not updated. But it should destroy itself when its updated.

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

      @@jazziiRed iirc, sponges dry out slowly in deserts, badlands, and maybe savannas too
      Edit: missed the Bedrock only disclaimer on the wiki

  • @hw2007
    @hw2007 Год назад +9

    6:05 "Just play around with it, it gets excited easily" I caught that ;)

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

      Basically a redstone ore block is just an observer extension right? It observes more than an observer

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

      @@GingerMoony Never thought of it that way, but I guess so yes!

    • @duckified.
      @duckified. Год назад +1

      @@GingerMoony nope, only entities

  • @c0smicsands
    @c0smicsands Год назад +6

    Disclaimer: It cannot see your pain

  • @beefox__
    @beefox__ Год назад +9

    a common denominator for most of these are blocks and block states, anything that changes a block state (stair shape), or the block entirely (dirt turning to grass), there are some exceptions to this rule

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

      I thought this was the only rule, what are the exceptions?
      (also blocks changing entirely count as block state changes internally)

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

      ​​@@noxmore There aren't any exceptions as far as I know, the Observer activates whenever the block in front of it changes state. (Whenever its updateShape() method is called by a block changing in front of it)

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

      @@hyper_lynx yeah that's what i thought as well

  • @mimixte
    @mimixte Год назад +26

    I already knew what the observer is used for but I must admit that some of these where new to me (like the scaffolding or the leaves), thank you for this amazing lesson professor |-_-|

    • @jazziiRed
      @jazziiRed  Год назад +7

      You're very welcome |-_-|

  • @kirisummer
    @kirisummer Год назад +52

    I would categorize updates a bit differently, since lots of interactions could be described as "replacing an observed block", like when blocks are turned into moss or (cobble)stone from lava and water interactions, "changing amount" for turtle eggs, sea pickles or candles, or being more concise with grouping all "growable" blocks (crops, trees, bamboo, etc) into one category, but it's a good video nonetheless C:

    • @jazziiRed
      @jazziiRed  Год назад +21

      For sure, that's what's going on behind the scenes with a lot of these. But I wanted to present it in a way that's easiest to understand for most people. Plus, the effect is the same whether you think of a sapling being replaced by a log or it growing. Totally understand where you're coming from tho.

    • @hyper_lynx
      @hyper_lynx Год назад +9

      Behind the scenes, I'm almost certain all of these are the BlockState changing. Each of these blocks have multiple possible states they can occupy (for example, a slab block can be lower half, top half, and a double slab).
      Interestingly, changing a block to an entirely different block and just changing its state are internally very similar, and in both cases the function that Observers listen for is called.
      If you want to play around with this, you can try using the Debug Stick to manually alter the state of any block and see the combinations for yourself.

  • @TheHighWizardCat
    @TheHighWizardCat Год назад +4

    ok but the vertical walls, leaves and scaffolding ones are EXTREMELY interesting, i could defo see some potential for those

    • @Endless-fire
      @Endless-fire Год назад

      leafstone and scaffolding is useful for compact vertical/twisted lines and walls and powered rails are useful for instant transmission.

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

    Nobody:
    Almost every Natural Block: When it grows.
    Coral: When it dries up and dies.

  • @lordmarum
    @lordmarum Год назад +17

    Very clear and fun to watch. Great videos!

  • @EquaTechnologies
    @EquaTechnologies Год назад +9

    The observers can activate also when leaves are "charged" by wood. Nice video too!

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

    Observers can observe "block state changes" so any block that you can directly interact with or natural game state changes.

  • @steelspyder474
    @steelspyder474 Год назад +5

    You're gonna be huge someday!
    Awesome Job dude... I love everything about this video

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

    Very informative video. The title puts me in mind of a passage from Philip k. Dick's "A Scanner Darkly".
    "What does a scanner see? he asked himself. I mean, really see? Into the head? Down into the heart? Does a passive infrared scanner like they used to use or a cube-type holo-scanner like they use these days, the latest thing, see into me - into us - clearly or darkly? I hope it does, he thought, see clearly, because I can't any longer these days see into myself."

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

    my theory about the shulker box activating twice is that it is activated once for the actual opening / closing function and once for the visual changing of the block

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

      I think really the box is updating its shape over and over (think of what happens if you stand on one as it is opening) and the observer pulses slowly enough that it happens to only go off twice

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

    Beds:
    An observer will notice when a bed is occupied or not. It sends an output when a player, a villager, or a villager child sleeps, and when they get out of bed. It will not trigger if the child jumps on the bed, nor if a cat sleeps on it.

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

    for those wondering, the music at 4:20 is Mozart symphony number 38 in d major and I believe the 3rd movement

  • @wChris_
    @wChris_ Год назад +6

    Its actually pretty simple. |-_-| detect block state changes, i.e. if you open F3 the things at the lower right when looking at blocks. Block state changes also include blocks changing outright, like converting grass to dirt, because they are 2 distinct blocks.

  • @Creepslime
    @Creepslime Год назад +13

    I have no plans of concocting complicated redstone contraptions myself, but the knowledge of the extent of what the |-_-| can do ought to be somewhat useful 👍

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

    90.3% done on your way to 10k, well deserved.

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

    Thank you, I've been struggling to understand how flying machines work for the longest time. I didn't know observers could detect themselves moving. 👍

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

    With banner placement, I think the most sane explanation is that the observer "sees" the airblock changing state, such as "placing stuff on the wall" and "placing stuff on the ground".

  • @Draugo
    @Draugo 10 месяцев назад

    Observer is like a proud parent, it gets excited when you grow.

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

    Damn I hope this guy catches on big time. What a quality channel

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

    Etho pointed out another thing that causes observers to fire: fire blocks. In episode 582 of his letsplay around the 14:16 mark, he shows that a newly lit fire causes observers to randomly fire for a couple minutes or so.

  • @SETHthegodofchaos
    @SETHthegodofchaos Год назад +5

    Shower Thought: Does the Observer actually observe or is it subscribing and being notified? 🤔

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

      I would presume it would make more sense for every block to be a subject and notify any observers next to it. So observer pattern for sure. That's probably why it was named as such honestly.

  • @JP913.
    @JP913. Год назад

    you are about to hit 10k , im part of the subbed before 10k club.
    also well done for getting this far on yt!

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

    Observer detects when you drop a like, when you leave a comment, when you start watching this video, when you return to this video

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

    I don't see it as judgemental. I see it as extremely focused and determined.

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

    The observer gets very excited when it sees the wood logs stripping.

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

    I just noticed, the observer looks like it’s doing what in Switzerland is known as the Swiss glare, if you see someone do something weird you stare at them like that, and everyone here does it.

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

    Basically the observer can detect whenever a block changes one of its properties
    For example, scaffolding has a property called "distance", when you change its value, observer detects that; wall changes its shape, observer detects that as well; note block changes its instruments by placing a block below, observer also detects that.

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

    "Disclaimer, it cannot see your pain" even with context is such an incredibly funny line (8:33)

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

    basically, what it's detecting is a change in *block state*. this includes almost anything that changes the appearance of a block, and a few other things. if you can see it change in the "targeted blocK' segment of the f3 menu, the observer can see it too.

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

      Yes, that is a great way to summarize it.

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

      I think there might be a few extra things the observer can detect that don’t have an associated block state but I could be wrong
      But it’s kinda funny that this whole video can be summarised as ‘when it changes block state’
      Still a great watch though

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

      @@OvercastWarmth i don't think so, but we're curious if you know any counterexamples? everything in the video is a block state change (this includes changing what the block even is)

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

      ​@@SunroseStudios Shulker Boxes.

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

    Just found your channel and am already in love. XD

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

    Scaffolding and leaves were the most interesting to me, the rest were fairly straight forward since it's just BUD

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

      I did know about string earlier, it's still super interesting to make a silent pressure plate, but since I already knew about it I didn't mention it

  • @a.j.outlaster1222
    @a.j.outlaster1222 Год назад +1

    "There's. Nothing in front of you."
    "So?"

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

    I love the thumbnail so much lol

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

    Basically everything that causes a block update. This can be the block completely changing to a different one, like when stripping a log, or when its NBT data changes, like fences changing their state or saplings changing their growth state. Everything in this video falls under those two rules. So it would be a lot more interesting to point out any exceptions to those two rules (if there are any).

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

      Block state changes are not actually the same as block updates, they refer to slightly different things. Also, when you said NBT, you were talking about block properties changing. NBT is not detected.
      Also, Shulker Boxes don't fit.

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

    The way of editing this has needs more viewers here seriously

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

    Already knew all of these cases, but still enjoyed watching the video. Your voice is nice and comforting :)
    #whenitgrows

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

    6:45 that might be useful for explaining why packing wood too close and leaving logs uncut might cause tree farm not work for noobs

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

    Does it detect when you clip a plant with shears? Like when you click on the end of a weeping vine to make it stop growing?

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

      I just checked, and it does. Good catch! You're the first to accurately find something I missed :D

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

    That intro was amazing!

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

    That propagating pattern with the scaffolding blocks could be very useful!

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

    I think it would have been a lot easier to say what the observer can't see

  • @VenThusiaist
    @VenThusiaist 4 месяца назад

    Basically, it detects any changes to BlockState (e.g., Waterlogging, Signal Strength, Collision, Texture; including completely changing the block) but ignores changes to TileState (e.g., Chest Opening).
    Comparators do the opposite. Instead of BlockState, it's TileState and vice versa, and instead of state change, it's the current state.
    Some BlockStates also change alongside TileState, so you may get special cases too.
    Also, you missed Sponge-Drying (Nether [Java and Bedrock] and Desert [Bedrock]).

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

    I have one small correction! When you break string attached to a tripwire hook, if you use Shears, it doesn't produce a Redstone signal. Therfore, in that case, the observer would only detect one update, not two

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

    Basically, any non-continuous block flag changing state or value including the block type. Things that can be found cleanly listed in the F3 menu.

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

    this video is only 18 minutes long and yet it felt longer than a lot of 2 hour long videos i have watched

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

    Thank you so much for this, fantastically edited & presented. Makes me happy that the Minecraft redstone tutorial community is still going strong.

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

    This is such a great minecraft channel!

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

    Your channel is soo cool, i wonder when it *will grow*

  • @krisiverse
    @krisiverse Год назад +4

    That's awesome! It really helped clear up for me what exactly am observer does... Now I just need one for comparators 😆
    the block update pattern for the scaffolding is super interesting and pretty, I might wanna try making something with it...
    Also, here's your observer: [ō_ō]

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

      Oh wow that's an even better observer face [ō_ō]

  • @K.H.A.Y.A.L.I
    @K.H.A.Y.A.L.I Год назад

    In bedrock edition observed cannot detect
    1. Redstone dust shape changes.
    2. Leaves when logs are removed or placed next to them.
    3. Note block when powered or depowered.
    4. Note block when block changes beneath it.
    5. When a plant grows without changes it shape naturally.(Gets detected with bonemeal)
    Well there were 100 of different things that observer couldn't detect before 1.18 but got fixed after the update.

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

    i really love your videos!!! i didn't understand nothing about observers before watching this, but now i will make a watermelon farm!! xD

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

    I learned stuff that are off-topic. Such as lighting off the candles, scaffolding changing texture when it has no support, etc.

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

    Good video, can't wait for when it grows.

  • @vii-ka
    @vii-ka Год назад +1

    Alternative title: List of block tick updates

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

    I wonder if this video will inspire some interesting lock mechanisms
    An adventure map all about the Observer's birthday

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

    I think I had something important to do, but I think there's nothing more important than watching this video.

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

    The chest etc. probably don't trigger the observer because they are "tile entities", so technically not blocks. Although that would mean that shulker boxes shouldn't trigger them either, sooo…

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

    6:18 I completely forgot about this mechanic and it's just what I need (I think) for something I'm making!

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

    I have thought of an amazing redstone invention. An observer in front of a tnt and when it ignites, the signal goes to a dispenser to cover the area with water so the tnt doesn't damage anything. The signal is doubled and delayed so the water can get rescooped. I'm going to patent this.

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

    The "when it grows" saga has changed me.

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

    I must say This Video is Amazing, but The Thumbnail is *Legendary*

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

    Crazy list. A simple "all block Updates" would probably be the quicker answer though 😂

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

    Nearly very block can be powered and unpowered and it can detect that, what you seeing with the bell is it being powered and then unpowered by the button, thats why it doesnt detect you hitting it manually. Thats also whats happening with the target block, its not detecting getting hit, its detecting being turned on, which happens to be when it gets hit.
    Also when the falling blocks fall, its not detecting them landing or falling, its detecting the bock in front of them changing to and from air respectively

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

    “It was so boring I couldn’t stop watching”

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

    for sponges... In case you put a wet sponge in the nether in front of an observer, will it send two signals? One for putting the block and another for it drying out

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

    Honestly this just makes me want to make a lot of random interactions trigger a ding, imagine a little ping every time you turn a page in a lectern book lmao

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

    I was expecting you to go into the source code of the observer and literally tell us what it actually sees, but awesome video dude!

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

    Simple explanation for natural blocks: When something updates in front of it

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

    14:26 what are you doing, step-observer?

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

    So in other words, the block meant to detect block updates, detects block updates. Neat. good video though

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

      It actually doesn't detect block updates. It detects block state changes. There is a difference. The wiki will help.

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

    I unironically liked subscribed and hit the bell

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

      Thanks and welcome aboard!

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

    For everyone saying oh so it just detects block updates.
    No.
    It actually doesn't detect block updates. It detects block state changes/the block being placed/removed. There is a difference.
    From the wiki:
    "Because observers in Java Edition detect changes in the block state, and not block updates, they can detect a wider range of phenomena than a block update detector (BUD) circuit in Bedrock Edition can detect (as some block state changes don't cause block updates). Observers in Bedrock Edition do detect block updates but not block state changes, and so they detect the exact same things that any other BUD would detect in that edition. "

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

    17:14 It took me SO long to get that joke but I love it!

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

      I dont get it 😢

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

    this is what i watch when i'm bored af and youtube has nothin to offer

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

    0:28 hey, that’s Dankpods „headphone comparison“ song!
    I know it’s just from the RUclips creator library, but I can’t not think about the Huh-duh Six-hungeos

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

    9:16 it also notices when the wet sponge dries up in the nether (too quick to matter), or in the savanna and desert on bedrock edition

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

    Can't you make an observer detect the growth of a cactus by placing the observer above the cactus facing its top face, but with an air block between the top of the cactus and the observer? That way the cactus will grow and then instantly break, which will be detected

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

    Observers detect when the block type or block state changes, but not when the block’s NBT data changes.
    Rule: If you see the change on the right side of the F3 screen, the observer sees it too.

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

    11:52 this seems like a bug. it doesn't make sense that it can detect barrels opening/closing but not for chests which literally have moving parts

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

      btw, i actually did not know about the mushroom block one. pretty cool

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

      Well, by what the Observer is, it's actually completely consistent, though unintuitive. The reason is that Chests do not use a block state for the opening animation, but Barrels do use a block state for the open texture. Observers specifically detect block state changes so they only detect Barrels opening.

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

    i freaking love your videos

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

    some of these (like when cobblestone is generated) are because it's a different block being 'placed' in front of the observer. also, the bell one is because of the redstone signal change and not the act of the bell ringing.

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

      also, the one with the log and the leaves is really useful for a bamboo farm, because you can use observers to detect when a bamboo grows tall enough, and use a piston to push a log down onto some leaves, triggering more observers under the leaves to activate a row of target blocks that relay the signal to another row of pistons, knocking down the grown bamboo. super easy to build. oh, and the collection can be a minecart hopper going back and forth underneath and depositing it all to a chest. the target blocks also double as a way to shut down the farm if need be.

  • @lukejbonner
    @lukejbonner 2 месяца назад

    Great video! Thank you

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

    Technically you missed one with cactus albeit it falls under the same category as the sponge in nether, it can detect when it grows if placed above where the next piece of cactus will grow up to, and I presume though I’m not 100% sure that if you place it next to that same block that it will also detect it growing but will either overlap or double ping with the block breaking

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

    take a shot everytime he says "when it grows"

  • @06racing
    @06racing Год назад

    Most of these could be combined into 2 categories.
    Block ID change, Redstone power change

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

    9:17 probably doesn't matter but when it dries in hot biomes and the nether, it detects it

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

    missed title opportunity: "What does an Observer ACTUALLY Observe"