From fe0aa7e15e5c8af3b7e0bbe8642bda2dc0eb116d Mon Sep 17 00:00:00 2001 From: Dazed Date: Thu, 27 Apr 2023 18:16:36 -0500 Subject: [PATCH] feat: Add textwrap to armor description --- src/rpgmakermvmz.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rpgmakermvmz.py b/src/rpgmakermvmz.py index 1cc663f..a431f00 100644 --- a/src/rpgmakermvmz.py +++ b/src/rpgmakermvmz.py @@ -358,6 +358,7 @@ def searchNames(name, pbar, context): # Set Data name['name'] = responseList[0].strip('.') if 'Armors' in context: + textwrap.fill(responseList[1], LISTWIDTH) name['description'] = responseList[1] pbar.update(1)