Bug - Fixed vote modifier not counted

Meat Drop modifier works. Experience (familiar) modifier type exists but vote modifier is not counted:


_voteModifierMeat Drop: +30, Experience (familiar): +2

> modtrace meat

Local Vote +30.00

> modtrace familiar experience

type source Familiar Experience

shows no values.

KoLCharacter.java calls this which is supposed to break apart the modifiers, I don't know where it is failing
Modifiers.evaluateModifiers(
"Local Vote:Local Vote", Preferences.getString("_voteModifier"))));
 
Last edited by a moderator:
I'd guess its because it's not named the same as the modifier
"Meat Drop" is the same as "Meat Drop", but "Experience (familiar)" is not the same as "Familiar Experience".
 
I'd guess its because it's not named the same as the modifier
"Meat Drop" is the same as "Meat Drop", but "Experience (familiar)" is not the same as "Familiar Experience".
I thought "Experience (familiar)" and "Familiar Experience" were both in registered expressions but you may be right, another modifier that does not get counted is

Experience (Muscle): +4
 
Top