1
0
mirror of https://github.com/Wyrrrd/ModuleRequester_RecipeOverride.git synced 2026-03-25 16:09:51 +01:00

9 Commits

Author SHA1 Message Date
Wyrrrd
d743aa83b7 Add vscode to gitignore 2023-12-21 10:37:25 +01:00
Wyrrrd
294f51b547 Removed q&d note 2020-12-02 19:21:03 +01:00
Wyrrrd
2808aae101 Create .gitignore 2020-12-02 19:16:45 +01:00
Wyrrrd
63049c6372 Preparation for update 2020-12-02 19:16:13 +01:00
Wyrrrd
cdc305e047 Fixed changelog format 2020-03-07 10:53:59 +01:00
Wyrrrd
3ec7a3cf10 Update README.md
Changed thumbnail size
2020-02-27 11:36:03 +01:00
Wyrrrd
54cd8d7a04 Complementary file(s) format improvements 2020-02-22 12:12:28 +01:00
Wyrrrd
89af2022cc Update README.md
Replaced name with title
2020-02-20 16:48:10 +00:00
Wyrrrd
44d1154984 Fixed wrong type check
Checked for item instead of recipe
2020-02-20 12:24:11 +01:00
5 changed files with 32 additions and 17 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.zip
.vscode/*

View File

@@ -1,7 +1,5 @@
# ModuleRequester_RecipeOverride # Module Requester Recipe Override
![mod thumbnail](https://raw.githubusercontent.com/Wyrrrd/ModuleRequester_RecipeOverride/master/thumbnail.png) <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.)
Description: Description:
- Overrides the recipes from Module Requestor so they are free. Still has to be researched. - Overrides the recipes from Module Requestor so they are free. Still has to be researched.

View File

@@ -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 Version: 0.18.0
Date: 20. 2. 2020 Date: 20. 2. 2020
Changes: Changes:
- Ported to 0.18 - Ported to 0.18
- Shortened code - Renamed mod for upload in mod portal
- Renamed mod
- Matched versioning to Factorio versions - Matched versioning to Factorio versions
---------------------------------------------------------------------------------------------------
Optimisations:
- Shortened code from setting the whole recipe to just setting the ingredients

View File

@@ -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 = {} data.raw.recipe["speed-module-requestor"].ingredients = {}
end end
if data.raw.item["efficiency-module-requestor"] then if data.raw.recipe["efficiency-module-requestor"] then
data.raw.recipe["efficiency-module-requestor"].ingredients = {} data.raw.recipe["efficiency-module-requestor"].ingredients = {}
end end
if data.raw.item["productivity-module-requestor"] then if data.raw.recipe["productivity-module-requestor"] then
data.raw.recipe["productivity-module-requestor"].ingredients = {} data.raw.recipe["productivity-module-requestor"].ingredients = {}
end end
if data.raw.item["custom-module-requestor"] then if data.raw.recipe["custom-module-requestor"] then
data.raw.recipe["custom-module-requestor"].ingredients = {} data.raw.recipe["custom-module-requestor"].ingredients = {}
end end

View File

@@ -1,13 +1,12 @@
{ {
"name": "ModuleRequester_RecipeOverride", "name": "ModuleRequester_RecipeOverride",
"version": "0.18.0", "version": "1.1.0",
"title": "Module Requester Recipe Override", "title": "Module Requester Recipe Override",
"author": "Wyrrrd", "author": "Wyrrrd",
"homepage": "", "factorio_version": "1.1",
"factorio_version": "0.18",
"dependencies": [ "dependencies": [
"base >= 0.18", "base >= 1.1.0",
"module-requestor >= 0.18.0" "module-requestor >= 1.1.0"
], ],
"description": "Removes cost for crafting Module Requesters" "description": "Removes cost for crafting Module Requesters"
} }