From ef5817145dfc71b7bd443d832638231ef81ab251 Mon Sep 17 00:00:00 2001 From: Ed Kolis Date: Sat, 23 Jul 2022 09:08:12 -0400 Subject: [PATCH] Trivial change to test pushing to master branch: make the MountedComponentTemplate.Mount property nullable, since it's often null anyway --- FrEee/Game/Objects/Technology/MountedComponentTemplate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FrEee/Game/Objects/Technology/MountedComponentTemplate.cs b/FrEee/Game/Objects/Technology/MountedComponentTemplate.cs index e55461e8..2d81d559 100644 --- a/FrEee/Game/Objects/Technology/MountedComponentTemplate.cs +++ b/FrEee/Game/Objects/Technology/MountedComponentTemplate.cs @@ -193,7 +193,7 @@ public MountedComponentTemplate LatestVersion /// The mount used. /// [DoNotSerialize] - public Mount Mount { get { return mount; } set { mount = value; } } + public Mount? Mount { get { return mount; } set { mount = value; } } /// /// The name of the component, prefixed with the short name of the mount (if any).