From 9c47fc3400c1c2865d9ea69cf409c7cc3d555bec Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Tue, 3 Aug 2021 18:40:55 +0200 Subject: [PATCH] micro resources also only benefit the controlling faction --- BGS/SellMicroResources.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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; } }