Merge with develop

--HG--
branch : compatibility-develop
This commit is contained in:
kervala 2016-10-26 14:30:17 +02:00
commit 2afe4e5944

View file

@ -2481,17 +2481,25 @@ class CAHAddShape : public IActionHandler
virtual void execute (CCtrlBase * /* pCaller */, const string &Params) virtual void execute (CCtrlBase * /* pCaller */, const string &Params)
{ {
string sShape = getParam(Params, "shape"); string sShape = getParam(Params, "shape");
if(sShape.empty())
if (sShape.empty())
{ {
nlwarning("Command 'add_shape': need at least the parameter shape."); nlwarning("Command 'add_shape': need at least the parameter shape.");
return; return;
} }
if (!Scene) if (!Scene)
{ {
nlwarning("No scene available"); nlwarning("No scene available");
return; return;
} }
if (!UserEntity)
{
nlwarning("UserEntity not yet defined, possibly called runAH from Lua");
return;
}
double x = UserEntity->pos().x; double x = UserEntity->pos().x;
double y = UserEntity->pos().y; double y = UserEntity->pos().y;
double z = UserEntity->pos().z; double z = UserEntity->pos().z;