This commit is contained in:
Charles 2001-05-04 23:12:26 +00:00
parent 9ea6f40efa
commit c1386b8903
11 changed files with 177 additions and 2 deletions

View file

@ -20,4 +20,9 @@
void CNpcBubblePlatform::processMovement( int _frames )
{
Pos.vy -= m_data[m_type].speed * _frames;
if ( Pos.vy < 0 )
{
setToShutdown();
}
}