1
0
mirror of https://github.com/veden/Rampant.git synced 2024-12-28 21:08:22 +02:00

increased migration chance be 5%

This commit is contained in:
Aaron Veden 2019-03-09 14:52:27 -08:00
parent 90af274ae3
commit 014f83dba0

View File

@ -101,7 +101,7 @@ function aiPlanning.planning(natives, evolution_factor, tick)
natives.state = AI_STATE_PEACEFUL
else
roll = mRandom()
if (roll < 0.70) then
if (roll < 0.65) then
natives.state = AI_STATE_AGGRESSIVE
elseif ((natives.enabledMigration) and (natives.expansion) and (roll < 0.75)) then
natives.state = AI_STATE_MIGRATING