![Surgebinding](https://media.forgecdn.net/avatars/thumbnails/549/241/256/256/637886069192971258.png)
[Allomancy] Push/Pull range should be configurable
leafreynolds opened this issue ยท 2 comments
A request to make the range configurable. We could override it specifically for iron and steel.
Currently range is equal to strength * mode (ie burn or flare)
A potential way it could work:
final int mode = Math.max(getMode(data), 0);
final int potentialRange = allomanticStrength * mode;
final int actionableRange = Mth.floor(potentialRange * AllomancyConfigs.SERVER_CONFIG.IRON_STEEL_RANGE.get();)
return actionableRange;
where IRON_STEEL_RANGE
would default to 1.0f;