Allow IdentityBlocker partial coverage (#24741)

* Allow IdentityBlocker partial coverage

* rename to TotalCoverage
This commit is contained in:
themias
2024-01-30 22:49:19 -05:00
committed by GitHub
parent bd46d7cc8a
commit d75f6c3db4
5 changed files with 35 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
using Content.Shared.Actions;
using Content.Shared.Actions;
using Content.Shared.Clothing.Components;
using Content.Shared.Inventory;
using Content.Shared.Inventory.Events;
@@ -68,6 +68,6 @@ public sealed class MaskSystem : EntitySystem
RaiseLocalEvent(uid, ref maskEv);
var wearerEv = new WearerMaskToggledEvent(mask.IsToggled);
RaiseLocalEvent(uid, ref wearerEv);
RaiseLocalEvent(wearer, ref wearerEv);
}
}