1
0
mirror of https://github.com/veden/Rampant.git synced 2025-02-05 13:14:51 +02:00

see changelog

This commit is contained in:
Aaron Veden 2019-04-21 17:29:32 -07:00
parent ec3e9c674c
commit bdab152887
4 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.17.21
Date: 4. 21. 2019
Bugfixes:
- Fixed 1 and 2 levels of biters instantly spawning due to 0 spawn time modifier
---------------------------------------------------------------------------------------------------
Version: 0.17.20
Date: 4. 19. 2019

View File

@ -1,7 +1,7 @@
{
"name" : "Rampant",
"factorio_version" : "0.17",
"version" : "0.17.20",
"version" : "0.17.21",
"title" : "Rampant",
"author" : "Veden",
"homepage" : "https://forums.factorio.com/viewtopic.php?f=94&t=31445",

View File

@ -346,8 +346,8 @@ local function addUnitDefaults(template, upgrades)
{
type = "attribute",
name = "spawningTimeModifer",
[1] = 0,
[2] = 0,
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 2,
[5] = 3,
@ -604,8 +604,8 @@ local function addUnitDefaults(template, upgrades)
{
type = "attribute",
name = "spawningTimeModifer",
[1] = 0,
[2] = 0,
[1] = 1,
[2] = 1,
[3] = 1,
[4] = 2,
[5] = 2,

View File

@ -227,7 +227,7 @@ function biterFunctions.makeBiter(name, biterAttributes, biterAttack, biterResis
vision_distance = biterAttributes.vision or 30,
movement_speed = biterAttributes.movement,
loot = biterAttributes.loot,
spawning_time_modifier = biterAttributes.spawningTimeModifer or 0,
spawning_time_modifier = biterAttributes.spawningTimeModifer or nil,
distance_per_frame = biterAttributes.distancePerFrame or 0.1,
pollution_to_join_attack = biterAttributes.pollutionToAttack or 200,
distraction_cooldown = biterAttributes.distractionCooldown or 300,
@ -272,7 +272,7 @@ function biterFunctions.makeSpitter(name, biterAttributes, biterAttack, biterRes
loot = biterAttributes.loot,
vision_distance = biterAttributes.vision or 30,
movement_speed = biterAttributes.movement,
spawning_time_modifier = biterAttributes.spawningTimeModifer or 0,
spawning_time_modifier = biterAttributes.spawningTimeModifer or nil,
distance_per_frame = biterAttributes.distancePerFrame or 0.1,
pollution_to_join_attack = biterAttributes.pollutionToAttack or 200,
distraction_cooldown = biterAttributes.distractionCooldown or 300,