Add ability to move stuff around, fix spelling.

This commit is contained in:
James Cole
2022-09-24 17:43:49 +02:00
parent 600fa388c1
commit a9f2741282
14 changed files with 344 additions and 53 deletions

View File

@@ -399,6 +399,9 @@ class Steam
"\x20", // plain old normal space
];
// clear zalgo text
$string = preg_replace('/\pM/u', '', $string);
return str_replace($search, '', $string);
}