From df84579fb9647636b532c0443636f08ffe7699af Mon Sep 17 00:00:00 2001 From: insert Date: Sat, 10 Aug 2024 15:31:52 -0400 Subject: [PATCH] Update --- gameutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameutils.py b/gameutils.py index e70529f..4315352 100644 --- a/gameutils.py +++ b/gameutils.py @@ -22,7 +22,7 @@ class GameView(nextcord.ui.View): found = False for i in range(len(ogmsg)): if ogmsg[i].startswith("~"): - message = str(message) + str(ogmsg[i]) + "\n" + message = f"{message}{ogmsg[i]}\n" continue if not found: newmsg = "~~" + ogmsg[i] + "~~"