Ipsis opened this issue 8 years ago ยท 0 comments
The decapitate chance is currently D1 - 20% D2 - 40% D3 - 80%
However the code is actually doing the following: if (nextInt(100) > chance)
Which means at D3 you effectively have a 20% chance! It should be if (nextInt(100) <= chance)