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
...@@ -4,37 +4,43 @@ import dev.morphia.annotations.Entity; ...@@ -4,37 +4,43 @@ import dev.morphia.annotations.Entity;
@Entity @Entity
public class PlayerGachaInfo { public class PlayerGachaInfo {
private PlayerGachaBannerInfo standardBanner; private PlayerGachaBannerInfo standardBanner;
private PlayerGachaBannerInfo eventCharacterBanner; private PlayerGachaBannerInfo beginnerBanner;
private PlayerGachaBannerInfo eventWeaponBanner; private PlayerGachaBannerInfo eventCharacterBanner;
private PlayerGachaBannerInfo eventWeaponBanner;
public PlayerGachaInfo() {
this.standardBanner = new PlayerGachaBannerInfo(); public PlayerGachaInfo() {
this.eventCharacterBanner = new PlayerGachaBannerInfo(); this.standardBanner = new PlayerGachaBannerInfo();
this.eventWeaponBanner = new PlayerGachaBannerInfo(); this.eventCharacterBanner = new PlayerGachaBannerInfo();
} this.eventWeaponBanner = new PlayerGachaBannerInfo();
}
public PlayerGachaBannerInfo getStandardBanner() {
return standardBanner; public PlayerGachaBannerInfo getStandardBanner() {
} if (this.standardBanner == null) this.standardBanner = new PlayerGachaBannerInfo();
return this.standardBanner;
public PlayerGachaBannerInfo getEventCharacterBanner() { }
return eventCharacterBanner;
} public PlayerGachaBannerInfo getBeginnerBanner() {
if (this.beginnerBanner == null) this.beginnerBanner = new PlayerGachaBannerInfo();
public PlayerGachaBannerInfo getEventWeaponBanner() { return this.beginnerBanner;
return eventWeaponBanner; }
}
public PlayerGachaBannerInfo getEventCharacterBanner() {
public PlayerGachaBannerInfo getBannerInfo(GachaBanner banner) { if (this.eventCharacterBanner == null) this.eventCharacterBanner = new PlayerGachaBannerInfo();
switch (banner.getBannerType()) { return this.eventCharacterBanner;
case EVENT: }
return this.eventCharacterBanner;
case WEAPON: public PlayerGachaBannerInfo getEventWeaponBanner() {
return this.eventWeaponBanner; if (this.eventWeaponBanner == null) this.eventWeaponBanner = new PlayerGachaBannerInfo();
case STANDARD: return this.eventWeaponBanner;
default: }
return this.standardBanner;
} public PlayerGachaBannerInfo getBannerInfo(GachaBanner banner) {
} return switch (banner.getBannerType()) {
case STANDARD -> this.getStandardBanner();
case BEGINNER -> this.getBeginnerBanner();
case EVENT, CHARACTER, CHARACTER2 -> this.getEventCharacterBanner();
case WEAPON -> this.getEventWeaponBanner();
};
}
} }
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