Skip to content

Commit

Permalink
Merge pull request #99 from BUTR/dev
Browse files Browse the repository at this point in the history
v1.0.31 #2
  • Loading branch information
Aragas authored Dec 10, 2021
2 parents 95e4810 + 97d8862 commit 4bd7152
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ internal void GenerateNewGameDescriptor()
internal void CheckCampaignDescriptor()
{
// There is no guarantee that Load() will not yield a non null
if (_campaignDescriptor is null!)
if (_campaignDescriptor is null)
{
AddDescriptorToExistingCampaign();
}
Expand Down Expand Up @@ -147,7 +147,7 @@ private List<CampaignDescriptor> LoadExistingDescriptors()

internal void Sync()
{
if (_descriptorToBeAssigned is not null && _campaignDescriptor is not null! && _descriptorToBeAssigned == _campaignDescriptor)
if (_descriptorToBeAssigned is not null && _campaignDescriptor is not null && _descriptorToBeAssigned == _campaignDescriptor)
{
UpdateSavedDescriptors();
}
Expand Down

0 comments on commit 4bd7152

Please sign in to comment.