debug saves in example mod build script

This commit is contained in:
Ell 2023-04-09 15:43:43 +02:00
parent bd006fed3a
commit 7493d4b896

View file

@ -29,7 +29,7 @@ Task("Run").IsDependentOn("CopyToMods").Does(() => {
// start the tiny life process
var exeDir = System.IO.File.ReadAllText($"{tinyLifeDir}/GameDir");
var process = Process.Start(new ProcessStartInfo($"{exeDir}/Tiny Life") {
Arguments = "-v --skip-splash --skip-preloads",
Arguments = "-v --skip-splash --skip-preloads --debug-saves",
CreateNoWindow = true
});