Skip to content

Commit 2e90005

Browse files
committed
Increase detection duration for shiny symbol.
1 parent 973a4ed commit 2e90005

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

SerialPrograms/Source/PokemonSV/Programs/Eggs/PokemonSV_EggRoutines.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,11 @@ bool check_baby_info(
757757
gender_detector.make_overlays(overlay_set);
758758
BoxNatureDetector nature_detector(stream.overlay(), LANGUAGE);
759759

760-
const int shiny_ret = wait_until(stream, context, std::chrono::milliseconds(200), {shiny_detector});
760+
const int shiny_ret = wait_until(
761+
stream, context,
762+
std::chrono::milliseconds(500),
763+
{shiny_detector}
764+
);
761765
const bool shiny = (shiny_ret == 0);
762766
VideoSnapshot screen = stream.video().snapshot();
763767

0 commit comments

Comments
 (0)