Описание
# Beacon Range Extender
[](https://modrinth.com/project/beacon-range-extender)
A Minecraft Fabric mod, which extends the range of beacons.
## Configuration
Within the `config` directory, there is `beacon-range-extender.json`.
It has the following options:
- `rangePerLevel`: the base range each level provides
- `baseRange`: the range the beacon gives as long as it's activated
- `rangeMultipliers`: if a level is made of only one material, the range can (and by default will) be multiplied by the provided value.
- By default, diamond blocks double the range and netherite blocks x4 it.
- This is given as `[block identifier]:[multiplier]`
- The value is multiplicative. Two layers 4 times their value create a range of 16 times their value, not 8 times.
Note: The range is calculated as `(level * rangePerLevel * rangeMultiplier) + baseRange`.