mirror of
https://github.com/Wyrrrd/ModuleRequester_RecipeOverride.git
synced 2026-03-26 00:19:49 +01:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2808aae101 | ||
|
|
63049c6372 | ||
|
|
cdc305e047 | ||
|
|
3ec7a3cf10 | ||
|
|
54cd8d7a04 | ||
|
|
89af2022cc | ||
|
|
44d1154984 |
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
*.zip
|
||||
@@ -1,5 +1,5 @@
|
||||
# ModuleRequester_RecipeOverride
|
||||

|
||||
# Module Requester Recipe Override
|
||||
<img src=https://raw.githubusercontent.com/Wyrrrd/ModuleRequester_RecipeOverride/master/thumbnail.png width="128" height="128">
|
||||
|
||||
(Please note: This is a quick and dirty port to 0.18. As soon as the original is ported to 0.18, this will be removed.)
|
||||
|
||||
@@ -8,4 +8,4 @@ Description:
|
||||
|
||||
Credit:
|
||||
- Thanks to [Trylobot](https://mods.factorio.com/user/trylobot) for the [original mod](https://mods.factorio.com/mod/module-requestor-recipe-override).
|
||||
- Thanks to [shanemadden](https://mods.factorio.com/user/shanemadden) for [Module Requesters](https://mods.factorio.com/mod/module-requestor).
|
||||
- Thanks to [shanemadden](https://mods.factorio.com/user/shanemadden) for [Module Requesters](https://mods.factorio.com/mod/module-requestor).
|
||||
|
||||
@@ -1,9 +1,25 @@
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.1.0
|
||||
Date: 2020-12-02
|
||||
Changes:
|
||||
- Version bump for base game 1.1
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.18.2
|
||||
Date: 22. 2. 2020
|
||||
Changes:
|
||||
- Matched changelog file format to what Factorio expects
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.18.1
|
||||
Date: 20. 2. 2020
|
||||
Bugfixes:
|
||||
- Fixed wrong type check (item/recipe)
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.18.0
|
||||
Date: 20. 2. 2020
|
||||
Changes:
|
||||
- Ported to 0.18
|
||||
- Shortened code
|
||||
- Renamed mod
|
||||
- Renamed mod for upload in mod portal
|
||||
- Matched versioning to Factorio versions
|
||||
---------------------------------------------------------------------------------------------------
|
||||
|
||||
Optimisations:
|
||||
- Shortened code from setting the whole recipe to just setting the ingredients
|
||||
8
data.lua
8
data.lua
@@ -1,12 +1,12 @@
|
||||
if data.raw.item["speed-module-requestor"] then
|
||||
if data.raw.recipe["speed-module-requestor"] then
|
||||
data.raw.recipe["speed-module-requestor"].ingredients = {}
|
||||
end
|
||||
if data.raw.item["efficiency-module-requestor"] then
|
||||
if data.raw.recipe["efficiency-module-requestor"] then
|
||||
data.raw.recipe["efficiency-module-requestor"].ingredients = {}
|
||||
end
|
||||
if data.raw.item["productivity-module-requestor"] then
|
||||
if data.raw.recipe["productivity-module-requestor"] then
|
||||
data.raw.recipe["productivity-module-requestor"].ingredients = {}
|
||||
end
|
||||
if data.raw.item["custom-module-requestor"] then
|
||||
if data.raw.recipe["custom-module-requestor"] then
|
||||
data.raw.recipe["custom-module-requestor"].ingredients = {}
|
||||
end
|
||||
@@ -1,13 +1,12 @@
|
||||
{
|
||||
"name": "ModuleRequester_RecipeOverride",
|
||||
"version": "0.18.0",
|
||||
"version": "1.1.0",
|
||||
"title": "Module Requester Recipe Override",
|
||||
"author": "Wyrrrd",
|
||||
"homepage": "",
|
||||
"factorio_version": "0.18",
|
||||
"factorio_version": "1.1",
|
||||
"dependencies": [
|
||||
"base >= 0.18",
|
||||
"module-requestor >= 0.18.0"
|
||||
"base >= 1.1.0",
|
||||
"module-requestor >= 1.1.0"
|
||||
],
|
||||
"description": "Removes cost for crafting Module Requesters"
|
||||
}
|
||||
Reference in New Issue
Block a user