Update to 0.18.47
This commit is contained in:
parent
4ed9aca3b1
commit
60c11e4d3d
|
@ -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:
|
||||||
|
|
10
info.json
10
info.json
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"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",
|
||||||
"contact": "david@skrundz.ca",
|
"contact": "david@skrundz.ca",
|
||||||
"homepage": "https://github.com/DavidSkrundz/Baseless",
|
"homepage": "https://github.com/DavidSkrundz/Baseless",
|
||||||
"factorio_version": "0.18",
|
"factorio_version": "0.18",
|
||||||
|
|
|
@ -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", {}),
|
||||||
|
|
Loading…
Reference in New Issue