- Timestamp:
- Aug 1, 2011, 7:09:29 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/modules/questsystem/LocalQuest.cc
r7552 r8811 69 69 SUPER(LocalQuest, XMLPort, xmlelement, mode); 70 70 71 COUT(4) << "New LocalQuest {" << this->getId() << "} created." << std::endl;71 orxout(verbose, context::quests) << "New LocalQuest {" << this->getId() << "} created." << endl; 72 72 } 73 73 … … 85 85 if(!this->isFailable(player)) // Checks whether the quest can be failed. 86 86 { 87 COUT(4) << "A non-failable quest was trying to be failed." << std::endl;87 orxout(verbose, context::quests) << "A non-failable quest was trying to be failed." << endl; 88 88 return false; 89 89 } … … 108 108 if(!this->isCompletable(player)) // Checks whether the Quest can be completed. 109 109 { 110 COUT(4) << "A non-completable quest was trying to be completed." << std::endl;110 orxout(verbose, context::quests) << "A non-completable quest was trying to be completed." << endl; 111 111 return false; 112 112 }
Note: See TracChangeset
for help on using the changeset viewer.