Skip to content

Commit

Permalink
Fix timestamp for games added to searcher through /move
Browse files Browse the repository at this point in the history
  • Loading branch information
Ooglely committed Dec 5, 2024
1 parent b93dfc0 commit 5858e0e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pug/pug.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
"""Commands for generating teams in pugs."""

from itertools import combinations
import random
import time
from typing import Optional, Dict, List

import nextcord
Expand Down Expand Up @@ -793,7 +795,7 @@ async def move(
)
except LookupError:
last_players = []
timestamp = 0
timestamp = round(time.time()) - 7200
print(last_players)
for player in last_players:
if player.discord not in [
Expand Down

0 comments on commit 5858e0e

Please sign in to comment.