This commit is contained in:
NikolajDanger
2020-03-22 17:55:07 +01:00
parent 49e5f4f6d9
commit 5c76904715
2 changed files with 23 additions and 23 deletions

View File

@ -20,9 +20,9 @@ def setUpDict(cmd : dict):
else:
for x in range(len(keys)):
if x%3 != 2:
result += keys[x] + ": " + str(values[x]) + "\t"
result += "**" + keys[x] + "**" + ": " + str(values[x]) + " "
else:
result += keys[x] + ": " + str(values[x]) + "\n"
result += "**" + keys[x] + "**" + ": " + str(values[x]) + "\n"
return result
else:
return "There doesn't seem to be anything here..."
@ -78,7 +78,7 @@ def characterSheet(character : dict):
text2 = setUpDict(character["Characteristics"])
text3 = setUpDict(character["Skills"])
return name, text1+"\n"+text2+divider+text3
return name, text1+"\n\n"+text2+divider+text3
def charData(user : str,cmd : str):
with open("characters.json", "r") as f: