This commit is contained in:
Daniel Saukel 2016-08-02 21:04:13 +02:00
parent 750db495d6
commit 15ae32ae84

View File

@ -422,7 +422,9 @@ public class GameRules {
}
if (initialLives == null) {
initialLives = defaultValues.hasLives() ? null : -1;
if (defaultValues.hasLives() != null) {
initialLives = defaultValues.hasLives() ? null : -1;
}
}
}