From 69afbd867b83e8799fa8047a8ea301e636373168 Mon Sep 17 00:00:00 2001 From: Maiko Sinkyaet Tan Date: Fri, 9 Jun 2023 09:20:45 +0800 Subject: [PATCH] jobs: ensure jobs name to be upper case --- plugin/CactbotEventSource/JSEvents.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/CactbotEventSource/JSEvents.cs b/plugin/CactbotEventSource/JSEvents.cs index 352d21fb79..e73753a070 100644 --- a/plugin/CactbotEventSource/JSEvents.cs +++ b/plugin/CactbotEventSource/JSEvents.cs @@ -75,7 +75,7 @@ public PlayerChangedEvent(FFXIVProcess.EntityData e) { id = e.id; level = e.level; name = e.name; - job = e.job.ToString(); + job = e.job.ToString().ToUpper(); currentHP = e.hp; maxHP = e.max_hp; currentMP = e.mp;