Missing 's' in effect

In the line 'sb.append(" to their owners' hand");' changed "hand" to "hands".
This commit is contained in:
André Cabaça 2020-08-31 00:56:30 +01:00 committed by GitHub
parent 36a3008f4c
commit 7926c7c7d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ public class ReturnToHandTargetEffect extends OneShotEffect {
} }
sb.append(target.getTargetName()); sb.append(target.getTargetName());
if(target.getMaxNumberOfTargets() > 1) { if(target.getMaxNumberOfTargets() > 1) {
sb.append(" to their owners' hand"); sb.append(" to their owners' hands");
} }
else { else {
sb.append(" to its owner's hand"); sb.append(" to its owner's hand");