Skip to content

Commit e9cd049

Browse files
committed
Fix Home sorter not recognizing empty slots
1 parent d66c896 commit e9cd049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SerialPrograms/Source/PokemonHome/Programs/PokemonHome_BoxSorting.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ void BoxSorting::program(SingleSwitchProgramEnvironment& env, ProControllerConte
566566
ss << current_box_value;
567567

568568
//checking color to know if a pokemon is on the slot or not
569-
if(current_box_value < 5){
569+
if(current_box_value < 10){
570570
box_render.add(COLOR_RED, slot_box);
571571
stats.empty++;
572572
env.update_stats();

0 commit comments

Comments
 (0)