Merge pull request #275 from nutnnut/fix-monster-crystal-level #patch

fix maker monster crystal level calculation
This commit is contained in:
Ponk
2024-10-19 13:52:08 +02:00
committed by GitHub

View File

@@ -2063,7 +2063,7 @@ public class ItemInformationProvider {
try (ResultSet rs = ps.executeQuery()) {
if (rs.next()) {
int dropperid = rs.getInt("dropperid");
itemid = getCrystalForLevel(LifeFactory.getMonsterLevel(dropperid) - 1);
itemid = getCrystalForLevel(LifeFactory.getMonsterLevel(dropperid));
}
}
}