For some reason gearswap isn't acknowledging Storm II spell buffs for me, it swaps gear when you cast the spells as it should however when you nuke with said buffs on, it doesn't seem to pickup right.
Firestorm + Fire = puts obi on, Firestorm II + Fire = does not use obi
Another example is this always seems to ignore storm 2 affect and skip to current day, but still works with storm 1 spells.
Code:
if g5_spells[cmdParams[1]] then
if world.weather_element ~= 'None' then
if g5_spells[cmdParams[1]][world.weather_element] then
send_command('input /ma "' .. g5_spells[cmdParams[1]][world.weather_element] .. '" <t>')
end
else
if g5_spells[cmdParams[1]][world.day_element] then
send_command('input /ma "' .. g5_spells[cmdParams[1]][world.day_element] .. '" <t>')
end
end
end
Are these problems with Mote's files i need to patch somewhere myself or is this gearswap? I've tried to figure this out but i'm tired and don't know where to look.