You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
317 B

using System.Linq;
namespace ET
{
public partial class WorldParametersConfigCategory
{
public override void AfterEndInit()
{
if (this.dict.Keys.Contains(1))
{
this.dict[1].Value[0] = this.dict[1].Value[0] * 1000 / 60;
}
}
}
}