Laser drill lens effects stacking improperly
zapl opened this issue ยท 1 comments
While browsing the code to figure out how lenses stack I noticed that the code that deals with them in LaserBaseTile#innerUpdate()
is broken since 663f8bd
the line https://github.com/Buuz135/Industrial-Foregoing/blob/361924f04fd4704182168a8bfab09b8da34f74e6/src/main/java/com/buuz135/industrial/tile/world/LaserBaseTile.java#L195 does not belong into the for
loop that iterates over the lenses to calculate the final weight of an ore. It currently adds the item multiple times with increasing weight thus over-amplifying the effect of lenses. Needs simply to be moved 2 down.