After importing the Inventories package attached to the lesson, I get an error that wasn’t covered in the video:
Assets\Scripts\Abilities\Ability.cs(18,30): error CS0508: ‘Ability.Use(GameObject)’: return type must be ‘void’ to match overridden member ‘ActionItem.Use(GameObject)’
When I tried changing the Use() method from a bool return type to a void return type (commenting out the returns), I got an avalanche of errors. So did commenting out the method entirely. And also when I updated the ActionItem.Use() to be a bool return (returning True). Since the abilities module isn’t covered in this course, how do I correct for this until we get there?