> For the complete documentation index, see [llms.txt](https://docs.picklemods.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.picklemods.com/free-resources/pickle-consumables/hotfixes.md).

# Hotfixes

## QB-Hud not updating

Inside pickle\_consumables/bridge/qb/server.lua on line 61, look for SetMetaData: and add below it

```
TriggerClientEvent('hud:client:UpdateNeeds', source, xPlayer.PlayerData.metadata.hunger, xPlayer.PlayerData.metadata.thirst)
TriggerClientEvent('hud:client:UpdateStress', source, xPlayer.PlayerData.metadata.stress)
```

This will trigger the update to the HUD. Typically applies to most base HUDS.
