Things
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user