Skip to content

Commit

Permalink
fixed access errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TomGrobbe committed May 10, 2018
1 parent 9b5b17f commit 4887b73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vMenu/CommonFunctions.cs
Expand Up @@ -169,15 +169,15 @@ public void DriveWander()
/// <summary>
/// Quit the current network session, but leaves you connected to the server so addons/resources are still streamed.
/// </summary>
private void QuitSession()
public void QuitSession()
{
NetworkSessionEnd(true, true);
}

/// <summary>
/// Quit the game after 5 seconds.
/// </summary>
private async void QuitGame()
public async void QuitGame()
{
Notify.Info("The game will exit in 5 seconds.", true, true);
Debug.WriteLine("Game will be terminated in 5 seconds, because the player used the Quit Game option in vMenu.");
Expand Down

0 comments on commit 4887b73

Please sign in to comment.