Skip to content

Commit

Permalink
TITANIC: Fix leaving Arboretum after changing seasons
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Jan 14, 2017
1 parent efa1c99 commit 1aeaab0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/titanic/moves/exit_arboretum.cpp
Expand Up @@ -93,12 +93,12 @@ bool CExitArboretum::ChangeSeasonMsg(CChangeSeasonMsg *msg) {
}

bool CExitArboretum::TurnOn(CTurnOn *msg) {
_enabled = false;
_enabled = true;
return true;
}

bool CExitArboretum::TurnOff(CTurnOff *msg) {
_enabled = true;
_enabled = false;
return true;
}

Expand Down

0 comments on commit 1aeaab0

Please sign in to comment.