Fix text [RAV] [GPT] [DIS] (#10359)

* Fix text: capitalization of regenerate

* Fix text: Circle of Protection Artifacts

* Fix text [RAV] [GPT] [DIS]
This commit is contained in:
xenohedron 2023-06-02 12:36:22 +03:00 committed by GitHub
parent 5c8b5f23bb
commit 7531263fb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 75 additions and 71 deletions

View file

@ -97,9 +97,9 @@ public class CreateTokenTargetEffect extends OneShotEffect {
if (token.getDescription().endsWith("token")) {
sb.append("s");
}
int tokenLocation = sb.indexOf("token");
int tokenLocation = sb.indexOf("token ");
if (tokenLocation != -1) {
sb.replace(tokenLocation, tokenLocation + 6, "tokens");
sb.replace(tokenLocation, tokenLocation + 6, "tokens ");
}
}
if (attacking) {