Bug: Stack Radiation Doesn't Work
Hacker6329 opened this issue ยท 2 comments
If you have a stack that is radioactive it counts only as a single rad item. If you split the stack in your inventory it counts as 2 radioactive items.
The issue could be fix in com.hbm.hazard.type.HazardTypeRadiation.onUpdate replacing
"float rad = level / 20F;" with "float rad = (level * stack.getCount()) / 20F;"