Skip to content

Commit

Permalink
Fix stratagems not dropping from Extreme quests (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
SapiensAnatis authored Jul 27, 2023
1 parent 247bb24 commit 2c4ecc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DragaliaAPI/Features/Event/EventDropService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ PlayRecord record

// In general versions of defensive events, Stratagems are a resource that can be used to challenge EX defensive battles.
// They can be obtained as drops from Master-difficulty quests.
if (variation == VariationTypes.VeryHard)
if (variation >= VariationTypes.VeryHard)
{
int stratagemQuantity = GenerateDropAmount(2d);
yield return new Entity(
Expand Down

0 comments on commit 2c4ecc6

Please sign in to comment.