- Timestamp:
- Oct 24, 2015, 10:51:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/fabienHS15/src/modules/weapons/munitions/LaserMunition.cc
r9667 r10688 28 28 29 29 /** 30 @file LaserMunition. h30 @file LaserMunition.cc 31 31 @brief Implementation of the LaserMunition class. 32 32 */ … … 43 43 RegisterObject(LaserMunition); 44 44 45 this->maxMunitionPerMagazine_ = 20;46 this->maxMagazines_ = 1 ;47 this->magazines_ = 1 ;45 this->maxMunitionPerMagazine_ = 10; 46 this->maxMagazines_ = 10; 47 this->magazines_ = 10; 48 48 49 this->bUseSeparateMagazines_ = false; 50 this->bStackMunition_ = true; 49 this->deployment_ = DEPLOYMENT_SEPARATE; 51 50 52 51 this->bAllowMunitionRefilling_ = true; … … 55 54 this->replenishInterval_ = 0.5f; 56 55 this->replenishMunitionAmount_ = 1; 56 57 this->reloadTime_ = 0.8f; 57 58 } 58 59 }
Note: See TracChangeset
for help on using the changeset viewer.