Java Edition 26.1

Da Minecraft Wiki.
Vai alla navigazione Vai alla ricerca
Image
La traduzione di questo articolo è in corso
 
Questo articolo sta venendo tradotto da un altro utente
Se questo avviso è presente da 1 settimana o più e la traduzione non sta venendo effettuata, sei automaticamente autorizzatə a proseguire.
Image
Questo articolo è da aggiornare.
 
Description: Informazioni da 26.1 Snapshot 2 in poi
Minecraft 26.1
26.1 banner.jpg: Infobox image for Minecraft 26.1 the versione in Minecraft
Java Edition 26.1.png: Infobox image for Minecraft 26.1 the versione in Minecraft
Edizione

Java Edition

Nome ufficiale

Tiny Takeover

Data di rilascio

24 marzo 2026

Download

Client (.json)
Server

Versione di protocollo

Pending

Versione dati

Pending

Formato pacchetto di risorse

Pending

Formato pacchetto di dati

Pending

Versione Java minima

Sconosciuta

C'è una guida per questo aggiornamento!
 
Vedi Guide per la Java Edition/First Drop 2026 per una guida a tutte le nuove funzioni introdotte in First Drop 2026.

26.1, il rilascio di Tiny Takeover, è un rilascio che aggiunge nuove texture e modelli per i cuccioli, rende le targhette fabbricabili, e corregge alcuni bug.

Questa è la prima versione di rilascio della Java Edition ad usare il nuovo formato delle versioni "anno.drop.hotfix" annunciato nel dicembre 2025.[1] È anche la prima versione di rilascio della Java Edition ad essere completamente non offuscata senza avere anche una variante offuscata,[2][3] e la prima a richiedere Java 25.

Formato dei comandi

[modifica | modifica sorgente]

/swing

  • Nuovo comando che attiva l'oscillazione delle braccia delle entità.
  • Non tutte le entità supportano l'animazione di oscillazione. /swing funzionerà con successo su quelle entità, ma i client visualizzeranno l'animazione solo quando possibile.
    • Per esempio, questo rende possibile l'oscillazione delle braccia del manichino.
  • Restituisce il numero di entità a cui è stato inviato uno swing.
    • Sintassi: /swing <entity selector> <mainhand|offhand>

Formato dei componenti di dati

  • Aggiunto minecraft:additional_trade_cost
    • Transient component used to modify count needed of the wants item in a villager trade, is removed after a trade has been generated
    • Formato: integer

