Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
veden committed Oct 29, 2017
1 parent 0250901 commit f6d9c5d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Upgrade.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion libs/Constants.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f6d9c5d

Please sign in to comment.