1
0
mirror of https://github.com/veden/Rampant.git synced 2025-03-25 21:29:03 +02:00

see changlog

This commit is contained in:
Aaron Veden 2018-06-01 18:28:50 -07:00
parent fd62e8111a
commit bc664d470d
6 changed files with 17 additions and 11 deletions

View File

@ -217,10 +217,10 @@ function upgrade.attempt(natives)
game.surfaces[natives.activeSurface].print("Rampant - Version 0.16.22")
global.version = constants.VERSION_57
end
if (global.version < constants.VERSION_62) then
if (global.version < constants.VERSION_63) then
game.surfaces[natives.activeSurface].print("Rampant - Version 0.16.27")
global.version = constants.VERSION_62
game.surfaces[natives.activeSurface].print("Rampant - Version 0.16.28")
global.version = constants.VERSION_63
end

View File

@ -1,3 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.16.28
Date: 6. 1. 2018
Bugfixes:
- Fixed new enemies setting units and worms to different numbers for variations or tiers causing startup crash
---------------------------------------------------------------------------------------------------
Version: 0.16.27
Date: 5. 23. 2018

View File

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

View File

@ -21,7 +21,7 @@ constants.VERSION_41 = 41
constants.VERSION_44 = 44
constants.VERSION_51 = 51
constants.VERSION_57 = 57
constants.VERSION_62 = 62
constants.VERSION_63 = 63
-- misc

View File

@ -688,8 +688,8 @@ function spawner.addFaction()
[10] = 0.0021
}
},
SPAWNER_UNIT_VARIATIONS,
SPAWNER_UNIT_TIERS
SPAWNER_WORM_VARIATIONS,
SPAWNER_WORM_TIERS
)
-- spawner units
@ -916,8 +916,8 @@ function spawner.addFaction()
}
},
SPAWNER_UNIT_VARIATIONS,
SPAWNER_UNIT_TIERS
math.max(SPAWNER_UNIT_VARIATIONS,SPAWNER_WORM_VARIATIONS),
math.max(SPAWNER_UNIT_TIERS,SPAWNER_WORM_TIERS)
)

View File

@ -582,8 +582,8 @@ buildUnits(
[10] = 0.0021
}
},
WASP_UNIT_VARIATIONS,
WASP_UNIT_TIERS
WASP_WORM_VARIATIONS,
WASP_WORM_TIERS
)