mirror of
https://github.com/Melledy/LunarCore.git
synced 2025-12-12 21:34:35 +01:00
Fix boots not dropping from relic domains
This commit is contained in:
@@ -91,7 +91,7 @@ public class MappingInfoExcel extends GameResource {
|
||||
// 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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user