From 55536bba4c6bd3e71a317368a8c768cac97d601b Mon Sep 17 00:00:00 2001 From: Gustas <37534529+PunkPun@users.noreply.github.com> Date: Tue, 24 Jan 2023 14:15:38 +0200 Subject: [PATCH] Remove unused variables Redundant since 2013 PR: # 3407 Commit: 1eb04a70a5cbd9c0e92e76feedc19248975ac4ee --- OpenRA.Mods.Common/Traits/Buildings/Refinery.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenRA.Mods.Common/Traits/Buildings/Refinery.cs b/OpenRA.Mods.Common/Traits/Buildings/Refinery.cs index 22c3372f44..f009872ee0 100644 --- a/OpenRA.Mods.Common/Traits/Buildings/Refinery.cs +++ b/OpenRA.Mods.Common/Traits/Buildings/Refinery.cs @@ -45,8 +45,6 @@ namespace OpenRA.Mods.Common.Traits public readonly bool DiscardExcessResources = false; public readonly bool ShowTicks = true; - public readonly int TickLifetime = 30; - public readonly int TickVelocity = 2; public readonly int TickRate = 10; public override object Create(ActorInitializer init) { return new Refinery(init.Self, this); }