diff --git a/Elinor/CalculateDataThread.cs b/Elinor/CalculateDataThread.cs index 5c28a83..4e6ebf3 100644 --- a/Elinor/CalculateDataThread.cs +++ b/Elinor/CalculateDataThread.cs @@ -43,12 +43,12 @@ internal static double SellBrokerFee(Profile profile) internal static double NpcBroker(Profile profile) { - return (5 - (profile.brokerRelations * 0.3 + profile.factionStanding * 0.03 + profile.corpStanding * 0.02)) / 100; + return (3 - (profile.brokerRelations * 0.3 + profile.factionStanding * 0.03 + profile.corpStanding * 0.02)) / 100; } internal static double SalesTax(int accounting) { - return .050*(1 - (accounting*.11)); + return .080*(1 - (accounting*.11)); } internal void Run() @@ -135,4 +135,4 @@ internal void Run() } } } -} \ No newline at end of file +}