mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +00:00
- Phrasing correction in texts (still think we need to update the method names...)
This commit is contained in:
@@ -107,7 +107,7 @@ public class GameWrapper {
|
|||||||
if (target.canBeAttachedBy(actualCard)) {
|
if (target.canBeAttachedBy(actualCard)) {
|
||||||
actualCard.attachEntity(target);
|
actualCard.attachEntity(target);
|
||||||
} else {
|
} else {
|
||||||
throw new IllegalStateException( actualCard + " can't attach " + target );
|
throw new IllegalStateException( actualCard + " can't attach to " + target );
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new IllegalStateException( "Don't know how to make " + actualCard + " target anything" );
|
throw new IllegalStateException( "Don't know how to make " + actualCard + " target anything" );
|
||||||
|
|||||||
@@ -446,7 +446,7 @@ public class CardDetailUtil {
|
|||||||
if (area.length() != 0) {
|
if (area.length() != 0) {
|
||||||
area.append("\n");
|
area.append("\n");
|
||||||
}
|
}
|
||||||
area.append("=Attached by ");
|
area.append("=Attached: ");
|
||||||
area.append(StringUtils.join(card.getAttachedBy(), ", "));
|
area.append(StringUtils.join(card.getAttachedBy(), ", "));
|
||||||
area.append("=");
|
area.append("=");
|
||||||
}
|
}
|
||||||
@@ -456,7 +456,7 @@ public class CardDetailUtil {
|
|||||||
if (area.length() != 0) {
|
if (area.length() != 0) {
|
||||||
area.append("\n");
|
area.append("\n");
|
||||||
}
|
}
|
||||||
area.append("*Attaching ").append(card.getAttachingCard()).append("*");
|
area.append("*Attached to ").append(card.getAttachingCard()).append("*");
|
||||||
}
|
}
|
||||||
if (card.getAttachingPlayer() != null) {
|
if (card.getAttachingPlayer() != null) {
|
||||||
if (area.length() != 0) {
|
if (area.length() != 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user