mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-13 20:14:15 +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 Dalamud.Game.ClientState.Objects.Types;
|
||||||
using MareSynchronos.Utils;
|
using MareSynchronos.Utils;
|
||||||
using MareSynchronos.WebAPI;
|
using MareSynchronos.WebAPI;
|
||||||
using Lumina.Excel.GeneratedSheets;
|
|
||||||
using Action = System.Action;
|
using Action = System.Action;
|
||||||
|
|
||||||
namespace MareSynchronos.Managers
|
namespace MareSynchronos.Managers
|
||||||
|
|
@ -86,6 +85,7 @@ namespace MareSynchronos.Managers
|
||||||
{
|
{
|
||||||
while (actionQueue.TryDequeue(out var action))
|
while (actionQueue.TryDequeue(out var action))
|
||||||
{
|
{
|
||||||
|
Logger.Debug("Execution action in queue: " + action.Method);
|
||||||
action();
|
action();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -263,12 +263,13 @@ namespace MareSynchronos.Managers
|
||||||
|
|
||||||
actionQueue.Enqueue(() =>
|
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)
|
foreach (var mod in modPaths)
|
||||||
{
|
{
|
||||||
Logger.Verbose(mod.Key + " => " + mod.Value);
|
Logger.Verbose(mod.Key + " => " + mod.Value);
|
||||||
}
|
}
|
||||||
_penumbraSetTemporaryMod.InvokeFunc("MareSynchronos", characterName, modPaths, manipulationData, 0);
|
_penumbraSetTemporaryMod.InvokeFunc("MareSynchronos", ret.Item2, modPaths, manipulationData, 0);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Authors></Authors>
|
<Authors></Authors>
|
||||||
<Company></Company>
|
<Company></Company>
|
||||||
<Version>0.3.11</Version>
|
<Version>0.3.12</Version>
|
||||||
<Description></Description>
|
<Description></Description>
|
||||||
<Copyright></Copyright>
|
<Copyright></Copyright>
|
||||||
<PackageProjectUrl>https://github.com/Penumbra-Sync/client</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/Penumbra-Sync/client</PackageProjectUrl>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue