From 611ca173665d7ea927799f200058ba531563d29b Mon Sep 17 00:00:00 2001 From: Reff Date: Wed, 6 Jul 2022 00:42:57 +0100 Subject: [PATCH] Fixed AutoFish delays ImGui labels having same id --- cheat-library/src/user/cheat/world/AutoFish.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cheat-library/src/user/cheat/world/AutoFish.cpp b/cheat-library/src/user/cheat/world/AutoFish.cpp index 23889ba..1360826 100644 --- a/cheat-library/src/user/cheat/world/AutoFish.cpp +++ b/cheat-library/src/user/cheat/world/AutoFish.cpp @@ -34,12 +34,12 @@ namespace cheat::feature void AutoFish::DrawMain() { ConfigWidget("Enabled", f_Enabled, "Automatically catch fish."); - ConfigWidget("Delay (ms)", f_DelayBeforeCatch, 100, 500, 4000, "Fish will be caught after this delay (in ms)."); + ConfigWidget("Catch Delay (ms)", f_DelayBeforeCatch, 100, 500, 4000, "Fish will be caught after this delay (in ms)."); ImGui::Spacing(); ConfigWidget(f_AutoRecastRod, "If enabled, rod will recasted. Without visualization."); - ConfigWidget("Delay (ms)", f_DelayBeforeRecast, 10, 100, 4000, "Rod will be recast after this delay (in ms)."); + ConfigWidget("Recast Delay (ms)", f_DelayBeforeRecast, 10, 100, 4000, "Rod will be recast after this delay (in ms)."); } bool AutoFish::NeedStatusDraw() const