mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Missing 's' in effect
In the line 'sb.append(" to their owners' hand");' changed "hand" to "hands".
This commit is contained in:
parent
36a3008f4c
commit
7926c7c7d7
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||||
|
|
Loading…
Reference in a new issue