10 lines
284 B
Lua
10 lines
284 B
Lua
|
-- Force a migrants event in next 10 ticks.
|
||
|
|
||
|
df.global.timed_events:insert('#',{
|
||
|
new = true,
|
||
|
type = df.timed_event_type.Migrants,
|
||
|
season = df.global.cur_season,
|
||
|
season_ticks = df.global.cur_season_tick+1,
|
||
|
entity = df.historical_entity.find(df.global.ui.civ_id)
|
||
|
})
|