Skip to content

Commit

Permalink
added more notifications/subtitles for certain actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TomGrobbe committed May 10, 2018
1 parent 63d7667 commit c7f75cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vMenu/CommonFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,10 @@ public async void TeleportToWp()
pos.Z = 150f;
await TeleportToCoords(pos);
}
else
{
Notify.Error("You need to set a waypoint first!");
}
}
#endregion

Expand Down
2 changes: 2 additions & 0 deletions vMenu/menus/WeaponOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -795,10 +795,12 @@ private void CreateMenu()
if (item == noReload)
{
NoReload = _checked;
Subtitle.Custom($"No reload is now {(_checked ? "enabled" : "disabled")}.");
}
else if (item == unlimitedAmmo)
{
UnlimitedAmmo = _checked;
Subtitle.Custom($"Unlimited ammo is now {(_checked ? "enabled" : "disabled")}.");
}
};
#endregion
Expand Down

0 comments on commit c7f75cd

Please sign in to comment.