Hello, i know that this is old topic, but maybe someone have the same issue as I have

First of all great job with the scripts and modifications, it really works great atm.
I'm facing the last issue with speed bonus on items.
I had add "!" before the "item->getAttribute(CONVERSION::SPEED).empty()" to the ability to take effect. Before when I was wearing the bonus item it would not give me any speed boost. After this change it is working fine with EquipItem, but something is wrong with the DeEquipItem.
C++:
if(it.abilities.speed || !item->getAttribute(CONVERSION::SPEED).empty())
{
boost::any attr;
attr = item->getAttribute(CONVERSION::SPEED);
int32_t val = 0;
if (it.abilities.speed)
val += it.abilities.speed;
if (!attr.empty() && ((attr.type() == typeid(float)) || (attr.type() == typeid(int32_t))))
val += boost::any_cast<int32_t>(attr);
g_game.changeSpeed(player, val);
};
It looks like this as you suggest, but it doesn't remove the additional speed. If I deequip the item equip it again and repeat it, I will get additional speed each time I wear an item.
C++:
if(it.abilities.speed || item->getAttribute(CONVERSION::SPEED).empty())
g_game.changeSpeed(player, -it.abilities.speed);
Do you have any ideas why the above is not working?
Many thanks in advance for help !