From 7e8978044ff3935a6fe2f62dd6aa9fc22225c56c Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Fri, 3 Jan 2025 13:22:56 +0100 Subject: [PATCH] Have partitioner split on "," instead of space --- Modules/Whoer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Whoer.lua b/Modules/Whoer.lua index a3d581a..c3c6671 100644 --- a/Modules/Whoer.lua +++ b/Modules/Whoer.lua @@ -373,7 +373,7 @@ function shared.Whoer.Init() ---@return string[] local function Partition(text, size) local words = {} - for word in text:gmatch("%S+") do + for word in text:gmatch("[^,]+") do words[#words + 1] = word end