Skip to content

Commit

Permalink
deploy: 971ea3e
Browse files Browse the repository at this point in the history
  • Loading branch information
Askaholic committed Feb 24, 2024
1 parent 850bf10 commit 1550ab3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lobbyconnection.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ <h1 class="title">Module <code>server.lobbyconnection</code></h1>

import server.metrics as metrics
from server.db import FAFDatabase
from server.timing import datetime_now

from .config import TRACE, config
from .db.models import (
Expand Down Expand Up @@ -722,6 +723,7 @@ <h1 class="title">Module <code>server.lobbyconnection</code></h1>
await self.send({
&#34;command&#34;: &#34;welcome&#34;,
&#34;me&#34;: self.player.to_dict(),
&#34;current_time&#34;: datetime_now().isoformat(),

# For backwards compatibility for old clients. For now.
&#34;id&#34;: self.player.id,
Expand Down Expand Up @@ -2008,6 +2010,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
await self.send({
&#34;command&#34;: &#34;welcome&#34;,
&#34;me&#34;: self.player.to_dict(),
&#34;current_time&#34;: datetime_now().isoformat(),

# For backwards compatibility for old clients. For now.
&#34;id&#34;: self.player.id,
Expand Down Expand Up @@ -4018,6 +4021,7 @@ <h3>Methods</h3>
await self.send({
&#34;command&#34;: &#34;welcome&#34;,
&#34;me&#34;: self.player.to_dict(),
&#34;current_time&#34;: datetime_now().isoformat(),

# For backwards compatibility for old clients. For now.
&#34;id&#34;: self.player.id,
Expand Down

0 comments on commit 1550ab3

Please sign in to comment.