diff options
-rwxr-xr-x | wiki/wikigen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wiki/wikigen.py b/wiki/wikigen.py index 830082b..4b262d6 100755 --- a/wiki/wikigen.py +++ b/wiki/wikigen.py @@ -737,13 +737,13 @@ def DoQuest(): # Fill stuff in Quest Entry if '<text' in e: a=qnt2(e) - qe.entry.append( a.replace('<text>','').replace('</text>','').strip() ) + qe.entry.append( a.replace('<text>','').replace('</text>','').replace('<text ','<').replace("@@1", "text").replace("@@", "").strip() ) elif '<questgiver' in e: a=qnt2(e) qe.giver=a.replace('<questgiver>','').replace('</questgiver>','').strip() elif '<reward' in e: a=qnt2(e) - qe.reward=a.replace('<reward>','').replace('</reward>','').strip() + qe.reward=a.replace('<reward>','').replace('</reward>','').replace("@@", "text").strip() elif '<coord' in e: a=qnt2(e) b=a.split('>') |