version
This commit is contained in:
parent
bdd4d896c2
commit
71ace13588
3 changed files with 6 additions and 4 deletions
|
|
@ -18,3 +18,4 @@ See changelog.txt
|
||||||
- [Thar0l](https://github.com/Thar0l) (ru)
|
- [Thar0l](https://github.com/Thar0l) (ru)
|
||||||
- [PlexPt](https://github.com/PlexPt) (zh\_CN)
|
- [PlexPt](https://github.com/PlexPt) (zh\_CN)
|
||||||
- [S3BA](https://github.com/S3BA-pl) (pl)
|
- [S3BA](https://github.com/S3BA-pl) (pl)
|
||||||
|
- [x2605](https://github.com/x2605) (ko)
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.5.6
|
Version: 0.5.6
|
||||||
Date: 2021-02-12
|
Date: 2021-02-22
|
||||||
Changes:
|
Features:
|
||||||
|
- ko locale, thanks to x2605
|
||||||
- ja locale updates thanks to Sakuro
|
- ja locale updates thanks to Sakuro
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.5.5
|
Version: 0.5.5
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@ end
|
||||||
function util.remove_prerequisite(technology_name, prerequisite)
|
function util.remove_prerequisite(technology_name, prerequisite)
|
||||||
local technology = data.raw.technology[technology_name]
|
local technology = data.raw.technology[technology_name]
|
||||||
local index = -1
|
local index = -1
|
||||||
if technology and data.raw.technology[prerequisite] then
|
if technology then
|
||||||
for i, prereq in pairs(technology.prerequisites) do
|
for i, prereq in pairs(technology.prerequisites) do
|
||||||
if prereq == prerequisite then
|
if prereq == prerequisite then
|
||||||
index = i
|
index = i
|
||||||
|
|
@ -558,7 +558,7 @@ function util.add_crafting_category(entity_type, entity, category)
|
||||||
if data.raw[entity_type][entity] then
|
if data.raw[entity_type][entity] then
|
||||||
for i, existing in pairs(data.raw[entity_type][entity].crafting_categories) do
|
for i, existing in pairs(data.raw[entity_type][entity].crafting_categories) do
|
||||||
if existing == category then
|
if existing == category then
|
||||||
log(entity.." not adding "..new.." -- duplicate")
|
log(entity.." not adding "..category.." -- duplicate")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue