Skip to content

Commit

Permalink
Fix boots not dropping from relic domains
Browse files Browse the repository at this point in the history
  • Loading branch information
Melledy committed Jan 25, 2024
1 parent 206954f commit 2530579
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void onLoad() {
// Add relics from the set
int relicStart = 20001 + (baseRarity * 10000) + (baseRelicId * 10);
int relicEnd = relicStart + 3;
for (;relicStart < relicEnd; relicStart++) {
for (;relicStart <= relicEnd; relicStart++) {
ItemExcel relicExcel = GameData.getItemExcelMap().get(relicStart);
if (relicExcel == null) break;

Expand Down

0 comments on commit 2530579

Please sign in to comment.