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 Version: 0.0.1
Date: 26.04.2020 Date: 26.04.2020
Features: Features:

View File

@ -1,6 +1,6 @@
{ {
"name": "Baseless", "name": "Baseless",
"version":"0.0.1", "version": "0.0.2",
"title": "Baseless", "title": "Baseless",
"description": "Defines missing prototypes required to launch the game.", "description": "Defines missing prototypes required to launch the game.",
"author": "David Skrundz", "author": "David Skrundz",

View File

@ -22,6 +22,14 @@ if Baseless.RegisterIfNew(
) )
end 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 -- Requires at least one tile that is walkable and not minable
for _,tile in pairs(data.raw["tile"] or {}) do for _,tile in pairs(data.raw["tile"] or {}) do
if tile.minable == nil then if tile.minable == nil then
@ -41,7 +49,6 @@ Baseless.RegisterIfNew {
-- Deprecated prototypes -- Deprecated prototypes
Baseless.RegisterIfUnique { Baseless.RegisterIfUnique {
Baseless.Make.Entity("decorative", nil, {}),
Baseless.Make.Entity("leaf-particle", "leaf-particle-for-migration", {}), Baseless.Make.Entity("leaf-particle", "leaf-particle-for-migration", {}),
Baseless.Make.Entity("particle", "particle-for-migration", {}), Baseless.Make.Entity("particle", "particle-for-migration", {}),
Baseless.Make.Smoke("smoke", "smoke-for-migration", {}), Baseless.Make.Smoke("smoke", "smoke-for-migration", {}),