[atlantik-cvs] CVS: kdegames/atlantik/client atlantik.cpp,1.148,1.149 main.h,1.33,1.34
| Newsgroups | gmane.comp.kde.devel.atlantik |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/kde/kdegames/atlantik/client In directory office:/tmp/cvs-serv10552/client Modified Files: atlantik.cpp main.h Log Message: bugfix for bug 54516 (auctions enabled in menu when they should not be) Index: atlantik.cpp =================================================================== RCS file: /home/kde/kdegames/atlantik/client/atlantik.cpp,v retrieving revision 1.148 retrieving revision 1.149 diff -u -d -r1.148 -r1.149 --- atlantik.cpp 22 Jun 2003 00:12:18 -0000 1.148 +++ atlantik.cpp 22 Jun 2003 23:44:19 -0000 1.149 @@ -546,7 +546,7 @@ m_roll->setEnabled(player->canRoll()); m_buyEstate->setEnabled(player->canBuy()); - m_auctionEstate->setEnabled(player->canBuy()); + m_auctionEstate->setEnabled(player->canAuction()); // TODO: Should be more finetuned, but monopd doesn't send can_endturn can_usejailcard can_payjail can_jailroll yet m_endTurn->setEnabled(player->hasTurn() && !(player->canRoll() || player->canBuy() || player->inJail())); Index: main.h =================================================================== RCS file: /home/kde/kdegames/atlantik/client/main.h,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- main.h 17 Jun 2003 18:21:28 -0000 1.33 +++ main.h 22 Jun 2003 23:44:19 -0000 1.34 @@ -18,7 +18,7 @@ #define ATLANTIK_MAIN_H #define ATLANTIK_VERSION 060 -#define ATLANTIK_VERSION_STRING "0.6.0 (CVS >= 20030617)" +#define ATLANTIK_VERSION_STRING "0.6.0 (CVS >= 20030623)" #define ATLANTIK_VERSION_MAJOR 0 #define ATLANTIK_VERSION_MINOR 6 #define ATLANTIK_VERSION_RELEASE 0