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

View file

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