Example:
sawys win 1 battle with score on screen = 10 seconds
destructor win 1 battle too with score on screen = 100 seconds (90 seconds faster)
Then:
1. Current rules 1000 + (120 - time_left):
sawys score = 1000 + (120 - 10) = 1110
destructor score = 1000 + (120 - 100) = 1020
Sawys won? Destructor was faster!
2. Rule 1000 + time_left
sawys score = 1000 + 10 = 1010
destructor score = 1000 + 100 = 1100
Now is ok.
We must add to 1000 time left (time which is on screen) not time spend.
Too many race-games sawys where time is increased

