Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 23, 2011, 2:14:29 PM (13 years ago)
Author:
eceline
Message:

level file added

Location:
code/branches/spaceraceTwo/src/orxonox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/spaceraceTwo/src/orxonox/gametypes/Gametype.cc

    r8918 r8944  
    134134               
    135135            }
    136                  
    137                 this->checkStart();
     136           
     137             const std::string& message = "Gametype should start";
     138         orxout()<< message << endl;   
     139                this->start();
     140                const std::string& message2 = "Gametype should have started";
     141         orxout()<< message2 << endl;
     142         
    138143        }
    139144        else if (!this->gtinfo_->hasEnded())
     
    144149
    145150    void Gametype::start()
    146     {
     151    { const std::string& message = "Gametype starts";
     152         orxout()<< message << endl;
     153         
    147154        this->addBots(this->numberOfBots_);
    148155
     
    150157
    151158        this->spawnPlayersIfRequested();
     159       
     160         
    152161    }
    153162
  • code/branches/spaceraceTwo/src/orxonox/infos/GametypeInfo.cc

    r8898 r8944  
    164164    {
    165165        if(this->bStarted_)
    166             return;
     166           {const std::string& message = "bStarted true";
     167         orxout()<< message << endl; return;}
    167168       
    168169        this->bStarted_ = true;
    169170        this->changedStarted();
     171       
     172        const std::string& message = "bStarted true";
     173         orxout()<< message << endl;
    170174    }
    171175
Note: See TracChangeset for help on using the changeset viewer.