changed Player lifes from 1 to 3 on game start

This commit is contained in:
Sagi Dayan 2016-03-20 22:38:43 +02:00
parent 992fdb997d
commit eeadfbf06d
1 changed files with 2 additions and 2 deletions

View File

@ -104,8 +104,8 @@ public class GameEngine {
resetPlayerHealth(1);
p1Score = p2Score = 0;
credits = 3;
p1Lives = 1;
p2Lives = 1;
p1Lives = 3;
p2Lives = 3;
}
public int getP1CreditTime() {