File Details
RE0 Update 5.1 English
- R
- Feb 25, 2026
- 69.43 KB
- 3.2K
- 26.0.02+1
File Name
RE0 Update 5 English.mcpack
Supported Versions
- 26.0.02
- 1.21.100
🇺🇸 English — Update 5.1
Fix: Watchdog expulsion when clicking the bed repeatedly
Issue: Rapidly clicking the bed before nightfall caused the player to be kicked from the world with a script watchdog error.
Root cause: Every click on the bed triggered saveCheckpoint immediately. This function is expensive — it scans mobs within an 80-block radius, scans containers within 80 blocks, and captures local block states. Multiple clicks per second overloaded the script, exceeding the maximum execution time per tick allowed by the engine.
Fix applied:
Added a 5-second debounce to the bed interaction
No matter how many times the player clicks, the checkpoint is only saved once every 5 seconds
The first click saves normally; subsequent clicks are ignored until the interval elapses

