Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CodeWalker/ExploreForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,9 @@ public void ConfigureGame()
var result = GTAFolder.UpdateGTAFolder(false, false);
if (result)
{
MessageBox.Show("Please restart CodeWalker to use the new folder.");
MessageBox.Show("CodeWalker will now restart.");
Application.Restart();
Environment.Exit(0);
}
}

Expand Down
4 changes: 3 additions & 1 deletion CodeWalker/WorldForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7029,7 +7029,9 @@ private void ToolsMenuConfigureGame_Click(object sender, EventArgs e)
var result = GTAFolder.UpdateGTAFolder(false, false);
if (result)
{
MessageBox.Show("Please restart CodeWalker to use the new folder.");
MessageBox.Show("CodeWalker will now restart.");
Application.Restart();
Environment.Exit(0);
}
}

Expand Down