Penumbra IPC change test

This commit is contained in:
2025-09-01 18:37:44 +02:00
parent c4d1f427cd
commit 0fde8dc00f
3 changed files with 7 additions and 5 deletions

View File

@@ -216,7 +216,9 @@ public sealed class IpcCallerPenumbra : DisposableMediatorSubscriberBase, IIpcCa
return await _dalamudUtil.RunOnFrameworkThread(() =>
{
var collName = "Namazu_" + uid;
var collId = _penumbraCreateNamedTemporaryCollection.Invoke(collName);
// I'm assuming the identity penumbra wants is what the calling plugin is
// we'll have to see if I'm correct
_penumbraCreateNamedTemporaryCollection.Invoke("NamazuSync", collName, out var collId);
logger.LogTrace("Creating Temp Collection {collName}, GUID: {collId}", collName, collId);
return collId;