diff --git a/src/commands/gambling/daily.rs b/src/commands/gambling/daily.rs
index 3024228..c076736 100644
--- a/src/commands/gambling/daily.rs
+++ b/src/commands/gambling/daily.rs
@@ -1,7 +1,7 @@
use crate::{Context, Error};
use poise::serenity_prelude::UserId;
-use sqlx::{types::chrono::{DateTime, Local, TimeZone}, PgExecutor, Row};
+use sqlx::{types::chrono::{DateTime, Utc, TimeZone}, PgExecutor, Row};
use std::time::Duration;
@@ -31,7 +31,7 @@ where
Ok(())
}
-async fn get_last<'a, E>(db: E, user: UserId) -> Result