Fix DescAttribute fail in CashTrickler.cs

This commit is contained in:
ScottNZ
2013-06-26 19:04:35 +12:00
parent 41af9d7993
commit d2a310e879

View File

@@ -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;