[ogs-changes] dist/c++/ogs/combat/actions Delay.cpp,1.2,1.3 Refocus.cpp,1.2,1.3
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-03-29 02:11:01
|
Update of /cvsroot/ogs/dist/c++/ogs/combat/actions
In directory sc8-pr-cvs1:/tmp/cvs-serv24985/combat/actions
Modified Files:
Delay.cpp Refocus.cpp
Log Message:
See C++ ChangeLog (Mar 28) for details.
Index: Delay.cpp
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/combat/actions/Delay.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Delay.cpp 5 Feb 2003 06:01:27 -0000 1.2
--- Delay.cpp 29 Mar 2003 02:10:27 -0000 1.3
***************
*** 51,55 ****
*/
Delay::Initiative Delay::getLowestInitiative () const {
! Modifiers initiative = _combatant.creature.getInitiative ();
return (-10 - initiative.getValue ());
}
--- 51,55 ----
*/
Delay::Initiative Delay::getLowestInitiative () const {
! Modifiers initiative = _combatant.creature->getInitiative ();
return (-10 - initiative.getValue ());
}
Index: Refocus.cpp
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/combat/actions/Refocus.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Refocus.cpp 5 Feb 2003 06:01:27 -0000 1.2
--- Refocus.cpp 29 Mar 2003 02:10:28 -0000 1.3
***************
*** 46,50 ****
*/
void Refocus::performAction () {
! Modifiers initiative = _combatant.creature.getInitiative ();
_combatant.initiative = 20 + initiative.getValue ();
--- 46,50 ----
*/
void Refocus::performAction () {
! Modifiers initiative = _combatant.creature->getInitiative ();
_combatant.initiative = 20 + initiative.getValue ();
|