From 2fe81eb961d2e15544dcf26908064d01ca7ebb31 Mon Sep 17 00:00:00 2001 From: DioEgizio <83089242+DioEgizio@users.noreply.github.com> Date: Thu, 8 Sep 2022 10:24:50 +0200 Subject: [PATCH] add binary search --- src/tags.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/tags.json b/src/tags.json index 4729d96..bba1ca5 100644 --- a/src/tags.json +++ b/src/tags.json @@ -27,6 +27,15 @@ "description": "OptiFine is known to cause problems when paired with other mods.\nPlease see [Installing OptiFine Alternatives](https://polymc.org/wiki/getting-started/install-of-alternatives/).\nIf you really want to use OptiFine, see [Installing OptiFine](https://polymc.org/wiki/getting-started/installing-optifine/)" } }, + { + "name": "binary-search", + "aliases": ["thanosmethod"], + "embed": { + "color": "blue", + "title": "Binary Search - method to find mod problems", + "description": "The binary search is a way of finding a faulty thing among a lot of other things, without having to remove the things one-by-one. This is useful for finding a broken mod among hundreds of mods, without having to spend time testing the mods one-by-one.\nThe procedure is simple:\n1. Remove half of the existing things, and put them aside.\n2. Run the program / game.\n3. Does the issue still exist?\nIf YES: Repeat from step 1 with the current things.\nIF NO: Swap out the current things with the ones set aside, and repeat from step 1.\n4. Repeat this process until the problematic thing/s have been found.\n\n Credit to the Quilt Community discord and the Forge Discord for these instructions." + } + }, { "name": "java", "text": "https://polymc.org/wiki/getting-started/installing-java/",