Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
navining committed Jan 7, 2021
1 parent 001edb6 commit f9f5e50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/src/plugins/game/engine/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async def start(self):
self.print_str = ""
time.sleep(5)
self.printCase("下半场结束")
await self.matcher.finish("终场比分:\n" +"主 " + self.home.coach.name + self.home_point + ":" + self.away_point + self.away.coach.name + " 客")
await self.matcher.finish("终场比分:\n" +"主 " + self.home.coach.name + str(self.home_point) + ":" + str(self.away_point) + self.away.coach.name + " 客")



Expand Down

0 comments on commit f9f5e50

Please sign in to comment.