Changed: Minor changes

This commit is contained in:
kervala 2015-12-17 14:36:51 +01:00
parent e7fb9df922
commit 4fcf286b44
2 changed files with 2 additions and 2 deletions

View file

@ -635,7 +635,7 @@ static CAIVector randomPos(double dispersionRadius)
{ {
return CAIVector(0., 0.); return CAIVector(0., 0.);
} }
const uint32 maxLimit = std::numeric_limits<uint32>::max() >>1; const uint32 maxLimit = std::numeric_limits<uint32>::max() >> 1;
double rval = (double)CAIS::rand32(maxLimit)/(double)maxLimit; // [0-1[ double rval = (double)CAIS::rand32(maxLimit)/(double)maxLimit; // [0-1[
double r = dispersionRadius*sqrt(rval); double r = dispersionRadius*sqrt(rval);
rval = (double)CAIS::rand32(maxLimit)/(double)maxLimit; // [0-1[ rval = (double)CAIS::rand32(maxLimit)/(double)maxLimit; // [0-1[

View file

@ -1472,7 +1472,7 @@ void setPlayerController_ss_(CStateInstance* entity, CScriptStack& stack)
stack.pop(); stack.pop();
NLMISC::CEntityId botId = NLMISC::CEntityId((std::string)stack.top()); NLMISC::CEntityId botId = NLMISC::CEntityId((std::string)stack.top());
stack.pop(); stack.pop();
if (botId!=NLMISC::CEntityId::Unknown) if (botId != NLMISC::CEntityId::Unknown)
{ {
CGroup* grp = NULL; CGroup* grp = NULL;
CSpawnBotNpc* bot = NULL; CSpawnBotNpc* bot = NULL;