removing unnecessary condition

L107
This commit is contained in:
MusaBrt 2020-11-18 01:03:06 +03:00 committed by GitHub
parent 6dcf7a2e53
commit 3dc720848d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -104,7 +104,7 @@ class GnostroVoiceOfTheCragsEffect extends OneShotEffect {
if (player == null) {
return false;
}
return player != null && player.scry(
return player.scry (
GnostroVoiceOfTheCragsValue.instance.calculate(game, source, this), source, game
);
}