aboutsummaryrefslogtreecommitdiff
path: root/exp
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-08-31 16:16:36 +0200
committerWilliam Hergès <william@herges.fr>2025-08-31 16:16:36 +0200
commit6ec3cf37300c1faf92c62640d1d5fe2638749c97 (patch)
tree30bdb68ad785344700c29070a56bb82e27e8371b /exp
parent1200d0aef43d2ba771f3262e5adf23b8dc8577d0 (diff)
feat(debug): decrease reduce time
Diffstat (limited to 'exp')
-rw-r--r--exp/functions.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/exp/functions.go b/exp/functions.go
index ebd0761..2608094 100644
--- a/exp/functions.go
+++ b/exp/functions.go
@@ -53,7 +53,7 @@ func LevelXP(level uint) uint {
func TimeStampNDaysBefore(n uint) string {
var unix time.Time
if gokord.Debug {
- unix = time.Unix(time.Now().Unix()-int64(n*6), 0) // reduce time for debug
+ unix = time.Unix(time.Now().Unix()-int64(n), 0) // reduce time for debug
} else {
unix = time.Unix(time.Now().Unix()-int64(n*24*60*60), 0)
}