Make raiselocalevent not broadcast by default (#8998)

This commit is contained in:
metalgearsloth
2022-06-22 09:53:41 +10:00
committed by GitHub
parent 360a6b8b00
commit 8905996cfc
76 changed files with 165 additions and 165 deletions

View File

@@ -181,7 +181,7 @@ namespace Content.Server.Mind
var message = new RoleAddedEvent(role);
if (OwnedEntity != null)
{
IoCManager.Resolve<IEntityManager>().EventBus.RaiseLocalEvent(OwnedEntity.Value, message);
IoCManager.Resolve<IEntityManager>().EventBus.RaiseLocalEvent(OwnedEntity.Value, message, true);
}
return role;
@@ -207,7 +207,7 @@ namespace Content.Server.Mind
if (OwnedEntity != null)
{
IoCManager.Resolve<IEntityManager>().EventBus.RaiseLocalEvent(OwnedEntity.Value, message);
IoCManager.Resolve<IEntityManager>().EventBus.RaiseLocalEvent(OwnedEntity.Value, message, true);
}
}
@@ -411,7 +411,7 @@ namespace Content.Server.Mind
var entities = IoCManager.Resolve<IEntityManager>();
entities.RemoveComponent<VisitingMindComponent>(oldVisitingEnt);
entities.EventBus.RaiseLocalEvent(oldVisitingEnt, new MindUnvisitedMessage());
entities.EventBus.RaiseLocalEvent(oldVisitingEnt, new MindUnvisitedMessage(), true);
}
public bool TryGetSession([NotNullWhen(true)] out IPlayerSession? session)

View File

@@ -42,7 +42,7 @@ public sealed class MindSystem : EntitySystem
return;
mind.Mind = value;
RaiseLocalEvent(uid, new MindAddedMessage());
RaiseLocalEvent(uid, new MindAddedMessage(), true);
}
/// <summary>
@@ -56,7 +56,7 @@ public sealed class MindSystem : EntitySystem
return;
if (!Deleted(uid))
RaiseLocalEvent(uid, new MindRemovedMessage());
RaiseLocalEvent(uid, new MindRemovedMessage(), true);
mind.Mind = null;
}