[DiscordArchive] Auraspell gets removed on logout, why??? I cant...
[DiscordArchive] Auraspell gets removed on logout, why??? I cant...
Archived author: Needle • Posted: 2025-02-23T17:08:10.264000+00:00
Original source
Archived author: Needle • Posted: 2025-02-23T17:08:10.961000+00:00
Original source
Thread automatically created by Goatrek in <#415944535718494208>
Archived author: Jerry • Posted: 2025-02-23T17:16:43.830000+00:00
Original source
what about interrupt flags? If this spell is a copy of some other spell maybe it has some interrupt flags that were copied over
Archived author: Jerry • Posted: 2025-02-23T17:17:21.935000+00:00
Original source
like AURA_INTERRUPT_FLAG_LOGIN_CANCELS or AURA_INTERRUPT_FLAG_ENTER_WORLD
Archived author: Goatrek • Posted: 2025-02-23T17:18:33.198000+00:00
Original source
No interrupt flags at all.
Archived author: Goatrek • Posted: 2025-02-23T17:21:07.062000+00:00
Original source
This is how the 5 of them look. Not much to them tbh.
spellshow.txt
Archived author: Jerry • Posted: 2025-02-23T17:24:34.209000+00:00
Original source
then it's probably not saved at all, you can look at Aura::CanBeSaved() to see what decides that
Archived author: Jerry • Posted: 2025-02-23T17:26:12.854000+00:00
Original source
maybe because of ```
// don't save auras removed by proc system
if (IsUsingCharges() && !GetCharges())
return false;
``` in your case
Archived author: Goatrek • Posted: 2025-02-23T17:29:20.286000+00:00
Original source
Hmm.
If this is the case, Do I simply change that statement to return True?
Archived author: Jerry • Posted: 2025-02-23T17:30:18.071000+00:00
Original source
that'll most likely cause a lot of issues without other changes, I'm not even sure in your case, this is just very surface level