Skip to content

Commit

Permalink
Fix smithywyrm cost (#1042)
Browse files Browse the repository at this point in the history
The cost of the final smithywyrm has always been incorrect at 750. The
wiki confirms it is 700. This has started to cause errors in the logs
about failed payments now that diamantium is available and wyrmite is
limited.
  • Loading branch information
SapiensAnatis authored Aug 26, 2024
1 parent 752a6e8 commit e377abe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public async Task GetBuildList_ReturnsBuildList()
[Theory]
[InlineData(2, 250)]
[InlineData(3, 400)]
[InlineData(4, 750)]
[InlineData(4, 700)]
public async Task AddCarpenter_Success_AddsCarpenterWithExpectedCost(
int existingCarpenters,
int expectedCost
Expand Down
2 changes: 1 addition & 1 deletion DragaliaAPI/DragaliaAPI/Features/Fort/FortService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public async Task<FortDetail> AddCarpenter(PaymentTypes paymentType)
< 2 => 0,
2 => 250,
3 => 400,
4 => 750,
4 => 700,
_
=> throw new DragaliaException(
ResultCode.FortExtendCarpenterLimit,
Expand Down

0 comments on commit e377abe

Please sign in to comment.