From d46a7dd1f1c67862f4b9fafac2c84db410c39957 Mon Sep 17 00:00:00 2001 From: veden Date: Wed, 14 Sep 2016 13:13:35 -0700 Subject: [PATCH 1/2] reduce freqency of rabid --- libs/AIBuilding.lua | 2 +- make.rkt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/AIBuilding.lua b/libs/AIBuilding.lua index 720f6a8..72829a4 100644 --- a/libs/AIBuilding.lua +++ b/libs/AIBuilding.lua @@ -129,7 +129,7 @@ function aiBuilding.formSquads(regionMap, surface, natives, chunk, evolution_fac local squad = createSquad(squadPosition, surface, natives) - if (math.random() < 0.05) then + if (math.random() < 0.03) then squad.rabid = true end diff --git a/make.rkt b/make.rkt index 521498b..b05dce0 100644 --- a/make.rkt +++ b/make.rkt @@ -5,7 +5,7 @@ ;(define modFolder "C:/Users/veden/AppData/Roaming/Factorio/mods/") ;(define zipModFolder "C:/Program Files/Factorio_0.14.1/mods/") - (define modFolder "/home/veden/.factorio/mods/") + (define modFolder "/data/games/factorio13.20/mods/") (define zipModFolder "/data/games/factorio13.20/mods/") (define configuration (call-with-input-file "info.json" (lambda (port) @@ -73,7 +73,7 @@ (copyDirectory "graphics" modFolder) (copyDirectory "prototypes" modFolder))) - (copyFiles modFolder) +; (copyFiles modFolder) ; (copyFiles zipModFolder) -; (makeZip) + (makeZip) ) From 9bc52224d7d031dc43b353bb85b03f40eab1f9f8 Mon Sep 17 00:00:00 2001 From: veden Date: Wed, 14 Sep 2016 13:16:24 -0700 Subject: [PATCH 2/2] updated readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 16dad7e..721987b 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,12 @@ Base Expansion 0.14.2 - adjusted unit retreat group size threshold adjusted squad attack pattern (https://forums.factorio.com/viewtopic.php?f=94&t=31445&start=20#p203861) __ + Fixed migration issue 0.14.1 - fixed ai created bases not being counted in logic Optimization to offset ai created bases scanning -0.13.2 = 0.14.2 +0.13.2 = 0.14.2 0.13.1 - backported 0.14 factorio version to 0.13 factorio version