where in sources do I remove this?
using avesta
here is the part of the code this pertains to i think, if you need more let me know
else if(it.armor != 0 || it.abilities.absorb.any()){
if(it.showCharges){
if(subType > 1){
s << " that has " << (int32_t)subType << " charges left";
}
else{
s << " that has 1 charge left";
}
}
s << " (Arm:" << it.armor;
if(it.abilities.absorb.any()){
s << ", protection";
it.abilities.absorb.getDescription(s);
}
s << ").";
}
Last edited: