Skip to content

Commit

Permalink
Merge pull request #6622 from planetarium/issue/6612
Browse files Browse the repository at this point in the history
Issue/6612
  • Loading branch information
eugene-doobu authored Dec 18, 2024
2 parents 663a6b4 + 547441f commit f7c956a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nekoyume/Assets/_Scripts/Lib9c/lib9c
3 changes: 2 additions & 1 deletion nekoyume/Assets/_Scripts/UI/Module/SynthesisModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ private void OnDisable()
public void UpdateData(IList<InventoryItem> registrationItems, SynthesizeModel model)
{
_itemSubType = model.ItemSubType;
_selectedItemsForSynthesize = registrationItems;
// 외부에서 변경되지 않도록 copy
_selectedItemsForSynthesize = registrationItems.ToList();

var synthesisCount = registrationItems.Count / model.RequiredItemCount;
var possibleSynthesis = synthesisCount > 0;
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: 260.0.2
bundleVersion: 260.0.3
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down Expand Up @@ -168,7 +168,7 @@ PlayerSettings:
iPhone: 0
tvOS: 0
overrideDefaultApplicationIdentifier: 1
AndroidBundleVersionCode: 274
AndroidBundleVersionCode: 275
AndroidMinSdkVersion: 24
AndroidTargetSdkVersion: 34
AndroidPreferredInstallLocation: 2
Expand Down

0 comments on commit f7c956a

Please sign in to comment.