Remove a bogus CanDeploy check from order resolving for charge deploys

This commit is contained in:
abcdefg30
2023-08-11 17:54:11 +02:00
committed by Gustas
parent a1dfb42812
commit e1940eec77

View File

@@ -147,7 +147,7 @@ namespace OpenRA.Mods.Common.Traits
public void ResolveOrder(Actor self, Order order)
{
if (order.OrderString == "DeployWithCharge" && CanDeploy())
if (order.OrderString == "DeployWithCharge")
self.QueueActivity(order.Queued, new DeployForGrantedConditionWithCharge(self, this));
}