From dd062adec274da0b8f2d119159e4cb11809f46a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 21 Mar 2020 11:58:17 +0100 Subject: [PATCH] Add descriptions as those are not obvious in this context. --- OpenRA.Mods.Common/Traits/SupportPowers/SupportPower.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/OpenRA.Mods.Common/Traits/SupportPowers/SupportPower.cs b/OpenRA.Mods.Common/Traits/SupportPowers/SupportPower.cs index be6f77d1c3..8ee86aa42b 100644 --- a/OpenRA.Mods.Common/Traits/SupportPowers/SupportPower.cs +++ b/OpenRA.Mods.Common/Traits/SupportPowers/SupportPower.cs @@ -30,7 +30,11 @@ namespace OpenRA.Mods.Common.Traits public readonly string Description = ""; public readonly string LongDesc = ""; + + [Desc("Allow multiple instances of the same support power.")] public readonly bool AllowMultiple = false; + + [Desc("Allow this to be used only once.")] public readonly bool OneShot = false; [Desc("Cursor to display for using this support power.")]