Skip to content

Commit

Permalink
fix voice mask
Browse files Browse the repository at this point in the history
  • Loading branch information
Fansana committed Oct 27, 2024
1 parent f9a6d34 commit dcbbf03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/VoiceMask/VoiceMaskSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private void OnMaskToggled(Entity<VoiceMaskComponent> ent, ref WearerMaskToggled

private void OpenUI(EntityUid player)
{
if (!_uiSystem.IsUiOpen(player, VoiceMaskUIKey.Key))
if (_uiSystem.IsUiOpen(player, VoiceMaskUIKey.Key))
return;

_uiSystem.OpenUi(player, VoiceMaskUIKey.Key, player);
Expand Down

0 comments on commit dcbbf03

Please sign in to comment.