Replace `easyPlaceVanillaReach` boolean with `easyPlaceReach` float
James103 opened this issue ยท 0 comments
Is your feature request related to a problem? Please describe.
On some servers, it's possible that the player's reach for block interactions (placing, mining, clicking on blocks) is more than the vanilla reach (4.5) but less than the default reach for Easy Place (6.0).
For example, a 1.19 server may limit the maximum allowed range for placing blocks in survival to approximately 5.5 m, with any block interaction outside that sphere being canceled by the server.
Describe the solution you'd like
Remove the boolean setting easyPlaceVanillaReach
and replace it with an float setting called easyPlaceReach
.
This should allow the reach to be set to an arbitrary value as long as it fits within the maximum interaction distance permitted by the server.
Describe alternatives you've considered
If easyPlaceVanillaReach
is true, the block reach used for Easy Place could be set to the value of blockReachDistance
if Tweakeroo is installed and its tweakBlockReachOverride
setting is true, or 4.5 otherwise. However, this requires a separate mod (Tweakeroo) to be installed, which some players may not want.