forked from mirror/openmw-tes3mp
cout that should be cerr
This commit is contained in:
parent
9e5225bb6f
commit
a72af4a1a3
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ void MWWorld::LocalScripts::add (const std::string& scriptName, const Ptr& ptr)
|
|||
for (std::list<std::pair<std::string, Ptr> >::iterator iter = mScripts.begin(); iter!=mScripts.end(); ++iter)
|
||||
if (iter->second==ptr)
|
||||
{
|
||||
std::cout << "warning, tried to add local script twice for " << ptr.getCellRef().getRefId() << std::endl;
|
||||
std::cerr << "warning, tried to add local script twice for " << ptr.getCellRef().getRefId() << std::endl;
|
||||
remove(ptr);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue