From d2a310e8795f612d38fd98ae449126124494d846 Mon Sep 17 00:00:00 2001 From: ScottNZ Date: Wed, 26 Jun 2013 19:04:35 +1200 Subject: [PATCH] Fix DescAttribute fail in CashTrickler.cs --- OpenRA.Mods.RA/CashTrickler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/CashTrickler.cs b/OpenRA.Mods.RA/CashTrickler.cs index 290403c389..4f1583bef7 100644 --- a/OpenRA.Mods.RA/CashTrickler.cs +++ b/OpenRA.Mods.RA/CashTrickler.cs @@ -17,9 +17,9 @@ namespace OpenRA.Mods.RA [Desc("Lets the actor generate cash in a set periodic time.")] class CashTricklerInfo : ITraitInfo { - [Desc("Amount of money to give each time.")] - public readonly int Period = 50; [Desc("Number of ticks to wait between giving money.")] + public readonly int Period = 50; + [Desc("Amount of money to give each time.")] public readonly int Amount = 15; [Desc("Whether to show the cash tick indicators (+$15 rising from actor).")] public readonly bool ShowTicks = true;