Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 10, 2008, 1:39:50 PM (15 years ago)
Author:
dafrick
Message:

Added some more output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/questsystem3/src/orxonox/objects/quest/Quest.cc

    r2352 r2375  
    377377        this->setStatus(player, questStatus::failed);
    378378       
     379        COUT(4) << "Quest {" << this->getId() << "} is failed for player: " << player << " ." <<std::endl;
     380       
    379381        this->getDescription()->sendFailQuestNotification();
    380382        return true;
     
    394396        this->setStatus(player, questStatus::completed);
    395397       
     398        COUT(4) << "Quest {" << this->getId() << "} is completed for player: " << player << " ." <<std::endl;
     399       
    396400        this->getDescription()->sendCompleteQuestNotification();
    397401        return true;
     
    413417            return false;
    414418        }
     419       
     420        COUT(4) << "Quest {" << this->getId() << "} is started for player: " << player << " ." <<std::endl;
    415421       
    416422        QuestListener::advertiseStatusChange(this->listeners_, "start"); //!< Tells the QuestListeners, that the status has changed to active.
Note: See TracChangeset for help on using the changeset viewer.