diff --git a/src/EllieBot/_common/Replacements/Impl/ReplacementRegistrator.default.cs b/src/EllieBot/_common/Replacements/Impl/ReplacementRegistrator.default.cs
index 0d8e43f..0ef7df6 100644
--- a/src/EllieBot/_common/Replacements/Impl/ReplacementRegistrator.default.cs
+++ b/src/EllieBot/_common/Replacements/Impl/ReplacementRegistrator.default.cs
@@ -11,12 +11,10 @@ public sealed partial class ReplacementPatternStore
     private void WithDefault()
     {
         Register("%bot.time%",
-            static ()
-                => TimestampTag.FromDateTime(DateTime.UtcNow, TimestampTagStyles.ShortTime).ToString());
+            static () => DateTime.Now.ToShortTimeString());
 
         Register("%bot.date%",
-            static ()
-            => TimestampTag.FromDateTime(DateTime.UtcNow, TimestampTagStyles.ShortTime).ToString());
+            static () => DateTime.Now.ToShortDateString());
     }
 
     private void WithClient()