This commit is contained in:
M66B 2019-10-01 17:52:41 +02:00
parent 7a9929294d
commit 2a2e2ddb5f
1 changed files with 1 additions and 2 deletions

View File

@ -195,8 +195,7 @@ class Core {
if (EntityOperation.MOVE.equals(next.name)) {
JSONArray jnext = new JSONArray(next.args);
// Same target, autoread
if (jargs.getLong(0) == jnext.getLong(0) &&
jargs.getBoolean(1) == jnext.getBoolean(1)) {
if (jargs.getLong(0) == jnext.getLong(0)) {
EntityMessage m = db.message().getMessage(next.message);
if (m != null) {
processed.add(next.id);