Skip to content

Commit 065e405

Browse files
committed
Fix for #5
1 parent 3b4e902 commit 065e405

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/actionhandlers.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ actionhandlers.parse_action_packet = function(act)
239239

240240
-- Some messages uses the english log version of the buff
241241
if not gProfileSettings.mode.simplify and log_form_messages:contains(m.message) then
242-
m.status = AshitaCore:GetResourceManager():GetString('buffs.names_log', m.param, gProfileSettings.lang.internal)
242+
m.status = AshitaCore:GetResourceManager():GetString('buffs.names_log', m.param, 2)
243243
end
244244

245245
-- if m.message == 93 or m.message == 273 then m.status = gFuncs.ColorIt('Vanish', gProfileColor['statuscol']) end

lib/functions.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ local GetPartyData = function()
106106
local resource = {}
107107

108108
parse_party(resource, 'p', 0, AshitaCore:GetMemoryManager():GetParty():GetAlliancePartyMemberCount1())
109-
parse_party(resource, 'a1', 6, AshitaCore:GetMemoryManager():GetParty():GetAlliancePartyMemberCount2())
109+
parse_party(resource, 'al', 6, AshitaCore:GetMemoryManager():GetParty():GetAlliancePartyMemberCount2())
110110
parse_party(resource, 'a2', 12, AshitaCore:GetMemoryManager():GetParty():GetAlliancePartyMemberCount3())
111111

112112
return resource

lib/ui.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ local color_info = {
100100
'p3',
101101
'p4',
102102
'p5',
103-
'a10',
104-
'a11',
105-
'a12',
106-
'a13',
107-
'a14',
108-
'a15',
103+
'al0',
104+
'al1',
105+
'al2',
106+
'al3',
107+
'al4',
108+
'al5',
109109
'a20',
110110
'a21',
111111
'a22',

0 commit comments

Comments
 (0)