Data-driven villager trades

  • Trades offered by villagers and wandering traders are now data-driven and can be customized by datapack developers.
    • Villager Trades
      • Present in the villager_trade folder, represents a blueprint for trades which is used by villagers and wandering traders to generate actual trades.
      • Entry Format:
        • wants, an object representing an item type and number of them needed to trade.
          • id, the id of the item
          • count, an optional number provider representing how many of the item is needed for the trade.
            • Defaults to a constant 1
          • components, an optional component map representing the expected data components on the item.
            • Defaults to an empty map.
        • additional_wants, an optional object representing an additional item required by the merchant, has the same format as wants.
        • gives, an item Stack representing the resulting item given by the merchant when trading.
          • Uses the existing format for item stacks.
        • given_item_modifiers, a optional list of item Modifiers representing modifiers to apply to the item in gives such as enchantments or potions, used to add dynamism to the trade rather than hardcoding certain values.
          • Uses the existing format for item modifiers (also known as loot modifiers, item functions, loot functions...).
          • If any of these returns an empty item the entire trade will be discarded.
          • Item Modifier references are not supported.
          • If the final item has a stored_enchantment component containing an enchantment in the #double_trade_price tag, then the count of wants is doubled.
        • max_uses, an optional number provider representing the maximum number of times a trade may be used.
          • Is set to 1 if the number provider returns a lower value.
          • Defaults to 4
        • reputation_discount, an number provider representing how much factors such as demand, discounts or penalties affects the cost represented by wants.
          • Is set to 0.0 if the number provider returns a lower value.
          • Defaults to 0.0
        • xp, an optional number provider representing the amount of xp a merchant gets when the trade is done.
          • Is set to 0 if the number provider returns a lower value.
          • Defaults to 1
        • merchant_predicate, a predicate representing conditions on the merchant that need to be met for the trade to be offered.
          • Uses the existing format for predicates.
          • Predicate references are not supported.
        • double_trade_price_enchantments, an optional enchantment id, list of namespaced enchantment IDs, or hash-prefixed enchantment tag representing enchantments that will double the additional cost from minecraft:enchant_randomly and minecraft:enchant_with_levels if they have include_additional_cost_component set to true and if the item has one of the provided values in its minecraft:stored_enchantments component.
    • An example trade of an emerald and a book for an enchanted book offered only by desert villagers.
{
  "additional_wants": {
    "id": "minecraft:book"
  },
  "double_trade_price_enchantments": "#minecraft:double_trade_price",
  "given_item_modifiers": [
    {
      "function": "minecraft:enchant_randomly",
      "include_additional_cost_component": true,
      "only_compatible": false,
      "options": "#minecraft:trades/desert_common"
    },
    {
      "function": "minecraft:filtered",
      "item_filter": {
        "items": "minecraft:enchanted_book",
        "predicates": {
          "minecraft:stored_enchantments": [
            {}
          ]
        }
      },
      "on_fail": {
        "function": "minecraft:discard"
      }
    }
  ],
  "gives": {
    "count": 1,
    "id": "minecraft:enchanted_book"
  },
  "max_uses": 12.0,
  "merchant_predicate": {
    "condition": "minecraft:entity_properties",
    "entity": "this",
    "predicate": {
      "predicates": {
        "minecraft:villager/variant": "minecraft:desert"
      }
    }
  },
  "reputation_discount": 0.2,
  "wants": {
    "id": "minecraft:emerald"
  }
}

Environment attributes

  • minecraft:visual/block_light_tint
    • Tint of the block light. Block light color start as dark grey at low light levels, becomes tinted by this attribute at medium levels and turns white at high levels. By default, it provides the yellowish tint of torches. Bright colors work best for this attribute, with at least one color component being fully bright. The tint applies globally to all light sources visible on the screen. Individual lights can not be tinted differently.
    • Value type: RGB color
    • Default value:
       #FFD88C
    • Modifiers: RGB Color Modifiers
    • Interpolated: yes
    • Resolved at the camera's position
  • minecraft:visual/ambient_light_color
    • Defines both the ambient light tint and brightness. This light is applied to the world at 0 light level. Block and sky light are added on top of it.
    • Value type: RGB color
    • Default value:
       #000000.
    • Modifiers: RGB Color Modifiers
    • Interpolated: yes
    • Resolved at the camera's position.
    • Set to
       #0A0A0A in the Overworld,
       #302821 in the Nether, and
       #3f473f in the End.
  • minecraft:visual/night_vision_color
    • This color is used similarly to ambient light color. When the Night Vision effect is active, per-component maximum of minecraft:visual/night_vision_color and minecraft:visual/ambient_light_color is used as ambient color. Night Vision is not tinted by default.
    • Value type: RGB color
    • Default value:
       #999999
    • Modifiers: RGB Color Modifiers
    • Interpolated: yes
    • Resolved at the camera's position

Lightmap debug renderer

  • A new debug renderer for the lightmap was added, which can be enabled using the F3 + 4 keybind.
  • It is mutually exclusive with FPS/TPS and networking charts.
  • It shows the lightmap texture in real-time in the bottom right corner of the screen.
  • The vertical axis of the texture represent sky light levels (0-15 from bottom to top).
  • The horizontal axis of the texture represent block light levels (0-15 from left to right).
  • The color of each pixel represents the resulting color that will be applied to blocks and entities lit with the corresponding block and sky light levels.

Loot functions

  • Added minecraft:villager_trade loot table type which takes the following parameters:
    • this, the entity offering the trade.
    • origin, the block position of the entity at its feet.
  • Added minecraft:set_random_dyes
    • Additively adds dyes to an item's minecraft:dyed_color data component if the item is in the #dyeable tag Fields:
    • conditions - conditions for the function to apply.
    • number_of_dyes - number provider representing the number of random dyes out of sixteen to apply to the item.
      • The same dye might be selected repeatedly.
  • Added minecraft:set_random_potion
    • Randomly sets the minecraft:potion_contents data component on an item Fields:
    • conditions - conditions for the function to apply.
    • options - optional potion id, list of namespaced potion IDs, or hash-prefixed potion tag, representing the possible potions to select from.
      • Defaults to any potion in the potions registry.

