[ogs-changes] dist/c++/ogs/feats BonusFeat.h,1.2,1.3
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-03-25 08:13:31
|
Update of /cvsroot/ogs/dist/c++/ogs/feats
In directory sc8-pr-cvs1:/tmp/cvs-serv6091
Modified Files:
BonusFeat.h
Log Message:
Changed group from General to Special.
Index: BonusFeat.h
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/feats/BonusFeat.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** BonusFeat.h 25 Mar 2003 06:13:13 -0000 1.2
--- BonusFeat.h 25 Mar 2003 08:13:26 -0000 1.3
***************
*** 123,134 ****
/**
* Determine the group that this feat belongs to. Bonus feats are
! * general feats by themselves. After a feat is selected, the group of
* a bonus feat is the same as the selected feat.
*
! * @return Feat::GENERAL or group of selected feat.
*/
inline Feat::Group
BonusFeat::getGroup () const {
! return (_feat != NULL? _feat->getGroup (): Feat::GENERAL);
}
--- 123,134 ----
/**
* Determine the group that this feat belongs to. Bonus feats are
! * special feats by themselves. After a feat is selected, the group of
* a bonus feat is the same as the selected feat.
*
! * @return Feat::SPECIAL or group of selected feat.
*/
inline Feat::Group
BonusFeat::getGroup () const {
! return (_feat != NULL? _feat->getGroup (): Feat::SPECIAL);
}
|