Skip to content

Commit

Permalink
bug: fix crash when custom logger is provided in the api
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeFwd committed Oct 24, 2024
1 parent c0c540d commit ae70d14
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Bannerlord.ExpandedTemplate.Integration/SubModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public SubModule()
_loggerFactory = new ConsoleLoggerFactory();
}

public SubModule(ILoggerFactory loggerFactory)
public SubModule(ILoggerFactory loggerFactory) : this()
{
_loggerFactory = loggerFactory;
}
Expand Down
2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<BuildVersion>1.1.1</BuildVersion>
<BuildVersion>1.1.2</BuildVersion>
<GameVersion>1.2.11</GameVersion>
</PropertyGroup>

Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
---------------------------------------------------------------------------------------------------
Version: 1.1.2
Game Versions: v1.2.11
* bug: fix crash when custom logger is provided in the api
---------------------------------------------------------------------------------------------------
Version: 1.1.1
Game Versions: v1.2.11
* ci: fix unpublished dependency nuget packages
Expand Down

0 comments on commit ae70d14

Please sign in to comment.