Predicates

  • Added minecraft:sum
    • Returns the sum of a list of number providers.
    • Fields:
      • summands, a list of number providers.

Tags

  • Added the #metal_nuggets item tag.
  • Added several tags representing groups of villager trades from which villagers and wandering traders derive their trading pools.
    • Villagers have the following tags representing each profession and level of trade in the format: #<profession>/level_<level>, up to level 5.
      • Smiths have the #common_smith/level_<level> tags representing common trades among armorers, weaponsmiths and toolsmiths, up to level 5.
    • Wandering Traders have the following tags: #wandering_trader/buying, #wandering_trader/special, #wandering_trader/common.
  • Potion tags
    • Added #tradeable
      • Contains all potion effects that can appear in villager trades.

Trade sets

  • What trades are unlocked by villager professions are now determined using deterministic random sequences, like loot drops and barter loot.
  • Present in the trade_set folder, they are groupings of trades offered by villagers and wandering traders.
  • Currently only hardcoded ones are available in <profession>/level_<level> for villagers, as well as wandering_trader/buying, wandering_trader/special, wandering_trader/common for wandering traders.
  • Entry Format:
    • trades, a villager trade id, list of namespaced villager trade IDs, or hash-prefixed villager trade tag representing the trades that are part of this trade set.
    • amount, a number provider representing the amount of trades to be generated from this set when used.
      • If the generated number is greater than the number of available trades then it will only generate until all trades have been used once, unless allow_duplicates is set to true
    • allow_duplicates, a boolean representing if the trade set can use the same villager trade multiple times to generate trades.
      • Defaults to false
    • random_sequence, an optional named random sequence that determines which trades are generated.
      • Defaults to a non-deterministic random sequence.
    • An example trade set offering 2 trades from the #minecraft:armorer/level_1 tag, allowing duplicates.
{
 "amount": 2.0,
 "trades": "#minecraft:armorer/level_1",
 "random_sequence": "minecraft:trade_set/armorer/level_1",
 "allow_duplicates": true
}

Name tag

  • Can now be crafted with 1 paper and 1 metal nugget.
Ingredienti Ricetta di fabbricazione
Ogni pepita +
Carta
Invicon Iron Nugget.png: Inventory sprite for Pepita di ferro in Minecraft as shown in-game linking to Pepita di ferro with description: Pepita di ferroInvicon Gold Nugget.png: Inventory sprite for Pepita d'oro in Minecraft as shown in-game linking to Pepita d'oro with description: Pepita d'oroInvicon Copper Nugget.png: Inventory sprite for Pepita di rame in Minecraft as shown in-game linking to Pepita di rame with description: Pepita di rameInvicon Paper.png: Inventory sprite for Carta in Minecraft as shown in-game linking to Carta with description: Carta
Invicon Name Tag.png: Inventory sprite for Targhetta in Minecraft as shown in-game linking to Targhetta with description: Targhetta

Baby mobs

  • Added new baby sounds for wolves, cats and pigs.
  • Updated the models and textures of the following baby mobs:

ImageImageImageImageImageImageImageImage Rabbit

  • Updated model, animation textures.
  • Image New idle animation. Queste funzionano solo dopo che il coniglio è stato legato almeno una volta, ma non è al momento legato.[4]
  • Hitbox size has been adjusted to match the new model.
  • Programmer Art textures have been removed following the model change.

Skeleton horses and zombie horses

  • No longer panic when hurt.

General

  • If a server's disk space is low, a toast will now be shown to server operators.
  • The game now requires Java 25.
  • The included Java distribution is now the Microsoft build of OpenJDK 25.
  • Piglin inventory slots can now be accessed using piglin.* similar to how villager inventories can be accessed using villager.*.
  • Tweaked default JVM options.
    • The game now allocates 4 GB of RAM by default (up from 2 GB).
    • Garbage collection has been changed from G1GC to ZGC for compatible computers.[Più informazioni necessarie]

