1
0

Revert "Replace ItemCallbacks with lambdas (#3948)"

This reverts commit 496c337cdf.
This commit is contained in:
LogicParrot
2017-09-02 10:45:06 +03:00
committed by Alexander Harkness
parent 700bbdabf5
commit 49c443896d
67 changed files with 1832 additions and 874 deletions

View File

@@ -498,20 +498,26 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
}
if (split[0] == "destroyentities")
{
cRoot::Get()->ForEachWorld([](cWorld & a_World)
class WorldCallback : public cWorldListCallback
{
virtual bool Item(cWorld * a_World) override
{
a_World.ForEachEntity([](cEntity & a_Entity)
class EntityCallback : public cEntityCallback
{
virtual bool Item(cEntity * a_Entity) override
{
if (!a_Entity.IsPlayer())
if (!a_Entity->IsPlayer())
{
a_Entity.Destroy();
a_Entity->Destroy();
}
return false;
}
);
} EC;
a_World->ForEachEntity(EC);
return false;
}
);
} WC;
cRoot::Get()->ForEachWorld(WC);
a_Output.Out("Destroyed all entities");
a_Output.Finished();
return;