mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-13 12:14:17 +01:00
Fix fuckup.
This commit is contained in:
parent
992cdff58d
commit
125e5628ec
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ public readonly struct ModSaveGroup : ISavable
|
||||||
var serializer = new JsonSerializer { Formatting = Formatting.Indented };
|
var serializer = new JsonSerializer { Formatting = Formatting.Indented };
|
||||||
j.WriteStartObject();
|
j.WriteStartObject();
|
||||||
if (_groupIdx >= 0)
|
if (_groupIdx >= 0)
|
||||||
_group!.WriteJson(j, serializer);
|
_group!.WriteJson(j, serializer, _basePath);
|
||||||
else
|
else
|
||||||
SubMod.WriteModContainer(j, serializer, _defaultMod!, _basePath);
|
SubMod.WriteModContainer(j, serializer, _defaultMod!, _basePath);
|
||||||
j.WriteEndObject();
|
j.WriteEndObject();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue