summaryrefslogtreecommitdiff
path: root/src/serverenvironment.cpp
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-08-30 08:09:41 +0200
committerGitHub <noreply@github.com>2017-08-30 08:09:41 +0200
commitbd6b90359c654f4c75964755e476a8bfd90114ba (patch)
tree2c3322587dfd845efc1332feed6708b9f02a9f69 /src/serverenvironment.cpp
parent43f9e948a128606ba4d446b79999ca8718b4456a (diff)
downloadminetest-bd6b90359c654f4c75964755e476a8bfd90114ba.tar.gz
minetest-bd6b90359c654f4c75964755e476a8bfd90114ba.tar.bz2
minetest-bd6b90359c654f4c75964755e476a8bfd90114ba.zip
Remove DSTACK support (#6346)
Debugstacks is not useful, we don't really use it, the DebugStack is not pertinent, gdb and lldb are better if we really want to debug.
Diffstat (limited to 'src/serverenvironment.cpp')
-rw-r--r--src/serverenvironment.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/serverenvironment.cpp b/src/serverenvironment.cpp
index 04015d953..7d95b8280 100644
--- a/src/serverenvironment.cpp
+++ b/src/serverenvironment.cpp
@@ -424,7 +424,6 @@ RemotePlayer *ServerEnvironment::getPlayer(const char* name)
void ServerEnvironment::addPlayer(RemotePlayer *player)
{
- DSTACK(FUNCTION_NAME);
/*
Check that peer_ids are unique.
Also check that names are unique.
@@ -1105,10 +1104,6 @@ void ServerEnvironment::clearObjects(ClearObjectsMode mode)
void ServerEnvironment::step(float dtime)
{
- DSTACK(FUNCTION_NAME);
-
- //TimeTaker timer("ServerEnv step");
-
/* Step time of day */
stepTimeOfDay(dtime);