Fix for disappearing sign-markers on 1.14 (Issue #2533)

This commit is contained in:
Tiago Dias 2019-08-14 12:24:38 +01:00
parent fadfe1ba09
commit 8fc95bfc96
9 changed files with 127 additions and 9 deletions

View file

@ -156,6 +156,9 @@ public class DynmapPlugin
private boolean isMCPC = false;
private boolean useSaveFolder = true;
private Field displayName = null; // MCPC+ display name
private static final int SIGNPOST_ID = 63;
private static final int WALLSIGN_ID = 68;
private static final String[] TRIGGER_DEFAULTS = { "blockupdate", "chunkpopulate", "chunkgenerate" };
@ -513,6 +516,11 @@ public class DynmapPlugin
public int getBlockIDAt(String wname, int x, int y, int z) {
return -1;
}
@Override
public int isSignAt(String wname, int x, int y, int z) {
return -1;
}
@Override
public void scheduleServerTask(Runnable run, long delay)