Limit length of longer usernames

pull/21/head
Rick Carlino 2018-11-20 20:43:48 -06:00
parent c5e0bbaef8
commit 6ceffd9098
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ class CursedMenu(object):
if this_garden[plant_id]: if this_garden[plant_id]:
if not this_garden[plant_id]["dead"]: if not this_garden[plant_id]["dead"]:
this_plant = this_garden[plant_id] this_plant = this_garden[plant_id]
plant_table.append((this_plant["owner"], plant_table.append((this_plant["owner"][:14],
this_plant["age"], this_plant["age"],
int(this_plant["score"]), int(this_plant["score"]),
this_plant["description"])) this_plant["description"]))