Mineuniverse
Log in Register
Mods

A Watched Pot

A watched block sometimes ticks.
by aeonicdev
Download Claim this project
2,277 downloads
0 likes
Updated Jun 30, 2026
0 hypes

 

A watched pot never boils. A watched furnace never... ticks?

A Watched Pot is a fully configurable mod for both Neoforge/Forge and Fabric/Quilt that either stops blocks from ticking when they're looked at or restricts them to only tick when they *are* looked at, with filtering available via block tags.

 

Usage

 

On Forge, A Watched Pot can be configured through Forge's normal server configuration systems. There are currently two configuration options:

  • The mod can use either a whitelist or a blacklist, which can be toggled via the use_whitelist option. If the option is enabled, only blocks in the watchedpot:whitelist block tag will be affected. If it's disabled (which it is by default), all blocks will be affected except those in the watchedpot:blacklist tag.
  • The mod's behavior can be inverted via the invert_behavior option. If enabled, only blocks that are looked at will tick (of those affected); if disabled, all blocks will tick *unless* they are looked at.

By default, both options are set to false - that is, no block will tick while a player is looking at it.

 

To recap:

  • use_whitelist=true, invert_behavior=false - blocks in the whitelist tag will not tick if they are looked at; all other blocks remain unchanged.
  • use_whitelist=false, invert_behavior=false - all blocks will not tick if they are looked at, unless they are in the blacklist tag (in which case they remain unchanged).
  • use_whitelist=true, invert_behavior=true - blocks in the whitelist tag will only tick if they are looked at; all other blocks remain unchanged.
  • use_whitelist=false, invert_behavior=true - all blocks will only tick if they are looked at, unless they are in the blacklist tag (in which case, again, they remain unchanged).

 

On Fabric, the same options can be set via gamerules (watchedpot_useWhitelist and watchedpot_invertBehavior) to avoid an extra config dependency. This is unfortunately not quite as robust but it keeps the mod lightweight on both platforms. If you need to set default values (such as for a modpack) you can emulate that behavior with a KubeJS server_script, like so:

// For 1.18.2 change the line below to onEvent('server.load', event => {
ServerEvents.loaded(event => {
  if (event.server.persistentData.gameRules) return
  event.server.gameRules.set("watchedpot_useWhitelist", true)
  event.server.gameRules.set("watchedpot_invertBehavior", false)

  event.server.persistentData.gameRules = true
})
 

You can also use datapacks to achieve the same effect with a .mcfunction running the /gamerule command. See the Minecraft Wiki for information on that.

 

Demo

 

Forge 1.21.4-1.0.0
MC 1.21.4, Forge, Server
Release 2024-12-16 Get
NeoForge 1.21.4-1.0.0
MC 1.21.4, NeoForge, Server
Release 2024-12-16 Get
Fabric 1.21.4-1.0.0
MC Fabric, 1.21.4, Server
Release 2024-12-16 Get
Fabric 1.21-1.0.0
MC 1.21, Fabric, 1.21.1, Server, Quilt
Release 2024-06-17 Get
Forge 1.21-1.0.0
MC 1.21, Forge, 1.21.1, Server
Release 2024-06-17 Get
NeoForge 1.21-1.0.0
MC 1.21, 1.21.1, NeoForge, Server
Release 2024-06-17 Get

More from aeonicdev

Nifty
961

You Might Also Like

LoadingTips
A mod that adds custom tips to the loading screen
999,218
Sampler
Performance oriented debugging/administration tools
998,926
VulkanMod
Vulkan renderer mod for Minecraft.
997,115
Charm Fixer
Disables some modules on charm to fix incompatbility issues with owo
996,251
Trading station
Basic items to item trading machines
99,755
NarrateBookForMe [FABRIC]
Adds a narration keybind, and two GUI buttons to the book screen. Text-to-speech (tts) / narration on the go! Client sided.
99,734