fixed Heliod's Punishment (counters not removes after tap);

This commit is contained in:
Oleg Agafonov 2020-01-14 09:34:41 +04:00
parent 11976b5c89
commit dae2c57c45
2 changed files with 11 additions and 17 deletions

View file

@ -57,7 +57,7 @@ public class MageVersion implements Serializable, Comparable<MageVersion> {
}
public String toString(boolean showBuildTime) {
// 1.4.32-betaV0 (build: time)
// 1.4.32V1-beta2 (build: time)
String res = major + "." + minor + '.' + patch + minorPatch + editionInfo;
if (showBuildTime && !this.buildTime.isEmpty()) {
res += " (build: " + this.buildTime + ")";