Data pack

Debug screen

  • The looking_at_block and looking_at_fluid debug entries no longer show tags.
  • New debug entries have been added:
    • looking_at_block_tags
    • looking_at_fluid_tags
    • looking_at_entity_tags
  • Renamed debug entries:
    • looking_at_block -> looking_at_block_state
    • looking_at_fluid -> looking_at_fluid_state

Enchantment definition

  • The post_piercing_attack component no longer only works for a player if that player has a certain food level.

Entity data

  • The current_explosion_impact_pos and current_impulse_context_reset_grace_time fields from players have been added to all mobs and the armor stand.
  • The ignore_fall_damage_from_current_explosion field on players has been removed.

Lightmap algorithm

  • The algorithm that maps block and sky light levels to how bright things appear on screen has been fully rewritten.
  • A new algorithm that is supposed to mostly provide the same overall results as previous one, but:
    • It is simpler and more straightforward, and fixes multiple issues of the previous one.
    • The darkness effect and world darkening effect of the Wither fight now works the same way in all dimensions.
    • The night vision effect now simply adds ambient light instead of scaling the resulting colors.
      • It means that fully dark areas no longer look brighter than areas lit by block or sky light.
    • Other aspects of the algorithm such as block light tint, ambient light color and night vision color are now data-driven through environment attributes.

Lightmap shader

  • The lightmap.fsh shader was significantly modified.
    • The LightmapInfo uniform now has two new fields:
      • BlockLightTint
      • NightVisionColor
    • The AmbientLightFactor field was removed, its value is now premultiplied into AmbientColor
    • The DarkenWorldFactor was renamed to BossOverlayWorldDarkeningFactor
  • Text and items rendered in UI now use a separate 1x1 white lightmap texture, so the lightmap shader does not always have to keep the 15, 15 pixel purely white.

Loot functions

  • Changed minecraft:enchant_with_levels
    • Now also takes the following field:
      • include_additional_cost_component - optional boolean representing if a minecraft:additional_trade_cost component should be added to the item based on the cost of the enchantment.
        • Defaults to false
        • The value is determined by the levels number provider and is the same that is used to determine what enchantment level is used for enchanting.
  • Changed minecraft:enchant_randomly
    • Now also takes the following field:
      • include_additional_cost_component - optional boolean representing if a minecraft:additional_trade_cost component should be added to the item based on the cost of the enchantment.
        • Defaults to false
        • The value is determined by the value selected by levels or its default value using the following formula: 2+random(0,5+level*10)+3*level

Mob variant definitions

  • Wolf sound variants sound events in wolf_sound_variant has been moved into a new field adult_sounds and the field baby_sounds was added.

Predicates

  • Entity Predicates
    • player Sub-Predicate
      • New optional field: food
      • A Food predicate
      • Format: Object with fields:
        • level - optional integer min/max range specifying the required food level.
        • saturation - optional float min/max range specifying the required saturation level.

Resource pack

  • The version is now 77.0.

Sounds

  • Added new sound events for the baby cat:
    • entity.baby_cat.ambient
    • entity.baby_cat.hiss
    • entity.baby_cat.hurt
    • entity.baby_cat.death
    • entity.baby_cat.eat
    • entity.baby_cat.beg_for_food
    • entity.baby_cat.purr
    • entity.baby_cat.purreow
    • entity.baby_cat.stray_ambient
  • Added new sound events for the baby pig (piglet):
    • entity.baby_pig.ambient
    • entity.baby_pig.hurt
    • entity.baby_pig.death
    • entity.baby_pig.step
  • Added new sound events for the baby wolf:
    • entity.baby_wolf.ambient
    • entity.baby_wolf.growl
    • entity.baby_wolf.death
    • entity.baby_wolf.hurt
    • entity.baby_wolf.pant
    • entity.baby_wolf.whine
    • entity.baby_wolf.step

Splashes

  • Changed "Java 16 + 1 + 4 = 21!" to "Java 16 + 1 + 4 * 2 = 25!".

