Basically... I want to have my robot hover over to a chest, count how many occupied slots there are and do something based on that count.
What I tried was:
Assuming that "ic" is "component.inventory_controller"
`ic.getAllStacks(sides.front)`
I was assuming that would offer something along the lines of 'ic.getAllStacks(sides.front).slotsOccupied() which would return what I was looking for... I found 'ic.getAllStacks(sides.front).count()' which I thought would do exactly what I wanted!
Then I found out that did the exact same thing as 'ic.getInventorySize()