Skip to content

Commit

Permalink
TSAGE: R2R - Fix discard of own selected station when handling the me…
Browse files Browse the repository at this point in the history
…teor card effect
  • Loading branch information
Strangerke committed Oct 12, 2014
1 parent f866550 commit 64979e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/tsage/ringworld2/ringworld2_scenes1.cpp
Expand Up @@ -3950,7 +3950,7 @@ void Scene1337::Action10::signal() {

for (int i = 0; i <= 7; i++) {
if (scene->_gameBoardSide[2]._outpostStation[i].isIn(scene->_selectedCard._stationPos) && (scene->_gameBoardSide[2]._outpostStation[i]._cardId != 0)) {
scene->_actionCard2 = &scene->_gameBoardSide[2]._outpostStation[0];
scene->_actionCard2 = &scene->_gameBoardSide[2]._outpostStation[i];
found2 = true;
break;
}
Expand Down

0 comments on commit 64979e6

Please sign in to comment.