Fixing an issue with the "return to its owner's hand" that was duplicating the target text.

Signed-off-by: Andre Cabaca <andre.cabaca24@gmail.com>
This commit is contained in:
Andre Cabaca 2020-08-30 11:54:13 +01:00
parent 1e889c6a6d
commit 0f6b8bbe9e

View file

@ -109,7 +109,7 @@ public class ReturnToHandTargetEffect extends OneShotEffect {
sb.append(" to their owners' hand");
}
else {
sb.append(target.getTargetName()).append(" to its owner's hand");
sb.append(" to its owner's hand");
}
return sb.toString();
}