diff --git a/src/Bot/Commands/Rpg/Cookies.cs b/src/Bot/Commands/Rpg/Cookies.cs index 0bdbd10..15e6d19 100644 --- a/src/Bot/Commands/Rpg/Cookies.cs +++ b/src/Bot/Commands/Rpg/Cookies.cs @@ -148,7 +148,7 @@ namespace Geekbot.Bot.Commands.Rpg GuildId = Context.Guild.Id.AsLong(), UserId = userId.AsLong(), Cookies = 0, - LastPayout = DateTimeOffset.MinValue + LastPayout = DateTimeOffset.MinValue.ToUniversalTime() }; var newUser = _database.Cookies.Add(user).Entity; await _database.SaveChangesAsync(); diff --git a/src/Commands/Karma/Karma.cs b/src/Commands/Karma/Karma.cs index 6abed5e..a02b388 100644 --- a/src/Commands/Karma/Karma.cs +++ b/src/Commands/Karma/Karma.cs @@ -104,7 +104,7 @@ public class Karma GuildId = _guildId, UserId = userId, Karma = 0, - TimeOut = DateTimeOffset.MinValue + TimeOut = DateTimeOffset.MinValue.ToUniversalTime() }; var newUser = _database.Karma.Add(user).Entity; await _database.SaveChangesAsync();