mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-26 08:43:30 +00:00
Merge pull request #26 from Yazawazi/main
unlockAvatarConstellation fix
This commit is contained in:
commit
c72891ff97
@ -471,7 +471,7 @@ public class InventoryManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Consume weapon
|
// Consume weapon
|
||||||
player.getInventory().removeItem(feed);
|
player.getInventory().removeItem(feed, 1);
|
||||||
|
|
||||||
// Get
|
// Get
|
||||||
weapon.setRefinement(targetRefineLevel);
|
weapon.setRefinement(targetRefineLevel);
|
||||||
@ -804,6 +804,12 @@ public class InventoryManager {
|
|||||||
// Get talent
|
// Get talent
|
||||||
int currentTalentLevel = avatar.getCoreProudSkillLevel();
|
int currentTalentLevel = avatar.getCoreProudSkillLevel();
|
||||||
int nextTalentId = ((avatar.getAvatarId() % 10000000) * 10) + currentTalentLevel + 1;
|
int nextTalentId = ((avatar.getAvatarId() % 10000000) * 10) + currentTalentLevel + 1;
|
||||||
|
|
||||||
|
if (avatar.getAvatarId() == 10000006) {
|
||||||
|
// Lisa is special in that her talentId starts with 4 instead of 6.
|
||||||
|
nextTalentId = 40 + currentTalentLevel + 1;
|
||||||
|
}
|
||||||
|
|
||||||
AvatarTalentData talentData = GenshinData.getAvatarTalentDataMap().get(nextTalentId);
|
AvatarTalentData talentData = GenshinData.getAvatarTalentDataMap().get(nextTalentId);
|
||||||
|
|
||||||
if (talentData == null) {
|
if (talentData == null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user