Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 15, 2008, 11:33:46 PM (16 years ago)
Author:
scheusso
Message:

found a 'bug' in projectile - we set the networkid now everytime in constructor of projectile

Location:
code/branches/merge/src/orxonox/objects
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/merge/src/orxonox/objects/Projectile.cc

    r1263 r1306  
    6363
    6464        this->destroyTimer_.setTimer(this->lifetime_, false, this, createExecutor(createFunctor(&Projectile::destroyObject)));
     65        this->classID = this->getIdentifier()->getNetworkID(); // TODO: remove this hack
     66//        COUT(3) << this->classID << std::endl;
    6567    }
    6668
  • code/branches/merge/src/orxonox/objects/SpaceShip.cc

    r1299 r1306  
    456456        if (this->bLMousePressed_ && this->timeToReload_ <= 0)
    457457        {
     458         
    458459            Projectile *p = new Projectile(this);
     460           
    459461            p->setBacksync(true);
    460462            this->timeToReload_ = this->reloadTime_;
Note: See TracChangeset for help on using the changeset viewer.