From 8513de0b47cb94fc12ef22ed0c9838d6783dda8c Mon Sep 17 00:00:00 2001 From: Ivaylo Draganov Date: Tue, 13 Dec 2022 16:00:39 +0200 Subject: [PATCH] Fix error in `PlayerResources` trait documentation This was missed in #19295 --- OpenRA.Mods.Common/Traits/Player/PlayerResources.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Player/PlayerResources.cs b/OpenRA.Mods.Common/Traits/Player/PlayerResources.cs index d9a04092e5..897ae47b25 100644 --- a/OpenRA.Mods.Common/Traits/Player/PlayerResources.cs +++ b/OpenRA.Mods.Common/Traits/Player/PlayerResources.cs @@ -47,7 +47,7 @@ namespace OpenRA.Mods.Common.Traits [Desc("Text notification to display when the player does not have any funds.")] public readonly string InsufficientFundsTextNotification = null; - [Desc("Delay (in ticks) during which warnings will be muted.")] + [Desc("Delay (in milliseconds) during which warnings will be muted.")] public readonly int InsufficientFundsNotificationInterval = 30000; [NotificationReference("Sounds")]