Skip to content

Commit

Permalink
fix zzz gacha bug #910
Browse files Browse the repository at this point in the history
  • Loading branch information
Scighost committed Jul 6, 2024
1 parent 292985f commit d0f3a54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Starward.Core/Gacha/ZZZ/ZZZGachaClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ public class ZZZGachaClient : GachaLogClient



// todo
protected override IReadOnlyCollection<GachaType> GachaTypes { get; init; } = new GachaType[] { (GachaType)1, (GachaType)2, (GachaType)3, (GachaType)4 }.AsReadOnly();
protected override IReadOnlyCollection<GachaType> GachaTypes { get; init; } = new GachaType[] { (GachaType)1, (GachaType)2, (GachaType)3, (GachaType)5 }.AsReadOnly();



Expand Down
3 changes: 1 addition & 2 deletions src/Starward/Services/Gacha/ZZZGachaService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ internal class ZZZGachaService : GachaLogService

protected override string GachaTableName { get; } = "ZZZGachaItem";

// todo
protected override IReadOnlyCollection<int> GachaTypes { get; } = new int[] { 1, 2, 3, 4 }.AsReadOnly();
protected override IReadOnlyCollection<int> GachaTypes { get; } = new int[] { 1, 2, 3, 5 }.AsReadOnly();



Expand Down

0 comments on commit d0f3a54

Please sign in to comment.