Tags

  • Enchantment Tags
    • Removed the following tags:
      • trades/desert_special
      • trades/jungle_special
      • trades/plains_special
      • trades/savanna_special
      • trades/snow_special
      • trades/swamp_special
      • trades/taiga_special

Textures

  • Entity Textures
    • Added new entity textures:
      • entity/cat/cat_all_black_baby.png
      • entity/cat/cat_black_baby.png
      • entity/cat/cat_british_shorthair_baby.png
      • entity/cat/cat_calico_baby.png
      • entity/cat/cat_collar_baby.png
      • entity/cat/cat_jellie_baby.png
      • entity/cat/ocelot_baby.png
      • entity/cat/cat_persian_baby.png
      • entity/cat/cat_ragdoll_baby.png
      • entity/cat/cat_red_baby.png
      • entity/cat/cat_siamese_baby.png
      • entity/cat/cat_tabby_baby.png
      • entity/cat/cat_white_baby.png
      • entity/chicken/chicken_cold_baby.png
      • entity/chicken/chicken_temperate_baby.png
      • entity/chicken/chicken_warm_baby.png
      • entity/cow/cow_cold_baby.png
      • entity/cow/cow_temperate_baby.png
      • entity/cow/cow_warm_baby.png
      • entity/cow/mooshroom_brown_baby.png
      • entity/cow/mooshroom_red_baby.png
      • entity/pig/pig_cold_baby.png
      • entity/pig/pig_temperate_baby.png
      • entity/pig/pig_warm_baby.png
      • entity/rabbit/rabbit_black.png
      • entity/rabbit/rabbit_brown.png
      • entity/rabbit/rabbit_caerbannog.png
      • entity/rabbit/rabbit_gold.png
      • entity/rabbit/rabbit_salt.png
      • entity/rabbit/rabbit_toast.png
      • entity/rabbit/rabbit_white.png
      • entity/rabbit/rabbit_white_splotched.png
      • entity/sheep/sheep_baby.png
      • entity/sheep/sheep_wool_baby.png
      • entity/wolf/wolf_angry_baby.png
      • entity/wolf/wolf_ashen_angry_baby.png
      • entity/wolf/wolf_ashen_baby.png
      • entity/wolf/wolf_ashen_tame_baby.png
      • entity/wolf/wolf_baby.png
      • entity/wolf/wolf_black_angry_baby.png
      • entity/wolf/wolf_black_baby.png
      • entity/wolf/wolf_black_tame_baby.png
      • entity/wolf/wolf_chestnut_angry_baby.png
      • entity/wolf/wolf_chestnut_baby.png
      • entity/wolf/wolf_chestnut_tame_baby.png
      • entity/wolf/wolf_collar_baby.png
      • entity/wolf/wolf_rusty_angry_baby.png
      • entity/wolf/wolf_rusty_baby.png
      • entity/wolf/wolf_rusty_tame_baby.png
      • entity/wolf/wolf_snowy_angry_baby.png
      • entity/wolf/wolf_snowy_baby.png
      • entity/wolf/wolf_snowy_tame_baby.png
      • entity/wolf/wolf_spotted_angry_baby.png
      • entity/wolf/wolf_spotted_baby.png
      • entity/wolf/wolf_spotted_tame_baby.png
      • entity/wolf/wolf_striped_angry_baby.png
      • entity/wolf/wolf_striped_baby.png
      • entity/wolf/wolf_striped_tame_baby.png
      • entity/wolf/wolf_tame_baby.png
      • entity/wolf/wolf_woods_angry_baby.png
      • entity/wolf/wolf_woods_baby.png
      • entity/wolf/wolf_woods_tame_baby.png
    • Renamed the following entity textures:
      • entity/armorstand/wood.pngentity/armorstand/armorstand.png
      • entity/cat/all_black.pngentity/cat/cat_all_black.png
      • entity/cat/black.pngentity/cat/cat_black.png
      • entity/cat/british_shorthair.pngentity/cat/cat_british_shorthair.png
      • entity/cat/calico.pngentity/cat/cat_calico.png
      • entity/cat/jellie.pngentity/cat/cat_jellie.png
      • entity/cat/persian.pngentity/cat/cat_persian.png
      • entity/cat/ragdoll.pngentity/cat/cat_ragdoll.png
      • entity/cat/red.pngentity/cat/cat_red.png
      • entity/cat/siamese.pngentity/cat/cat_siamese.png
      • entity/cat/tabby.pngentity/cat/cat_tabby.png
      • entity/cat/white.pngentity/cat/cat_white.png
      • entity/chicken/cold_chicken.pngentity/chicken/chicken_cold.png
      • entity/chicken/temperate_chicken.pngentity/chicken/chicken_temperate.png
      • entity/chicken/warm_chicken.pngentity/chicken/chicken_warm.png
      • entity/copper_golem/exposed_copper_golem.pngentity/copper_golem/copper_golem_exposed.png
      • entity/copper_golem/exposed_copper_golem_eyes.pngentity/copper_golem/copper_golem_eyes_exposed.png
      • entity/copper_golem/oxidized_copper_golem_eyes.pngentity/copper_golem/copper_golem_eyes_oxidized.png
      • entity/copper_golem/weathered_copper_golem_eyes.pngentity/copper_golem/copper_golem_eyes_weathered.png
      • entity/copper_golem/oxidized_copper_golem.pngentity/copper_golem/copper_golem_oxidized.png
      • entity/copper_golem/weathered_copper_golem.pngentity/copper_golem/copper_golem_weathered.png
      • entity/cow/cold_cow.pngentity/cow/cow_cold.png
      • entity/cow/temperate_cow.pngentity/cow/cow_temperate.png
      • entity/cow/warm_cow.pngentity/cow/cow_warm.png
      • entity/cow/brown_mooshroom.pngentity/cow/mooshroom_brown.png
      • entity/cow/red_mooshroom.pngentity/cow/mooshroom_red.png
      • entity/fox/snow_fox.pngentity/fox/fox_snow.png
      • entity/fox/snow_fox_sleep.pngentity/fox/fox_snow_sleep.png
      • entity/frog/cold_frog.pngentity/frog/frog_cold.png
      • entity/frog/temperate_frog.pngentity/frog/frog_temperate.png
      • entity/frog/warm_frog.pngentity/frog/frog_warm.png
      • entity/llama/brown.pngentity/llama/llama_brown.png
      • entity/llama/creamy.pngentity/llama/llama_creamy.png
      • entity/llama/gray.pngentity/llama/llama_gray.png
      • entity/llama/spit.pngentity/llama/llama_spit.png
      • entity/llama/white.pngentity/llama/llama_white.png
      • entity/panda/aggressive_panda.pngentity/panda/panda_aggressive.png
      • entity/panda/brown_panda.pngentity/panda/panda_brown.png
      • entity/panda/lazy_panda.pngentity/panda/panda_lazy.png
      • entity/panda/playful_panda.pngentity/panda/panda_playful.png
      • entity/panda/weak_panda.pngentity/panda/panda_weak.png
      • entity/panda/worried_panda.pngentity/panda/panda_worried.png
      • entity/pig/cold_pig.pngentity/pig/pig_cold.png
      • entity/pig/temperate_pig.pngentity/pig/pig_temperate.png
      • entity/pig/warm_pig.pngentity/pig/pig_warm.png
      • entity/projectiles/spectral.pngentity/projectiles/arrow_spectral.png
      • entity/projectiles/tipped.pngentity/projectiles/arrow_tipped.png
      • entity/turtle/big_sea_turtle.pngentity/turtle/turtle.png
    • Moved the following entity textures:
      • entity/armadillo.pngentity/armadillo/armadillo.png
      • entity/banner_base.pngentity/banner/banner_base.png
      • entity/bat.pngentity/bat/bat.png
      • entity/beacon_beam.pngentity/beacon/beacon_beam.png
      • entity/blaze.pngentity/blaze/blaze.png
      • entity/dolphin.pngentity/dolphin/dolphin.png
      • entity/enchanting_table_book.pngentity/enchantment/enchanting_table_book.png
      • entity/end_gateway_beam.pngentity/end_portal/end_gateway_beam.png
      • entity/end_portal.pngentity/end_portal/end_portal.png
      • entity/endermite.pngentity/endermite/endermite.png
      • entity/experience_orb.pngentity/experience/experience_orb.png
      • entity/fishing_hook.pngentity/fishing/fishing_hook.png
      • entity/guardian.pngentity/guardian/guardian.png
      • entity/guardian_beam.pngentity/guardian/guardian_beam.png
      • entity/guardian_elder.pngentity/guardian/guardian_elder.png
      • entity/lead_knot.pngentity/lead_knot/lead_knot.png
      • entity/minecart.pngentity/minecart/minecart.png
      • entity/phantom.pngentity/phantom/phantom.png
      • entity/phantom_eyes.pngentity/phantom/phantom_eyes.png
      • entity/shield_base.pngentity/shield/shield_base.png
      • entity/shield_base_nopattern.pngentity/shield/shield_base_nopattern.png
      • entity/silverfish.pngentity/silverfish/silverfish.png
      • entity/snow_golem.pngentity/snow_golem/snow_golem.png
      • entity/spider_eyes.pngentity/spider/spider_eyes.png
      • entity/trident.pngentity/trident/trident.png
      • entity/trident_riptide.pngentity/trident/trident_riptide.png
      • entity/wandering_trader.pngentity/wandering_trader/wandering_trader.png
      • entity/witch.pngentity/witch/witch.png
