LittleLightForDestiny / littlelight

Little Light is an inventory manager/companion app for Destiny 2 for both iOS and Android. It helps guardians move their gear and track their ingame progress.
MIT License
159 stars 31 forks source link

Mods not showing up on collection item details #265

Closed joaopmarquesini closed 1 year ago

joaopmarquesini commented 1 year ago

image

bill0042 commented 1 year ago

Looks like its being caused by this code in DefinitionItemSocketControllerBloc, lines 48-52. Commenting it out makes it work.

/// Workaround to avoid gigantic plug lists on some weapons final reusable = socket.reusablePlugItems; if (reusable != null && reusable.length > 3) { return []; }

joaopmarquesini commented 1 year ago

Yeah but then we need another fix for kill trackers not taking the entire screen

bill0042 commented 1 year ago

That was only for the trackers? I'll look for another solution like maybe only returning when the first plug is a kill tracker.