Archived
1
0

micro resources also only benefit the controlling faction

This commit is contained in:
Florian Stinglmayr 2021-08-03 18:40:55 +02:00
parent 9f447473a2
commit 9c47fc3400

View File

@ -1,8 +1,4 @@
using System; using System.Linq;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NonaBGS.Journal; using NonaBGS.Journal;
namespace NonaBGS.BGS { namespace NonaBGS.BGS {
@ -24,5 +20,7 @@ namespace NonaBGS.BGS {
public override string ToString() { public override string ToString() {
return string.Format("Sell Micro Resources: {0}", Credits.FormatCredits(TotalSum)); return string.Format("Sell Micro Resources: {0}", Credits.FormatCredits(TotalSum));
} }
public override bool OnlyControllingFaction => true;
} }
} }