From db08f718dfab81938e514b8ad736c59b26a25e1a Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 15 Nov 2024 16:36:18 +0200 Subject: [PATCH] lock stealth on /h/chudrama and /h/the_donald --- files/routes/holes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/holes.py b/files/routes/holes.py index a99158d87..9a8b505db 100644 --- a/files/routes/holes.py +++ b/files/routes/holes.py @@ -744,7 +744,7 @@ def hole_unpin(v, pid): @auth_required def hole_stealth(v, hole): hole = get_hole(hole) - if hole.name in {'mnn','glory','racist'} and v.admin_level < PERMS["MODS_EVERY_HOLE"]: + if hole.name in {'glory','racist','chudrama','the_donald'} and v.admin_level < PERMS["MODS_EVERY_HOLE"]: stop(403) if not v.mods_hole(hole.name): stop(403)