From 358781affece626c87e68a207443d231f55089bd Mon Sep 17 00:00:00 2001 From: 6d486f49 Date: Sat, 13 Jun 2026 14:55:58 -0400 Subject: [PATCH] Disabling slop features --- Model/Website/Data/EntityData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Model/Website/Data/EntityData.cs b/Model/Website/Data/EntityData.cs index af85b95..50f0440 100644 --- a/Model/Website/Data/EntityData.cs +++ b/Model/Website/Data/EntityData.cs @@ -9,13 +9,13 @@ public class WebsiteData * Flag for content generated by the AI. Can contain UI that makes no sense, or more importantly, * game data that is not real. Fun to look at, but needs to be thoroughly vetted before it can ever go live. */ - public static bool allowSlopData { get; set; } = true; + public static bool allowSlopData { get; set; } = false; private static bool IsPageAllowed(WebPageModel page) { if (allowSlopData) return true; - return page.Id != 5 && page.Id != 6; + return page.Id != 5 && page.Id != 6 && page.Id != 7; } public static List GetPages()