LittleWigs

LittleWigs

79M Downloads

Blazing Charge problem

nanjuekaien1 opened this issue · 6 comments

commented

Dragonflight's Neltharus copy of Magmatusk's skill Blazing Charge voice does not warn

What version of LittleWigs are you using? (Stating 'latest' is not useful)

10.1.12

Do you have an error log of what happened?

Transcriptor.zip

Any additional information? (example: WoW language if not English)

zhCN

commented

In the log it shows Blazing Charge alert was shown:

"<43.42 19:50:43> [BigWigs_Message] Magmatusk#375439#你 炽燃冲锋#blue#135822#true", -- [217]
"<43.42 19:50:43> [BigWigs_StartBar] Magmatusk#375439#炽燃冲锋#26.7#135822#true#nil", -- [218]
"<43.42 19:50:43> [CLEU] SPELL_CAST_SUCCESS#Vehicle-0-3156-2519-21545-181861-0000709BEC#岩浆之牙(63.8%-34.0%)#Player-963-06EE100E#楓聖御雷#375436#炽燃冲锋#nil#nil", -- [219]

But you said you didn't get a voice alert? Are you using BigWigs_Voice?

commented

It's the BigWigs_Voice used
You can see it in the statistics Blazing Charge ID: 375431 ;375436 ;375439 ;375455 ,These four IDs.

commented

Thanks for that info. Changing it to use SPELL_CAST_START for 375439 would lose the targeting information that's only present on SPELL_CAST_SUCCESS for 375436, so LittleWigs would no longer know who is targeted.

Looking into that a bit further it seems like BigWigs does not send the BigWigs_Voice message if there is any targeting info:

https://github.com/BigWigsMods/BigWigs/blob/087a14f6a0c230f9ff345ac4911e9db0c095f40f/Core/BossPrototype.lua#L2856-L2881

commented

self:Log("SPELL_CAST_SUCCESS", "BlazingCharge", 375436)

Change to
self:Log("SPELL_CAST_START", "BlazingCharge", 375439)

Voice warnings are normal.

commented

Will be fixed by BigWigsMods/BigWigs@b13c1d1.

Thanks for the report!

commented

Thanks, fix bug