- Timestamp:
- Aug 1, 2011, 7:09:29 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/modules/questsystem/QuestHint.cc
r7552 r8811 74 74 QuestManager::getInstance().registerHint(this); // Registers the QuestHint with the QuestManager. 75 75 76 COUT(4) << "New QuestHint {" << this->getId() << "} created." << std::endl;76 orxout(verbose, context::quests) << "New QuestHint {" << this->getId() << "} created." << endl; 77 77 } 78 78 … … 120 120 else 121 121 { 122 COUT(4) << "An already active questHint was trying to get activated." << std::endl;122 orxout(verbose, context::quests) << "An already active questHint was trying to get activated." << endl; 123 123 return false; 124 124 } 125 125 } 126 126 127 COUT(4) << "A hint of a non-active quest was trying to get activated." << std::endl;127 orxout(verbose, context::quests) << "A hint of a non-active quest was trying to get activated." << endl; 128 128 return false; 129 129 }
Note: See TracChangeset
for help on using the changeset viewer.