Skip to content
Merged
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
2 changes: 1 addition & 1 deletion PyPP-Regen-New.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ $PyPPConfig = $PyPPPrevConfig.Replace('data.raw["bool-setting"]["pypp-dev-mode"]
$PyPPConfig = $PyPPConfig.Replace('data.raw["bool-setting"]["pypp-create-cache"].forced_value = false', 'data.raw["bool-setting"]["pypp-create-cache"].forced_value = true')
Set-Content -Path $PyPPConfigPath -Value $PyPPConfig -Encoding UTF8 -NoNewline

$FactorioArgs = "--mod-directory $FactorioModsPath --benchmark notafile" #Stand in for "load then exit"
$FactorioArgs = "--mod-directory $FactorioModsPath --start-server notafile" #Stand in for "load then exit"
$BaseMods = @(
"base",
"pypostprocessing",
Expand Down
2 changes: 1 addition & 1 deletion autotech.lua
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function auto_tech:run()
self:run_phase(self.determine_essential_technologies, "determining essential techs (11/12)")
self:run_phase(self.serialize_cache_file, "cache file output (12/12)")
end, "autotech")
error("Autotech completed successfully.")
log("Autotech completed successfully.")
end

function auto_tech:vanilla_massaging()
Expand Down