mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:57:22 +01:00
fix for the fix of ipc manager to create temp collections, bump version
This commit is contained in:
parent
100aba0900
commit
35ebaed80c
2 changed files with 5 additions and 4 deletions
|
|
@ -5,7 +5,6 @@ using System.Collections.Generic;
|
|||
using Dalamud.Game.ClientState.Objects.Types;
|
||||
using MareSynchronos.Utils;
|
||||
using MareSynchronos.WebAPI;
|
||||
using Lumina.Excel.GeneratedSheets;
|
||||
using Action = System.Action;
|
||||
|
||||
namespace MareSynchronos.Managers
|
||||
|
|
@ -86,6 +85,7 @@ namespace MareSynchronos.Managers
|
|||
{
|
||||
while (actionQueue.TryDequeue(out var action))
|
||||
{
|
||||
Logger.Debug("Execution action in queue: " + action.Method);
|
||||
action();
|
||||
}
|
||||
}
|
||||
|
|
@ -263,12 +263,13 @@ namespace MareSynchronos.Managers
|
|||
|
||||
actionQueue.Enqueue(() =>
|
||||
{
|
||||
Logger.Verbose("Assigning temp mods for " + characterName);
|
||||
var ret = _penumbraCreateTemporaryCollection.InvokeFunc("MareSynchronos", characterName, true);
|
||||
Logger.Verbose("Assigning temp mods for " + ret.Item2);
|
||||
foreach (var mod in modPaths)
|
||||
{
|
||||
Logger.Verbose(mod.Key + " => " + mod.Value);
|
||||
}
|
||||
_penumbraSetTemporaryMod.InvokeFunc("MareSynchronos", characterName, modPaths, manipulationData, 0);
|
||||
_penumbraSetTemporaryMod.InvokeFunc("MareSynchronos", ret.Item2, modPaths, manipulationData, 0);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue