Fixed an interesting bug

This commit is contained in:
Yessiest 2022-04-03 20:20:36 +04:00
parent 08c43f8b04
commit 7bc7ef9549
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ local function purify_strings(msg,input)
text = text:gsub("<@(%D*)"..id..">",substitution) text = text:gsub("<@(%D*)"..id..">",substitution)
end end
text = text:gsub("@everyone","") text = text:gsub("@everyone","")
text = text:gsub("@here","")
return text return text
end end