mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Maybe fix issue with individual assignments sometimes getting eaten.
This commit is contained in:
parent
2d007c189f
commit
7cdd8656ef
2 changed files with 2 additions and 3 deletions
|
|
@ -1 +1 @@
|
||||||
Subproject commit 34e3299f28c5e1d2b7d071ba8a3f851f5d1fa057
|
Subproject commit ac0710e9a116bec8633f3dcde2c9b6e38dffaaa9
|
||||||
|
|
@ -132,8 +132,7 @@ public sealed partial class IndividualCollections
|
||||||
};
|
};
|
||||||
return table.Where(kvp => kvp.Value == name)
|
return table.Where(kvp => kvp.Value == name)
|
||||||
.Select(kvp => manager.CreateIndividualUnchecked(identifier.Type, identifier.PlayerName, identifier.HomeWorld.Id,
|
.Select(kvp => manager.CreateIndividualUnchecked(identifier.Type, identifier.PlayerName, identifier.HomeWorld.Id,
|
||||||
identifier.Kind,
|
identifier.Kind, kvp.Key)).ToArray();
|
||||||
kvp.Key)).ToArray();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return identifier.Type switch
|
return identifier.Type switch
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue