Skip to content

Commit

Permalink
add changelog entry and small type improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
zzh8829 committed Dec 27, 2024
1 parent 553c866 commit 0aa00d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Yafc.Parser/Data/FactorioDataDeserializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ private void DeserializeFluid(LuaTable table, ErrorCollector _) {
}
}
else if (type == "research-progress" && table.Get("research_item", out string? researchItem)) {
return GetObject<Item, Item>(researchItem);
return GetObject<Item>(researchItem);
}
}
return null;
Expand Down
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Date:
- (SA) Tree seeds used by the agricultural tower no longer appear twice in the Dependency Explorer.
- Milestone analysis got slower in 2.4.0; increase its speed.
- (SA) Recycling recipes are now considered special, like barrelling/voiding.
- Fixed recipe parsing for the ResearchProgressProduct output type.
----------------------------------------------------------------------------------------------------------------------
Version: 2.4.0
Date: November 21st 2024
Expand Down

0 comments on commit 0aa00d0

Please sign in to comment.