promotional bannermobile promotional banner

Re:Zero Rewind Addon

This script adds Return By Death from Re:Zero to Minecraft Bedrock.

File Details

RE0 Update 5 English

  • R
  • Feb 25, 2026
  • 69.34 KB
  • 571
  • 26.0.02+1

File Name

RE0 Update 5 English.mcpack

Supported Versions

  • 26.0.02
  • 1.21.100

🇺🇸 English — Update 5

Fix: Hunger was not reverting on death

Issue: Upon dying and rewinding time, the player's hunger, saturation, and exhaustion were not being restored correctly — they always reset to 20/5/0 regardless of the value saved at the checkpoint.

Root cause: The addon manifest declared @minecraft/server 1.11.0, a version that does not include EntityHungerComponent, EntitySaturationComponent, or EntityExhaustionComponent. As a result, all attempts to read and restore hunger failed silently.

Fixes applied:

manifest.json: API version updated from 1.11.0 to 2.1.0

manifest.json: min_engine_version updated to [1, 21, 100]

Hunger read fixed: EntityComponentTypes.Hunger → direct string "minecraft:player.hunger"

Hunger write fixed: .value = → .setCurrentValue()

Hunger is now reapplied at ticks 0, 1, 2, 3, 5 and 10 after respawn to overcome the engine's internal reset

At tick 10, HP is also reapplied to correct any natural regeneration that occurred during the window

Requirement: Minecraft Bedrock 1.21.100 or higher.