Currently the sources for creeper explosions and falling blocks are stored in the metadata section of bukkit. The metadata section is never cleared so with a lot of falling blocks there is a memory leak.
This PR removes the tracking for Creeper explosions since there is already Creeper#getIgniter().
For Paper we use FallingBlock#getOrigin()if the config options usePaperEntityOrigin is enabled.
Currently the sources for creeper explosions and falling blocks are stored in the metadata section of bukkit. The metadata section is never cleared so with a lot of falling blocks there is a memory leak.
This PR removes the tracking for Creeper explosions since there is already
Creeper#getIgniter()
.For Paper we use
FallingBlock#getOrigin()
if the config options usePaperEntityOrigin is enabled.Closes #1535