Skip to content

Commit

Permalink
Merge pull request #19 from ndite/patch-1
Browse files Browse the repository at this point in the history
update broker and sale tax
  • Loading branch information
Slivo-fr authored Nov 5, 2021
2 parents c62bc5c + 90e1b10 commit b8b4a62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Elinor/CalculateDataThread.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -135,4 +135,4 @@ internal void Run()
}
}
}
}
}

0 comments on commit b8b4a62

Please sign in to comment.