fix: use correct part

This commit is contained in:
Anna 2024-07-29 15:30:21 -04:00
parent 657732e793
commit b34a387f76
Signed by: anna
GPG Key ID: D0943384CD9F87D1

View File

@ -261,8 +261,6 @@ public class Plugin : IDalamudPlugin {
break; break;
} }
return;
} }
internal Evaluator? GetEvaluator() { internal Evaluator? GetEvaluator() {
@ -515,6 +513,7 @@ public class Plugin : IDalamudPlugin {
member.TargetGlow->MultiplyRed = (byte) Math.Clamp(this.Config.BarMulRed, 0, 100); member.TargetGlow->MultiplyRed = (byte) Math.Clamp(this.Config.BarMulRed, 0, 100);
member.TargetGlow->MultiplyGreen = (byte) Math.Clamp(this.Config.BarMulGreen, 0, 100); member.TargetGlow->MultiplyGreen = (byte) Math.Clamp(this.Config.BarMulGreen, 0, 100);
member.TargetGlow->MultiplyBlue = (byte) Math.Clamp(this.Config.BarMulBlue, 0, 100); member.TargetGlow->MultiplyBlue = (byte) Math.Clamp(this.Config.BarMulBlue, 0, 100);
member.TargetGlow->PartId = 3;
} }
if (this.Config.Mode == MeterMode.Mana) { if (this.Config.Mode == MeterMode.Mana) {