Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32431
Modified Files:
spawnregions.h
Log Message:
little better standard conformance
Index: spawnregions.h
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/spawnregions.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** spawnregions.h 10 Aug 2004 03:15:57 -0000 1.27
--- spawnregions.h 13 Aug 2004 19:51:04 -0000 1.28
***************
*** 166,170 ****
while ( it != this->end() )
{
! numNpcs += it->second->npcs();
++it;
}
--- 166,170 ----
while ( it != this->end() )
{
! numNpcs += (*it).second->npcs();
++it;
}
***************
*** 178,182 ****
while ( it != this->end() )
{
! numItems += it->second->items();
++it;
}
--- 178,182 ----
while ( it != this->end() )
{
! numItems += (*it).second->items();
++it;
}
***************
*** 190,194 ****
while ( it != this->end() )
{
! numNpcs += it->second->maxNpcs();
++it;
}
--- 190,194 ----
while ( it != this->end() )
{
! numNpcs += (*it).second->maxNpcs();
++it;
}
***************
*** 202,206 ****
while ( it != this->end() )
{
! numItems += it->second->maxItems();
++it;
}
--- 202,206 ----
while ( it != this->end() )
{
! numItems += (*it).second->maxItems();
++it;
}
|