Skip to content

Commit e063435

Browse files
committed
oops again
1 parent 49233c9 commit e063435

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

SerialPrograms/Source/PokemonSwSh/Programs/DenHunting/PokemonSwSh_DaySkipperEU.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ void DaySkipperEU::run_switch2(SingleSwitchProgramEnvironment& env, ProControlle
177177
if (day == 31){
178178
day = 1;
179179
}else{
180+
day++;
180181
remaining_skips--;
181182
stats.issued++;
182183
env.update_stats();

SerialPrograms/Source/PokemonSwSh/Programs/DenHunting/PokemonSwSh_DaySkipperJPN.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ void DaySkipperJPN::run_switch2(SingleSwitchProgramEnvironment& env, ProControll
158158
if (day == 31){
159159
day = 1;
160160
}else{
161+
day++;
161162
remaining_skips--;
162163
stats.issued++;
163164
env.update_stats();

SerialPrograms/Source/PokemonSwSh/Programs/DenHunting/PokemonSwSh_DaySkipperUS.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ void DaySkipperUS::run_switch2(SingleSwitchProgramEnvironment& env, ProControlle
176176
if (day == 31){
177177
day = 1;
178178
}else{
179+
day++;
179180
remaining_skips--;
180181
stats.issued++;
181182
env.update_stats();

0 commit comments

Comments
 (0)