File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ export class Overview extends Component {
139
139
. reduce ( ( p , c ) => p . concat ( Object . values ( c ) ) , [ ] )
140
140
. filter ( trade => trade . bought > 0 && trade . sold > 0 ) ;
141
141
const lifetimeProfit = lifetimeTrades
142
- . reduce ( ( p , c ) => p + ( c . sold - c . bought ) , 0 ) ;
142
+ . reduce ( ( p , c ) => p + ( ( c . sold * 0.95 ) - c . bought ) , 0 ) ;
143
143
144
144
return (
145
145
< div className = "details bidding-screen" >
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " fifa-autobuyer" ,
3
3
"productName" : " FIFA Autobuyer" ,
4
- "version" : " 0.3.1 " ,
4
+ "version" : " 0.3.2 " ,
5
5
"description" : " Autobuyer for FIFA 17 Ultimate Team" ,
6
6
"main" : " ./main.js" ,
7
7
"author" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " fifa-autobuyer" ,
3
3
"productName" : " FIFA Autobuyer" ,
4
- "version" : " 0.3.1 " ,
4
+ "version" : " 0.3.2 " ,
5
5
"description" : " Autobuyer for FIFA 17 Ultimate Team" ,
6
6
"main" : " main.js" ,
7
7
"scripts" : {
You can’t perform that action at this time.
0 commit comments