More IPC work
Additional checks to make sure profile update event is not getting sent when editor and default profile is involved Selected default profile can no longer be changed if profile set as default is enabled Fixed "Limit to my creatures" not ignoring objects with IdentifierType != Owned IPC test tab no longer initializes IPC if debug mode is disabled Fixed incorrect warning priority in plugin state control Some slight text changes
This commit is contained in:
@@ -129,8 +129,8 @@ public unsafe sealed class ArmatureManager : IDisposable
|
||||
foreach (var profile in _profileManager.GetEnabledProfilesByActor(identifier))
|
||||
{
|
||||
if (profile.LimitLookupToOwnedObjects &&
|
||||
identifier.Type == IdentifierType.Owned &&
|
||||
identifier.PlayerName != _objectManager.PlayerData.Identifier.PlayerName)
|
||||
(identifier.Type != IdentifierType.Owned ||
|
||||
identifier.PlayerName != _objectManager.PlayerData.Identifier.PlayerName))
|
||||
continue;
|
||||
|
||||
return profile;
|
||||
|
||||
Reference in New Issue
Block a user