# Inventory

Step 1: Navigate to `mm_airdrop/shared/init.lua`

Step 2: If you have renamed the core folder, then change the name. <mark style="color:purple;">Ex: I have renamed qb-inventory to mm\_inventory</mark>

```lua
if GetResourceState('ox_inventory') == 'started' then
    Shared.Inventory = 'ox' -- don't rename it
elseif GetResourceState('mm_inventory') == 'started' then
    Shared.Inventory = 'qb' -- don't rename it
else
    Shared.Inventory = false
    Shared.Ready = false
    error('No inventory found', 0)
end
```

Step 3: Consider Checking the `mm_airdrop/client/bridge` and `mm_airdrop/server/bridge` folder for renaming the exports of the inventory script
