1
0
mirror of https://github.com/veden/Rampant.git synced 2025-01-26 03:20:07 +02:00

updated version

This commit is contained in:
Aaron Veden 2017-10-29 12:19:19 -07:00
parent 02509019b9
commit f6d9c5d02f
4 changed files with 8 additions and 5 deletions

View File

@ -61,6 +61,9 @@ Configure Options not in game menu:
# Version History
0.15.22 -
- Contribution - Martok88, Improvement: Added optional attack wave message per player
0.15.21 -
- Fixed: Added check for nil'ed itemCollection event (https://forums.factorio.com/viewtopic.php?f=94&t=31445&start=200#p302631)
- Fixed: Item Collector deconstruction not pulling items before destroying chest

View File

@ -170,10 +170,10 @@ function upgrade.attempt(natives, world)
game.surfaces[1].print("Rampant - Version 0.15.18")
global.version = constants.VERSION_28
end
if (global.version < constants.VERSION_31) then
if (global.version < constants.VERSION_32) then
game.surfaces[1].print("Rampant - Version 0.15.21")
global.version = constants.VERSION_31
game.surfaces[1].print("Rampant - Version 0.15.22")
global.version = constants.VERSION_32
end
return starting ~= global.version, natives, world
end

View File

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

View File

@ -15,7 +15,7 @@ constants.VERSION_25 = 25
constants.VERSION_26 = 26
constants.VERSION_27 = 27
constants.VERSION_28 = 28
constants.VERSION_31 = 31
constants.VERSION_32 = 32
-- misc