summaryrefslogtreecommitdiff
path: root/src/server.cpp
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2020-04-11 09:59:09 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2020-04-11 16:07:17 +0200
commit894a34aef48024a752a1ef151d046955d83858d0 (patch)
treef264d4c1ba7a62fe731255594f592bd78b3e09a5 /src/server.cpp
parentc99e8df07fe88c0b19363beca09e12f151bc13d0 (diff)
downloadminetest-894a34aef48024a752a1ef151d046955d83858d0.tar.gz
minetest-894a34aef48024a752a1ef151d046955d83858d0.tar.bz2
minetest-894a34aef48024a752a1ef151d046955d83858d0.zip
Move PlayerSAO to dedicated files
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp
index 529466f6b..85d07fbc4 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -47,7 +47,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "mapgen/mg_biome.h"
#include "content_mapnode.h"
#include "content_nodemeta.h"
-#include "content_sao.h"
#include "content/mods.h"
#include "modchannels.h"
#include "serverlist.h"
@@ -64,6 +63,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "chatmessage.h"
#include "chat_interface.h"
#include "remoteplayer.h"
+#include "server/player_sao.h"
class ClientNotFoundException : public BaseException
{