mirror of
https://github.com/RYGhub/royalnet.git
synced 2025-02-17 10:53:57 +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)
|
db.session.add(steam)
|
||||||
try:
|
try:
|
||||||
dota = db.Dota.get_or_create(steam.steam_id)
|
dota = db.Dota.get_or_create(steam.steam_id)
|
||||||
except KeyboardInterrupt:
|
except:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
db.session.add(dota)
|
db.session.add(dota)
|
||||||
try:
|
try:
|
||||||
rl = db.RocketLeague.get_or_create(steam.steam_id)
|
rl = db.RocketLeague.get_or_create(steam.steam_id)
|
||||||
except KeyboardInterrupt:
|
except:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
db.session.add(rl)
|
db.session.add(rl)
|
||||||
|
|
|
@ -52,4 +52,8 @@ table.rl {
|
||||||
|
|
||||||
.rl-unranked {
|
.rl-unranked {
|
||||||
color: grey;
|
color: grey;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
cursor: pointer !important;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue