From 8ed9710d0197825354fe4b63b8cff1329f3117ad Mon Sep 17 00:00:00 2001 From: skycatminepokie <52087591+skycatminepokie@users.noreply.github.com> Date: Fri, 29 Nov 2024 19:32:30 -0800 Subject: [PATCH 1/4] Shorten binarysearch tag --- tags/guide/binarysearch.ytag | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tags/guide/binarysearch.ytag b/tags/guide/binarysearch.ytag index c36b68aa..f155211a 100644 --- a/tags/guide/binarysearch.ytag +++ b/tags/guide/binarysearch.ytag @@ -2,10 +2,8 @@ type: text --- -A binary search can be used to quickly find a specific mod causing trouble, which can be especially useful when logs don't give a conclusive answer to your issue. +A binary search helps find a single mod causing trouble. -Start by removing or disabling half of your mods, then test if the problem still occurs. If it does, remove half of the remaining mods and test again. If it doesn't, add back half of the mods you just removed. +Remove or disable half of your mods. If the problem is gone, remove half of the rest and try again. If it's not, or it's a different problem, add back half of the mods you just removed. -Keep in mind you don't have to stick strictly to halves each time, and may have to enable some library mods like Fabric API out of order. - -By repeating this on an increasingly smaller set of mods, you'll find the problematic mod within a few iterations. +You don't have to do only halves each time, and may have to enable some dependency mods out of order. From 75184e169bc6a74b314d5e7c8fc82abe147463d7 Mon Sep 17 00:00:00 2001 From: skycatminepokie <52087591+skycatminepokie@users.noreply.github.com> Date: Fri, 29 Nov 2024 20:02:28 -0800 Subject: [PATCH 2/4] Add binary search tool to binarysearch tag --- tags/guide/binarysearch.ytag | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tags/guide/binarysearch.ytag b/tags/guide/binarysearch.ytag index f155211a..81d3b94e 100644 --- a/tags/guide/binarysearch.ytag +++ b/tags/guide/binarysearch.ytag @@ -7,3 +7,5 @@ A binary search helps find a single mod causing trouble. Remove or disable half of your mods. If the problem is gone, remove half of the rest and try again. If it's not, or it's a different problem, add back half of the mods you just removed. You don't have to do only halves each time, and may have to enable some dependency mods out of order. + +There's also a [tool]() made by the community for doing this automatically. Keep in mind that this is *not* developed by the Fabric team, so please use caution. From 65f27667de171e3a67b7bbf3b873a93678be002b Mon Sep 17 00:00:00 2001 From: skycatminepokie <52087591+skycatminepokie@users.noreply.github.com> Date: Fri, 29 Nov 2024 20:07:36 -0800 Subject: [PATCH 3/4] Clarify "rest" --- tags/guide/binarysearch.ytag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/guide/binarysearch.ytag b/tags/guide/binarysearch.ytag index 81d3b94e..2d23bc61 100644 --- a/tags/guide/binarysearch.ytag +++ b/tags/guide/binarysearch.ytag @@ -4,7 +4,7 @@ type: text A binary search helps find a single mod causing trouble. -Remove or disable half of your mods. If the problem is gone, remove half of the rest and try again. If it's not, or it's a different problem, add back half of the mods you just removed. +Remove or disable half of your mods. If the problem is gone, remove half of the what's left and try again. If it's not, or it's a different problem, add back half of the mods you just removed. You don't have to do only halves each time, and may have to enable some dependency mods out of order. From cfe85a273c25fd72b2e9ab97e17de2c52b85626f Mon Sep 17 00:00:00 2001 From: skycatminepokie <52087591+skycatminepokie@users.noreply.github.com> Date: Fri, 29 Nov 2024 23:53:01 -0800 Subject: [PATCH 4/4] Fix grammar error --- tags/guide/binarysearch.ytag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/guide/binarysearch.ytag b/tags/guide/binarysearch.ytag index 2d23bc61..88f34699 100644 --- a/tags/guide/binarysearch.ytag +++ b/tags/guide/binarysearch.ytag @@ -4,7 +4,7 @@ type: text A binary search helps find a single mod causing trouble. -Remove or disable half of your mods. If the problem is gone, remove half of the what's left and try again. If it's not, or it's a different problem, add back half of the mods you just removed. +Remove or disable half of your mods. If the problem is gone, remove half of what's left and try again. If it's not, or it's a different problem, add back half of the mods you just removed. You don't have to do only halves each time, and may have to enable some dependency mods out of order.