Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 30, 2007, 7:39:47 PM (18 years ago)
Author:
snellen
Message:

corrected typo in worldentity → setVisibiliy to setVisibility

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/projectiles/hbolt.cc

    r10505 r10511  
    5959  this->halo->setSize(.65, .65);
    6060  this->halo->setTexture("hbolt_halo2.png");
    61   this->halo->setVisibiliy(false);
     61  this->halo->setVisibility(false);
    6262
    6363}
     
    8686void HBolt::activate()
    8787{
    88   this->halo->setVisibiliy(true);
     88  this->halo->setVisibility(true);
    8989  this->origList = this->getOMListNumber();
    9090  this->toList(OM_ENVIRON);
     
    109109void HBolt::deactivate()
    110110{
    111   this->halo->setVisibiliy(false);
     111  this->halo->setVisibility(false);
    112112  assert (HBolt::explosionParticles != NULL);
    113113  HBolt::explosionParticles->removeEmitter(this->emitter);
Note: See TracChangeset for help on using the changeset viewer.