Changeset 8971
- Timestamp:
- Dec 13, 2011, 11:20:20 PM (13 years ago)
- Location:
- code/branches/spaceraceTwo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/spaceraceTwo/data/levels/Spacerace2.oxw
r8968 r8971 105 105 </SpaceShip> 106 106 107 <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff 2/>107 <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff /> 108 108 109 109 -
code/branches/spaceraceTwo/src/modules/gametypes/SpaceRace.cc
r8970 r8971 102 102 for(ObjectList<Engine>::iterator it = ObjectList<Engine>::begin(); it; ++it) 103 103 { 104 if(it->getMaxSpeedFront()>0) 104 it->setActive(false); 105 /*if(it->getMaxSpeedFront()>0) 105 106 { 106 107 this->maxSpeedBack_=it->getMaxSpeedBack(); … … 112 113 it->setMaxSpeedFront(0); 113 114 it->setMaxSpeedLeftRight(0); 114 it->setMaxSpeedUpDown(0); 115 it->setMaxSpeedUpDown(0);*/ 115 116 } 116 117 this->addBots(this->numberOfBots_); … … 125 126 for(ObjectList<Engine>::iterator it = ObjectList<Engine>::begin(); it; ++it) 126 127 { 127 it->setMaxSpeedBack(this->maxSpeedBack_); 128 it->setActive(true); 129 /*it->setMaxSpeedBack(this->maxSpeedBack_); 128 130 it->setMaxSpeedFront(this->maxSpeedFront_); 129 131 it->setMaxSpeedLeftRight(this->maxSpeedLeftRight_); 130 it->setMaxSpeedUpDown(this->maxSpeedUpDown_); 132 it->setMaxSpeedUpDown(this->maxSpeedUpDown_);*/ 131 133 } 132 134 this->cantMove_= false;
Note: See TracChangeset
for help on using the changeset viewer.