mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
moar stuff
This commit is contained in:
parent
397bdb4cba
commit
5b8f3bd386
2 changed files with 6 additions and 2 deletions
|
@ -11,13 +11,13 @@ else:
|
|||
db.session.add(steam)
|
||||
try:
|
||||
dota = db.Dota.get_or_create(steam.steam_id)
|
||||
except KeyboardInterrupt:
|
||||
except:
|
||||
pass
|
||||
else:
|
||||
db.session.add(dota)
|
||||
try:
|
||||
rl = db.RocketLeague.get_or_create(steam.steam_id)
|
||||
except KeyboardInterrupt:
|
||||
except:
|
||||
pass
|
||||
else:
|
||||
db.session.add(rl)
|
||||
|
|
|
@ -52,4 +52,8 @@ table.rl {
|
|||
|
||||
.rl-unranked {
|
||||
color: grey;
|
||||
}
|
||||
|
||||
th {
|
||||
cursor: pointer !important;
|
||||
}
|
Loading…
Reference in a new issue