[Assassination] Bug: Rupture with no combo point
beati opened this issue ยท 1 comments
Hi,
While playing I noticed that rupture was sometimes suggested with no combo point which is a problem because we can't cast rupture without combo point.
I think 3ec3c98 introduced the bug. It's also probably a bug in simcraft apl but not sure.
Here rupture can be cast with 0 combo point if HL.CombatTime() > 10 :
hero-rotation/HeroRotation_Rogue/Assassination.lua
Lines 748 to 751 in ae30163
The corresponding APL line is :
which is not consistent with the one at the end of the file
There is an extra
&(time>10|combo_points>=2)
as far as I understand this condition can't be correct for rupture because it can be true with 0 combo point.
The condition is also present in this APL line :
which is probably a bug in simcraft.
Thanks for the report. SimC knows that Rupture cannot be used without CP so this has no effect on it. However, in HR we have to manually add a check for CP even if the amount does not matter to avoid these 0CP bugs. So, yeah, I think this is a simple oversight and easy to fix, but I'll wait for @EvanMichaels input as he was fiddling with that.