Skip to content

Commit

Permalink
Merge pull request #6064 from planetarium/bugfix/relationship-info-popup
Browse files Browse the repository at this point in the history
fix bug about relationship info popup showing
  • Loading branch information
sonohoshi authored Sep 27, 2024
2 parents 5d90f26 + a52f996 commit 76ca82f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nekoyume/Assets/_Scripts/UI/Widget/CustomCraft.cs
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ private void ShowRelationshipInfoPopup(long relationship)
}

// 이번에 제작하면 친밀도 구간이 넘어갈때!
if (TableSheets.Instance.CustomEquipmentCraftRelationshipSheet.Values.Any(row => row.Relationship + 1 == relationship))
if (TableSheets.Instance.CustomEquipmentCraftRelationshipSheet.Values.Any(row => row.Relationship == relationship + 1))
{
relationshipInfoPopupObject.SetActive(true);
PlayerPrefs.SetString(key, string.Empty);
Expand Down
4 changes: 2 additions & 2 deletions nekoyume/ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ PlayerSettings:
16:10: 0
16:9: 1
Others: 0
bundleVersion: 230.0.7
bundleVersion: 230.0.8
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down Expand Up @@ -168,7 +168,7 @@ PlayerSettings:
iPhone: 0
tvOS: 0
overrideDefaultApplicationIdentifier: 1
AndroidBundleVersionCode: 250
AndroidBundleVersionCode: 251
AndroidMinSdkVersion: 24
AndroidTargetSdkVersion: 34
AndroidPreferredInstallLocation: 2
Expand Down

0 comments on commit 76ca82f

Please sign in to comment.