mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 09:23:53 +00:00
Removed unnecessary std::cout messages
This commit is contained in:
parent
133964f0e4
commit
d20178dd56
1 changed files with 0 additions and 7 deletions
|
@ -1,5 +1,4 @@
|
|||
#include "aiescort.hpp"
|
||||
#include <iostream>
|
||||
#include <cmath>
|
||||
|
||||
#include "character.hpp"
|
||||
|
@ -45,8 +44,6 @@ MWMechanics::AiEscort::AiEscort(const std::string &actorId,int duration, float x
|
|||
{
|
||||
MWWorld::TimeStamp startTime = MWBase::Environment::get().getWorld()->getTimeStamp();
|
||||
mStartingSecond = ((startTime.getHour() - int(startTime.getHour())) * 100);
|
||||
std::cout << "AiEscort Started at: " << mStartingSecond << " For: "
|
||||
<< duration << "Started At: " << mStartingSecond << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -64,8 +61,6 @@ MWMechanics::AiEscort::AiEscort(const std::string &actorId,const std::string &ce
|
|||
{
|
||||
MWWorld::TimeStamp startTime = MWBase::Environment::get().getWorld()->getTimeStamp();
|
||||
mStartingSecond = ((startTime.getHour() - int(startTime.getHour())) * 100);
|
||||
std::cout << "AiEscort Started at: " << mStartingSecond << " For: "
|
||||
<< duration << "Started At: " << mStartingSecond << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -86,8 +81,6 @@ bool MWMechanics::AiEscort::execute (const MWWorld::Ptr& actor)
|
|||
std::cout << "AiEscort: " << currentSecond << " time: " << currentSecond - mStartingSecond << std::endl;
|
||||
if(currentSecond - mStartingSecond >= mDuration)
|
||||
{
|
||||
std::cout << "AiEscort Has Run It's Duration: " << currentSecond - mStartingSecond
|
||||
<< " >= " << mDuration << std::endl;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue