diff --git a/OpenRA.Mods.Common/Traits/World/EditorActorPreview.cs b/OpenRA.Mods.Common/Traits/World/EditorActorPreview.cs index 2cad5cf300..1d682d8f08 100644 --- a/OpenRA.Mods.Common/Traits/World/EditorActorPreview.cs +++ b/OpenRA.Mods.Common/Traits/World/EditorActorPreview.cs @@ -214,6 +214,10 @@ namespace OpenRA.Mods.Common.Traits if (factionInit != null && factionInit.Value == Owner.Faction) return false; + var healthInit = init as HealthInit; + if (healthInit != null && healthInit.Value == 100) + return false; + // TODO: Other default values will need to be filtered // here after we have built a properties panel return true;