MMOMinion

Full Version: code typo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
ffxiv_task_gather.lua:1594

Code:
local methodicals = {
    [16] = 4075,
    [17] = 4089,
}
local discernings = {
    [16] = 4078,
    [17] = 4092,
}

local methodical = ActionList:Get(methodicals[Player.job])
local discerning = ActionList:Get(descernings[Player.job])

the last line should be
Code:
local discerning = ActionList:Get(discernings[Player.job])