Moved "return true" statement

This commit is contained in:
Zzooouhh 2017-11-08 17:05:11 +01:00 committed by GitHub
parent 07cd3b67bb
commit cd26cc0e88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,9 +133,9 @@ class LiarsPendulumEffect extends OneShotEffect {
controller.revealCards("hand of " + controller.getName(), controller.getHand(), game); controller.revealCards("hand of " + controller.getName(), controller.getHand(), game);
if (!rightGuess) { if (!rightGuess) {
controller.drawCards(1, game); controller.drawCards(1, game);
return true;
} }
} }
return true;
} }
return false; return false;
} }