Comparing Structs within an array

Ok. It seems you have to add const after your Argumentlist.

bool operator==(const FInventoryItem& OtherItem) const
{
    return ...
}

This worked in my project :slight_smile:

Good luck