1
Fork 0
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:
Steffo 2016-01-20 21:45:16 +01:00
parent 4376c6b12b
commit ea2b38b437

6
bot.py
View file

@ -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"