[Forge 1.20.1] v4.4.0
Curse Maven Snippet
What's new
Version [v4.4.0] - 2026-03-27
Features
- Added the Time Anchor Amulet. Please note that it is currently hidden from the creative tabs due to missing textures. When equipped (via Curios or Trinkets), it grants the wearer immunity to time-stop effects
Forge
- Added KubeJS Compatibility: You can now use the timeclock.entityPause event to control time-stop logic.
Example Script:
timeclock.entityPause(event => {
// Available methods:
// event.allow(), event.deny()
// event.setResult('allow'), event.setResult('deny')
if (event.entity.type === 'minecraft:pig') {
event.deny() // Immunity for pigs
}
if (event.entity.type === 'minecraft:creeper') {
event.setResult('deny') // Immunity for creepers
}
})
- Add this to any file in your kubejs/server_scripts/
Bug fixes
This mod has no additional files