25 problemi corretti
From released versions before 26.1
  • MC-64087 – Revengeful zombies / Zombie reinforcements will try to attack you in Creative mode.
  • MC-179949 – You cannot edit the inventories of piglins by using /item replace.
  • MC-197497 – Smooth lighting transition from level 1 to 0 is not smooth.
  • MC-199589 – Hitting mobs in Creative mode then switching into Survival causes the mob to target you.
  • MC-219981 – Leader zombie-type mobs spawn with 20 health despite having an increased maximum health.
  • MC-300465 – Maps with the maximum number of markers cannot be placed in item frames.
  • MC-302186 – Ambient lighting in the Nether appears discolored compared to previous versions.
  • MC-302408 – Inconsistent underwater lighting with the Conduit Power effect applied.
  • MC-302528 – Low sky & block light look outright broken when cast on the same area.
  • MC-302734 – Zombie horses constantly move in and out of water and burn to death.
  • MC-303119 – Feeding a cat or wolf in Survival mode with only one item in the selected item slot does not restore as much health as it should.
  • MC-303125 – Creepers can blow up after the player dies.
  • MC-303389 – The ender dragon's velocity can be affected by attacks while perched.
  • MC-303692 – Debug overlay text has an indent when improved transparency is disabled.
  • MC-304023 – Redundant level data fixer files are saved in worlds' "data" folder.
  • MC-304217 – Lunge's hunger requirement applies to post_piercing_attack effects of custom enchantments.
  • MC-304361 – The heads of zombie nautiluses have a massive empty gap on the back.
  • MC-304599 – Dolphins don't follow players riding nautiluses like in Bedrock Edition.
  • MC-304631 – Anisotropic filtering set to 8x causes opaque translucent textures to become transparent in the distance when there are odd-sized block textures.
  • MC-304705 – The E value in entity_render_stats in the debug overlay doesn't work.
  • MC-304725 – Zombie villagers summoned with default spawn eggs always spawn as their plains variant.
  • MC-304761 – Spears' charge animation takes too long to rotate sideways for slower spears.
  • MC-304991 – Clicking on a chest with loot that hasn't been generated in Spectator mode makes the "block.chest.locked" sound.
  • MC-305012 – The description of the "Universal anger" game rule still uses the old ID of the "Forgive dead players" game rule.
  • MC-305040 – Nautili spawned as a result of a player breeding two other nautili can despawn.
  1. "Minecraft’s new version numbering system" – Minecraft.net, 2 dicembre 2025
  2. "Removing obfuscation in Java Edition" – Minecraft.net, 29 ottobre 2025
  3. "Minecraft 26.1 Snapshot 1" – Minecraft.net, 16 dicembre 2025
  4. MC-305551 – I conigli non riproducono la loro animazione di movimento della testa