Im using default quick.db, no addons or anything. For some reason I can grab the field
{
xp: 112,
cooldowns: {
daily_cooldown: 1684372047605,
weekly_cooldown: 1684887595281,
rep_cooldown: 0
},
coins: 1064,
job: {},
bank: 0,
rep: 0,
ingame: false,
badges: [ 'alpha' ]
}```
Im trying to set "job" to ```js
{ pay: 200, level: 5, benefits: [], benefits_str: 'No benefits.' }```
But it isnt setting. For some reason when I grab it again it turns back to {}
```js
await handler.database.subtract(`users.${interaction.user.id}.coins`, 50);
console.log(await handler.database.set(`users.${interaction.user.id}.job`, job_obj));```
Heres the code ive been using to set it, my handler has a fillTemplate function on the grab