Make raiselocalevent not broadcast by default (#8998)
This commit is contained in:
@@ -61,7 +61,7 @@ namespace Content.Server.Nutrition.EntitySystems
|
||||
return;
|
||||
|
||||
var isHotEvent = new IsHotEvent();
|
||||
RaiseLocalEvent(targetEntity.Value, isHotEvent);
|
||||
RaiseLocalEvent(targetEntity.Value, isHotEvent, true);
|
||||
|
||||
if (!isHotEvent.IsHot)
|
||||
return;
|
||||
|
||||
@@ -101,7 +101,7 @@ namespace Content.Server.Nutrition.EntitySystems
|
||||
|
||||
if (solution.TotalVolume == FixedPoint2.Zero)
|
||||
{
|
||||
RaiseLocalEvent(uid, new SmokableSolutionEmptyEvent());
|
||||
RaiseLocalEvent(uid, new SmokableSolutionEmptyEvent(), true);
|
||||
}
|
||||
|
||||
if (inhaledSolution.TotalVolume == FixedPoint2.Zero)
|
||||
|
||||
Reference in New Issue
Block a user