Skip to content

Commit

Permalink
Trivial change to test pushing to master branch: make the MountedComp…
Browse files Browse the repository at this point in the history
…onentTemplate.Mount property nullable, since it's often null anyway
  • Loading branch information
ekolis committed Jul 23, 2022
1 parent f385982 commit ef58171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FrEee/Game/Objects/Technology/MountedComponentTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public MountedComponentTemplate LatestVersion
/// The mount used.
/// </summary>
[DoNotSerialize]
public Mount Mount { get { return mount; } set { mount = value; } }
public Mount? Mount { get { return mount; } set { mount = value; } }

/// <summary>
/// The name of the component, prefixed with the short name of the mount (if any).
Expand Down

0 comments on commit ef58171

Please sign in to comment.