Lawful Sword Doesn't Stick
Moderators: Moderator, Developer, Quality Control, DM
-
RedLancer
- Posts: 245
- Joined: Mon Mar 28, 2016 4:58 pm
Lawful Sword Doesn't Stick
Per the subject, you cast, and shortly after casting, it goes away.
- Afendaria
- Posts: 93
- Joined: Fri Jul 19, 2024 4:43 am
- Contact:
Re: Lawful Sword Doesn't Stick
Related, perhaps - But I've noticed Bless Weapon seems.. pathetically short lately too. Did something happen to Paladin based spells?
" An addict for plaudit? You'll get your crucifix. "
- Goat
- Global Admin
- Posts: 613
- Joined: Fri Nov 03, 2023 1:51 pm
- Contact:
Re: Lawful Sword Doesn't Stick
Nothing was changed with spell duration on all paladins spells - no. Each spell would have to be modified manually for the duration but nothing was changed of the sort.
If it's removing on unequip or something there is probably something strange happening. I believe there are some cases that trigger the removal, I don't know what's been going on about it. I think it was brought up before and AoS was going to investigate it. Unequip is defo one of them and there is probably a reason why it exists there.
Mostly these. The problem is the information is so vague, I can assume that something happens where the buff stays 'stuck' for some reason.
If it's removing on unequip or something there is probably something strange happening. I believe there are some cases that trigger the removal, I don't know what's been going on about it. I think it was brought up before and AoS was going to investigate it. Unequip is defo one of them and there is probably a reason why it exists there.
Code: Select all
// Removes all weapon buffs. Called on unequip of weapon and when trying to apply a weapon buff while currently ranged.
void RemoveAllWeaponBuffs(object oPC)
{
RemoveBfix(oPC, BLESS_WEAPON);
RemoveBfix(oPC, HOLY_SWORD);
RemoveBfix(oPC, LAWFUL_SWORD);
RemoveBfix(oPC, UNHOLY_SWORD);
RemoveBfix(oPC, FLAME_OF_FAITH);
RemoveBfix(oPC, DEAFENING_CLANG);
RemoveBfix(oPC, DISRUPTING_WEAPON);
RemoveBfix(oPC, FROST_WEAPON);
RemoveBfix(oPC, ORC_BLOODSPEAR);
RemoveBfix(oPC, WATERY_DEATH);
RemoveBfix(oPC, WEAPON_OF_DESTRUCTION);
RemoveBfix(oPC, FLAME_WEAPON);
}-
RedLancer
- Posts: 245
- Joined: Mon Mar 28, 2016 4:58 pm
Re: Lawful Sword Doesn't Stick
There was an issue called out in September-ish re: weapon buffs not playing nice with each other, something like Bless Weapon had to go on last, and a fix was attempted.
Just did some testing: the weapon buff is being stripped on the equip/unequip of any item, not just the buffed weapon. Put on a shield? Buff gone. Change a ring? Buff gone. And so on. This is also stripping Holy Sword; I just never noticed because I'm usually done swapping items by the time Holy Sword goes up.
Just did some testing: the weapon buff is being stripped on the equip/unequip of any item, not just the buffed weapon. Put on a shield? Buff gone. Change a ring? Buff gone. And so on. This is also stripping Holy Sword; I just never noticed because I'm usually done swapping items by the time Holy Sword goes up.
- Mork
- Posts: 391
- Joined: Sun Mar 26, 2017 1:51 pm
Re: Lawful Sword Doesn't Stick
I can confirm about holy sword and some others. Reported it earlier here:
viewtopic.php?p=978192
Super annoying when combined with disarming mimics
viewtopic.php?p=978192
Super annoying when combined with disarming mimics
- Goat
- Global Admin
- Posts: 613
- Joined: Fri Nov 03, 2023 1:51 pm
- Contact:
Re: Lawful Sword Doesn't Stick
Huh. That's interesting. I guess that's why some buffs I have had are randomly removed when I stripped naked and ran through the streets of Soubar.RedLancer wrote: ↑Sun Feb 22, 2026 11:33 am There was an issue called out in September-ish re: weapon buffs not playing nice with each other, something like Bless Weapon had to go on last, and a fix was attempted.
Just did some testing: the weapon buff is being stripped on the equip/unequip of any item, not just the buffed weapon. Put on a shield? Buff gone. Change a ring? Buff gone. And so on. This is also stripping Holy Sword; I just never noticed because I'm usually done swapping items by the time Holy Sword goes up.
I think Dae made a change in September though yes.
- Goat
- Global Admin
- Posts: 613
- Joined: Fri Nov 03, 2023 1:51 pm
- Contact:
Re: Lawful Sword Doesn't Stick
Mork wrote: ↑Sun Feb 22, 2026 6:44 pm I can confirm about holy sword and some others. Reported it earlier here:
viewtopic.php?p=978192
Super annoying when combined with disarming mimics
This actually happens because there's a problem with disarm and there wasn't a code solution for it. The buffs become permanent sometimes. From what I know it was a change by GED awhile back and getting disarmed has always removed buffs in this scenario. There is no real easy way around this one atm unless maybe Dae can make something of a plugin - But it shouldn't be randomly removing all buffs if you change a shield for example. I don't think the disarm dispel is going to be fixed anytime soon to be blunt but it was nothing to do with auction sales.Mork wrote: ↑Wed Feb 18, 2026 12:51 pm I've noticed Holy Sword gets dispelled on weapon change, same happens when you are disarmed. I heard it was suppose to be a method to prevent people from buffing weapon and posting it on auction? Way it's implemented now seems very buggy and causing a lot of issues for normal players.
Also there's a problem with Keen and GMW when weapon is disarmed by mimic. Their sticky tongues shouldn't have dispelling property
But the one RL posted is something new, and I can see it based on r245 too.