I added instruction "wait 90 seconds" and it produced this code
const waitTime = luxon.Duration.fromObject({ seconds: 90 })
await luxon.DateTime.local().plus(waitTime).toJSDate()
But this doesn't seem to be working, when I run the bot, it steps over this and goes immediately to next message
How can I fix this?