diff --git a/client/src/ui/NpcInfoPanel.ts b/client/src/ui/NpcInfoPanel.ts index 5932afe..a121e99 100644 --- a/client/src/ui/NpcInfoPanel.ts +++ b/client/src/ui/NpcInfoPanel.ts @@ -513,9 +513,11 @@ export class NpcInfoPanel { this.updateInventory(entity.inventory); } - updateNeeds(needs: { hunger: number; energy: number }): void { + updateNeeds(needs: { hunger: number; thirst: number; energy: number; productivity: number }): void { this.setNeedBar('Hunger', needs.hunger); + this.setNeedBar('Thirst', needs.thirst); this.setNeedBar('Energy', needs.energy); + this.setNeedBar('Productivity', needs.productivity); } private updateInventory(inventory?: Record): void {