diff --git a/files/assets/images/WPD/patron_badges/26.webp b/files/assets/images/WPD/patron_badges/26.webp index 11be6076c..a6b9c5991 100644 Binary files a/files/assets/images/WPD/patron_badges/26.webp and b/files/assets/images/WPD/patron_badges/26.webp differ diff --git a/files/helpers/const.py b/files/helpers/const.py index a665a9b89..8068a0df5 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -1071,6 +1071,7 @@ tiers={ "(Zombie)": 3, "(Ghost)": 4, "(Survivor)": 5, + "(Jigsaw)": 6, } DISCORD_WELCOME_CHANNEL = "846509313941700618" diff --git a/files/helpers/regex.py b/files/helpers/regex.py index d509813cf..5f91c930b 100644 --- a/files/helpers/regex.py +++ b/files/helpers/regex.py @@ -80,7 +80,7 @@ link_fix_regex = re.compile("(\[.*?\]\()(?!http|/)(.*?\))", flags=re.A) css_url_regex = re.compile('url\(\s*[\'"]?(.*?)[\'"]?\s*\)', flags=re.I|re.A) -procoins_li = (0,2500,5000,10000,25000,50000,125000,250000) +procoins_li = (0,2500,5000,10000,25000,50000,100000,250000) linefeeds_regex = re.compile("([^\n])\n([^\n])", flags=re.A)