Skip to content

Commit

Permalink
Merge pull request #26 from ZombieErebus/develop
Browse files Browse the repository at this point in the history
Changed sales tax base value
  • Loading branch information
Slivo-fr authored Oct 18, 2024
2 parents e77d4ab + f8d1f8f commit a2ec8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Elinor/CalculateDataThread.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ internal static double NpcBroker(Profile profile)

internal static double SalesTax(int accounting)
{
return .080*(1 - (accounting*.11));
return .045*(1 - (accounting*.11));
}

internal void Run()
Expand Down

0 comments on commit a2ec8c0

Please sign in to comment.