From 60c11e4d3db7575f9a421c21fc2ff2f588c6db32 Mon Sep 17 00:00:00 2001 From: David Skrundz Date: Tue, 11 Aug 2020 16:29:57 -0600 Subject: [PATCH] Update to 0.18.47 --- changelog.txt | 5 +++++ info.json | 10 +++++----- prototypes/required.lua | 9 ++++++++- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index e1b57a1..e0e6d6b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 0.0.2 +Date: 11.08.2020 + Features: + - Support 0.18.47 prototype changes +--------------------------------------------------------------------------------------------------- Version: 0.0.1 Date: 26.04.2020 Features: diff --git a/info.json b/info.json index 6da5f7a..c53aae2 100644 --- a/info.json +++ b/info.json @@ -1,9 +1,9 @@ { - "name":"Baseless", - "version":"0.0.1", - "title":"Baseless", - "description":"Defines missing prototypes required to launch the game.", - "author":"David Skrundz", + "name": "Baseless", + "version": "0.0.2", + "title": "Baseless", + "description": "Defines missing prototypes required to launch the game.", + "author": "David Skrundz", "contact": "david@skrundz.ca", "homepage": "https://github.com/DavidSkrundz/Baseless", "factorio_version": "0.18", diff --git a/prototypes/required.lua b/prototypes/required.lua index f2d0ba1..0d790d0 100644 --- a/prototypes/required.lua +++ b/prototypes/required.lua @@ -22,6 +22,14 @@ if Baseless.RegisterIfNew( ) end +if Baseless.RegisterIfNew( + Baseless.Make.ItemSubGroup("fluid", "dummy-item-group", {}) +) then + Baseless.RegisterIfNew( + Baseless.Make.ItemGroup() + ) +end + -- Requires at least one tile that is walkable and not minable for _,tile in pairs(data.raw["tile"] or {}) do if tile.minable == nil then @@ -41,7 +49,6 @@ Baseless.RegisterIfNew { -- Deprecated prototypes Baseless.RegisterIfUnique { - Baseless.Make.Entity("decorative", nil, {}), Baseless.Make.Entity("leaf-particle", "leaf-particle-for-migration", {}), Baseless.Make.Entity("particle", "particle-for-migration", {}), Baseless.Make.Smoke("smoke", "smoke-for-migration", {}),