mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
791 B
C#
21 lines
791 B
C#
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class ConfirmUpdateOfExistingInstall : ConfirmationIntervention
|
|
{
|
|
public AbsolutePath OutputFolder { get; set; }
|
|
public string ModListName { get; set; } = string.Empty;
|
|
|
|
public override string ShortDescription { get; } = "Do you want to update existing files?";
|
|
|
|
public override string ExtendedDescription
|
|
{
|
|
get =>
|
|
$@"There appears to be a modlist already installed in the output folder. If you continue with the install,
|
|
Any files that exist in {OutputFolder} will be changed to match the files found in the {ModListName} modlist. Custom settings
|
|
will be reverted, but saved games will not be deleted. Are you sure you wish to continue?";
|
|
}
|
|
}
|
|
}
|