Skip to content

Commit ac708f0

Browse files
committed
[rrdm] bump for Factorio 1.1, add thumbnail
1 parent 4abd530 commit ac708f0

5 files changed

Lines changed: 18 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Factorio Mods
22

3-
Here you find mods that I wrote for the game [Factorio](https://factorio.com/) utilizing their [LUA APIs](https://lua-api.factorio.com/latest/).
3+
Here you find mods that I wrote for the game [Factorio](https://factorio.com/) utilizing their [Lua APIs](https://lua-api.factorio.com/latest/).
44

55
They can be downloaded directly from the [Mod Portal](https://mods.factorio.com/user/desto)
66
or the [Releases](https://github.com/desto-git/factorio-mods/releases) section of GitHub.
7+
8+
Note that I am not the creator of [Steamed](https://mods.factorio.com/mod/Steamed), but a collaborator, so it isn't listed on my mod page.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---------------------------------------------------------------------------------------------------
2+
Version: 1.0.1
3+
Date: 2023-03-26
4+
Changes:
5+
- Update to Factorio 1.1
6+
- Add thumbnail
7+
---------------------------------------------------------------------------------------------------
8+
Version: 1.0.0
9+
Date: 2020-08-27
10+
Features:
11+
- Initial release
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "resource-richness-distance-multiplier",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"title": "Resource Richness Distance Multiplier",
55
"author": "desto",
66
"homepage": "https://github.com/desto-git/factorio-rrdm",
77
"description": "Adjust the richness of resource patches outside the starting area.",
88
"dependencies": ["base"],
9-
"factorio_version": "1.0"
9+
"factorio_version": "1.1"
1010
}

resource-richness-distance-multiplier/lualib/resource-autoplace.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ if not resource_autoplace__patch_metasets then
3636
resource_autoplace__patch_metasets =
3737
{
3838
regular = new_patch_metaset{ count_expression_name = "regular-resource-patch-set-count" },
39-
starting = new_patch_metaset{ count_expression_name = "starting-resource-patch-set-count" },
39+
starting = new_patch_metaset{ count_expression_name = "starting-resource-patch-set-count" }
4040
}
4141
end
4242

@@ -45,7 +45,7 @@ local starting_patch_metaset = resource_autoplace__patch_metasets.starting
4545

4646
-- Indicate that a patch set exists and optionally that it also needs a separate starting patch set.
4747
-- Call this to initialize patch sets' indexes in a more deterministic order
48-
-- (see demo-resources.lua for an example) before calling resource_autoplace_settings.
48+
-- (see resources.lua for an example) before calling resource_autoplace_settings.
4949
local function initialize_patch_set(patch_set_name, has_starting_area_placement)
5050
regular_patch_metaset:get_patch_set_index(patch_set_name)
5151
if has_starting_area_placement then
7.06 KB
Loading

0 commit comments

Comments
 (0)