Skip to content

Commit

Permalink
Merge pull request #29 from AnimatedSwine37/main
Browse files Browse the repository at this point in the history
Fix not advancing time after working at the pub
  • Loading branch information
TekkaGB authored Aug 4, 2022
2 parents 59f6011 + b75c144 commit 6042768
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion field/pack/fd007_001/f007.flow
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ void NightOrder()
case 2:
CLOSE_MSG_WIN();
SHIROKU_PUB();
CALL_FIELD(8, 2, 3, 0);
if ( BIT_CHK( 2081 ) == 1 )
commu_yoru();
else
CALL_FIELD(8, 2, 3, 0);
break;
case 3:
CLOSE_MSG_WIN();
Expand Down
7 changes: 5 additions & 2 deletions field/pack/fd010_002/f010.flow
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,11 @@ void NightOrder()
case 2:
CLOSE_MSG_WIN();
SHIROKU_PUB();
CALL_FIELD(8, 2, 3, 0);
break;
if ( BIT_CHK( 2081 ) == 1 )
commu_yoru();
else
CALL_FIELD(8, 2, 3, 0);
break;
case 3:
CLOSE_MSG_WIN();
call_velvet_room();
Expand Down

0 comments on commit 6042768

Please sign in to comment.