fix test failures

This commit is contained in:
theelk801 2025-05-23 17:58:12 -04:00
parent 0623dff1e3
commit 19bb4e7cd3

View file

@ -50,6 +50,6 @@ public class AttachTargetToTargetEffect extends OneShotEffect {
if (mode.getTargets().size() != 2) {
throw new IllegalStateException("It must have two targets, but found " + mode.getTargets().size());
}
return "attach " + mode.getTargets().get(0).getDescription() + " to " + mode.getTargets().get(0).getDescription();
return "attach " + mode.getTargets().get(0).getDescription() + " to " + mode.getTargets().get(1).getDescription();
}
}