Commit 100d08ec authored by AnimeGitB's avatar AnimeGitB
Browse files

Fix up pity tallies for new BannerTypes

Also fixes Beginner banner using Standard pity.
parent 83b84408
...@@ -5,6 +5,7 @@ import dev.morphia.annotations.Entity; ...@@ -5,6 +5,7 @@ import dev.morphia.annotations.Entity;
@Entity @Entity
public class PlayerGachaInfo { public class PlayerGachaInfo {
private PlayerGachaBannerInfo standardBanner; private PlayerGachaBannerInfo standardBanner;
private PlayerGachaBannerInfo beginnerBanner;
private PlayerGachaBannerInfo eventCharacterBanner; private PlayerGachaBannerInfo eventCharacterBanner;
private PlayerGachaBannerInfo eventWeaponBanner; private PlayerGachaBannerInfo eventWeaponBanner;
...@@ -15,26 +16,31 @@ public class PlayerGachaInfo { ...@@ -15,26 +16,31 @@ public class PlayerGachaInfo {
} }
public PlayerGachaBannerInfo getStandardBanner() { public PlayerGachaBannerInfo getStandardBanner() {
return standardBanner; if (this.standardBanner == null) this.standardBanner = new PlayerGachaBannerInfo();
return this.standardBanner;
}
public PlayerGachaBannerInfo getBeginnerBanner() {
if (this.beginnerBanner == null) this.beginnerBanner = new PlayerGachaBannerInfo();
return this.beginnerBanner;
} }
public PlayerGachaBannerInfo getEventCharacterBanner() { public PlayerGachaBannerInfo getEventCharacterBanner() {
return eventCharacterBanner; if (this.eventCharacterBanner == null) this.eventCharacterBanner = new PlayerGachaBannerInfo();
return this.eventCharacterBanner;
} }
public PlayerGachaBannerInfo getEventWeaponBanner() { public PlayerGachaBannerInfo getEventWeaponBanner() {
return eventWeaponBanner; if (this.eventWeaponBanner == null) this.eventWeaponBanner = new PlayerGachaBannerInfo();
return this.eventWeaponBanner;
} }
public PlayerGachaBannerInfo getBannerInfo(GachaBanner banner) { public PlayerGachaBannerInfo getBannerInfo(GachaBanner banner) {
switch (banner.getBannerType()) { return switch (banner.getBannerType()) {
case EVENT: case STANDARD -> this.getStandardBanner();
return this.eventCharacterBanner; case BEGINNER -> this.getBeginnerBanner();
case WEAPON: case EVENT, CHARACTER, CHARACTER2 -> this.getEventCharacterBanner();
return this.eventWeaponBanner; case WEAPON -> this.getEventWeaponBanner();
case STANDARD: };
default:
return this.standardBanner;
}
} }
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment