This commit is contained in:
Brevven 2022-02-21 23:30:33 -08:00
parent bdd4d896c2
commit 71ace13588
3 changed files with 6 additions and 4 deletions

View file

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

View file

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

View file

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