fix for the fix of ipc manager to create temp collections, bump version

This commit is contained in:
Stanley Dimant
2022-09-06 14:03:56 +02:00
parent 100aba0900
commit 35ebaed80c
2 changed files with 5 additions and 4 deletions

View File

@@ -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);
});
}

View File

@@ -3,7 +3,7 @@
<PropertyGroup>
<Authors></Authors>
<Company></Company>
<Version>0.3.11</Version>
<Version>0.3.12</Version>
<Description></Description>
<Copyright></Copyright>
<PackageProjectUrl>https://github.com/Penumbra-Sync/client</PackageProjectUrl>