summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
authorpeterbell10 <peterbell10@live.co.uk>2017-09-01 13:04:50 +0200
committerMattes D <github@xoft.cz>2017-09-01 13:04:50 +0200
commit496c337cdfa593654018c171f6a74c28272265b5 (patch)
treefab48316d8fd6de97500ca1b8c8c5792eb578acc /src/Server.cpp
parentUpdate Core plugin (diff)
downloadcuberite-496c337cdfa593654018c171f6a74c28272265b5.tar
cuberite-496c337cdfa593654018c171f6a74c28272265b5.tar.gz
cuberite-496c337cdfa593654018c171f6a74c28272265b5.tar.bz2
cuberite-496c337cdfa593654018c171f6a74c28272265b5.tar.lz
cuberite-496c337cdfa593654018c171f6a74c28272265b5.tar.xz
cuberite-496c337cdfa593654018c171f6a74c28272265b5.tar.zst
cuberite-496c337cdfa593654018c171f6a74c28272265b5.zip
Diffstat (limited to 'src/Server.cpp')
-rw-r--r--src/Server.cpp18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index 6ddb14ae5..89dccb1f1 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -498,26 +498,20 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
}
if (split[0] == "destroyentities")
{
- class WorldCallback : public cWorldListCallback
- {
- virtual bool Item(cWorld * a_World) override
+ cRoot::Get()->ForEachWorld([](cWorld & a_World)
{
- class EntityCallback : public cEntityCallback
- {
- virtual bool Item(cEntity * a_Entity) override
+ a_World.ForEachEntity([](cEntity & a_Entity)
{
- 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;