Skip to content

Commit

Permalink
Revenge and Golden cards fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyBazooka89 committed Oct 28, 2018
1 parent 062b38d commit 9741325
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>StSMod</groupId>
<artifactId>StSModTheBlackbeard</artifactId>
<version>1.0.6</version>
<version>1.0.7</version>
<packaging>jar</packaging>
<name>StSModTheBlackbeard</name>
<description>Adds a new character to Slay the Spire, The Blackbeard.</description>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/blackbeard/cards/Revenge.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public void upgrade() {
if (!this.upgraded) {
this.upgradeName();
this.upgradeMagicNumber(UPGRADE_PLUS_MAXIMUM_DAMAGE);
setBaseDamageAndUpgradeDescription();
}
}
}
2 changes: 1 addition & 1 deletion src/main/java/blackbeard/utils/GoldenCardsUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class GoldenCardsUtil {
public static String getGoldenCardDescription(boolean upgraded, String description, String upgradeDescription, String[] extendedDescription) {
String result = upgraded ? upgradeDescription : description;
if (CardCrawlGame.isInARun()) {
result += extendedDescription[1] + CardCrawlGame.goldGained + extendedDescription[2] + " " + extendedDescription[0];
result += extendedDescription[0] + extendedDescription[1] + CardCrawlGame.goldGained + extendedDescription[2] + " ";
}
return result;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/ModTheSpire.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"JohnnyBazooka89"
],
"description": "Adds The Blackbeard as a new playable character. More info: https://github.com/JohnnyBazooka89/StSModTheBlackbeard",
"version": "1.0.6",
"version": "1.0.7",
"dependencies": [
"basemod"
],
Expand Down

0 comments on commit 9741325

Please sign in to comment.