Skip to content

Commit

Permalink
Updated swapped Death and Join/Leave Noti Perms
Browse files Browse the repository at this point in the history
The permissions for Death Notifications and Join/Leave Notifications are swapped around, this resolves the issue.
  • Loading branch information
cm8263 authored Feb 20, 2021
1 parent e8f4e1c commit 1677b4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vMenu/menus/MiscSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -537,11 +537,11 @@ private void CreateMenu()
menu.AddMenuItem(drawTime); // always allowed
if (IsAllowed(Permission.MSJoinQuitNotifs))
{
menu.AddMenuItem(deathNotifs);
menu.AddMenuItem(joinQuitNotifs);
}
if (IsAllowed(Permission.MSDeathNotifs))
{
menu.AddMenuItem(joinQuitNotifs);
menu.AddMenuItem(deathNotifs);
}
if (IsAllowed(Permission.MSNightVision))
{
Expand Down

0 comments on commit 1677b4a

Please sign in to comment.