Skip to content

Commit

Permalink
fix a bug with nullable check
Browse files Browse the repository at this point in the history
  • Loading branch information
lasedark committed Jul 22, 2020
1 parent 1fd0c7a commit aea200c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Grabacr07.KanColleWrapper/Organization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ private void DepriveSlotItem(kcsapi_slot_deprive source)
this.Ships[source.api_ship_data.api_unset_ship.api_id]?.Update(source.api_ship_data.api_unset_ship);
this.Ships[source.api_ship_data.api_set_ship.api_id]?.Update(source.api_ship_data.api_set_ship);

this.GetFleet(source.api_ship_data.api_set_ship.api_id).State.Calculate();
this.GetFleet(source.api_ship_data.api_set_ship.api_id)?.State.Calculate();
}

#endregion
Expand Down

0 comments on commit aea200c

Please sign in to comment.