Update to 0.18.47

This commit is contained in:
David Skrundz 2020-08-11 16:29:57 -06:00
parent 4ed9aca3b1
commit 60c11e4d3d
No known key found for this signature in database
GPG Key ID: 9A0FA0614CE9422E
3 changed files with 18 additions and 6 deletions

View File

@ -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:

View File

@ -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",

View File

@ -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", {}),