Skip to content

Commit

Permalink
fixed retreat issue
Browse files Browse the repository at this point in the history
  • Loading branch information
veden committed Sep 14, 2016
1 parent b2e4b3e commit d2f830c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,12 @@ Base Expansion

# Version History

0.0.9 - fixed ai created bases not being counted in logic
0.13.1 - fixed ai created bases not being counted in logic
Optimization to offset ai created bases scanning

0.0.8 - fixed retreat oscillations (https://forums.factorio.com/viewtopic.php?f=94&t=31445&start=10#p198750)
fixed retreat oscillations (https://forums.factorio.com/viewtopic.php?f=94&t=31445&start=10#p198750)
added scaling for kamikaze attack (https://forums.factorio.com/viewtopic.php?f=94&t=31445&start=10#p199401)
increased squad size max from 125 to 150, (larger waves)

0.0.7 - updated for 0.14

0.0.6 - some speed improvements
MP is working (https://github.com/veden/Rampant/issues/1)

Expand Down
6 changes: 3 additions & 3 deletions info.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name" : "Rampant",
"factorio_version" : "0.14",
"version" : "0.0.9",
"factorio_version" : "0.13",
"version" : "0.13.1",
"title" : "Rampant AI",
"author" : "Veden",
"homepage" : "https://forums.factorio.com/viewtopic.php?f=94&t=31445",
"description" : "Improves the enemies tactics by using potential fields/pheromones allowing probing of defenses, retreats, and player hunting",
"dependencies" : ["base >= 0.13.17", "? bobenemies", "? Natural_Evolution_Enemies"]
}
}
2 changes: 1 addition & 1 deletion libs/UnitGroupUtils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function unitGroupUtils.membersToSquad(squad, members, overwriteGroup)
if member.valid and (overwriteGroup or (not overwriteGroup and (member.unit_group == nil))) then
member.set_command({ type = defines.command.group,
group = squad.group,
distraction = defines.distraction.by_anything })
distraction = defines.distraction.none })
end
end
end
Expand Down
6 changes: 3 additions & 3 deletions make.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,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 zipModFolder "/home/veden/.factorio/mods/")
(define zipModFolder "/data/games/factorio13.20/mods/")
(define configuration (call-with-input-file "info.json"
(lambda (port)
(string->jsexpr (port->string port)))))
Expand Down Expand Up @@ -74,6 +74,6 @@
(copyDirectory "prototypes" modFolder)))

; (copyFiles modFolder)
; (copyFiles zipModFolder)
(makeZip)
(copyFiles zipModFolder)
; (makeZip)
)

0 comments on commit d2f830c

Please sign in to comment.