mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
HTML nelle descrizioni delle carte
This commit is contained in:
parent
4376c6b12b
commit
ea2b38b437
1 changed files with 6 additions and 0 deletions
6
bot.py
6
bot.py
|
@ -221,6 +221,12 @@ while True:
|
|||
# Nessun effetto
|
||||
if 'text' not in r:
|
||||
r['text'] = "_Nessun effetto._"
|
||||
# HTML nella descrizione
|
||||
r['text'].replace("<b>", "*")
|
||||
r['text'].replace("</b>", "*")
|
||||
r['text'].replace("<i>", "_")
|
||||
r['text'].replace("</i>", "_")
|
||||
r['text'].replace("$", "")
|
||||
# Nessuna rarità
|
||||
if 'rarity' not in r:
|
||||
r['rarity'] = "None"
|
||||
|
|
Loading…
Reference in a new issue