diff --git a/BGS/SellMicroResources.cs b/BGS/SellMicroResources.cs index 4062b8a..68150f0 100644 --- a/BGS/SellMicroResources.cs +++ b/BGS/SellMicroResources.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Linq; using NonaBGS.Journal; namespace NonaBGS.BGS { @@ -24,5 +20,7 @@ namespace NonaBGS.BGS { public override string ToString() { return string.Format("Sell Micro Resources: {0}", Credits.FormatCredits(TotalSum)); } + + public override bool OnlyControllingFaction => true; } }