Added Upgrade support to Sellable

This commit is contained in:
atlimit8
2014-10-13 14:16:33 -05:00
parent 60cf2d2cae
commit 1d631d6980
3 changed files with 11 additions and 8 deletions

View File

@@ -61,7 +61,7 @@ namespace OpenRA.Mods.RA.Orders
public string GetCursor(World world, CPos xy, MouseInput mi)
{
mi.Button = MouseButton.Left;
return cursor + (OrderInner(world, mi).Any() ? "" : "-blocked");
return cursor + (OrderInner(world, mi).Any() ? "" : "-blocked");
}
}