Skip to content

Commit ddcd026

Browse files
committedJun 14, 2017
Remove legacy content_abm.{cpp,h}
1 parent 4783ff9 commit ddcd026

File tree

6 files changed

+0
-73
lines changed

6 files changed

+0
-73
lines changed
 

Diff for: ‎build/android/jni/Android.mk

-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ LOCAL_SRC_FILES := \
124124
jni/src/clientobject.cpp \
125125
jni/src/clouds.cpp \
126126
jni/src/collision.cpp \
127-
jni/src/content_abm.cpp \
128127
jni/src/content_cao.cpp \
129128
jni/src/content_cso.cpp \
130129
jni/src/content_mapblock.cpp \

Diff for: ‎src/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,6 @@ set(common_SRCS
370370
chat.cpp
371371
clientiface.cpp
372372
collision.cpp
373-
content_abm.cpp
374373
content_mapnode.cpp
375374
content_nodemeta.cpp
376375
content_sao.cpp

Diff for: ‎src/content_abm.cpp

-34
This file was deleted.

Diff for: ‎src/content_abm.h

-32
This file was deleted.

Diff for: ‎src/network/serverpackethandler.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2020
#include "server.h"
2121
#include "log.h"
2222

23-
#include "content_abm.h"
2423
#include "content_sao.h"
2524
#include "emerge.h"
2625
#include "mapblock.h"

Diff for: ‎src/server.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
4747
#include "mg_biome.h"
4848
#include "content_mapnode.h"
4949
#include "content_nodemeta.h"
50-
#include "content_abm.h"
5150
#include "content_sao.h"
5251
#include "mods.h"
5352
#include "event_manager.h"
@@ -318,9 +317,6 @@ Server::Server(
318317
m_env->loadDefaultMeta();
319318
}
320319

321-
// Add some test ActiveBlockModifiers to environment
322-
add_legacy_abms(m_env, m_nodedef);
323-
324320
m_liquid_transform_every = g_settings->getFloat("liquid_update");
325321
m_max_chatmessage_length = g_settings->getU16("chat_message_max_size");
326322
}

0 commit comments

Comments
 (0)
Please sign in to comment.