This commit is contained in:
Anuken 2022-10-01 17:39:21 -04:00
parent c4a92aba38
commit f89e69b2f6
3 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,8 @@ public class ContinuousLiquidTurret extends ContinuousTurret{
//}
});
ammoTypes.each((item, type) -> placeOverlapRange = Math.max(placeOverlapRange, range + type.rangeChange + placeOverlapMargin));
super.init();
}

View File

@ -76,6 +76,8 @@ public class ItemTurret extends Turret{
}
});
ammoTypes.each((item, type) -> placeOverlapRange = Math.max(placeOverlapRange, range + type.rangeChange + placeOverlapMargin));
super.init();
}

View File

@ -53,6 +53,8 @@ public class LiquidTurret extends Turret{
}
});
ammoTypes.each((item, type) -> placeOverlapRange = Math.max(placeOverlapRange, range + type.rangeChange + placeOverlapMargin));
super.init();
}