Fix sign check PR

This commit is contained in:
Mike Primm 2019-12-15 00:59:30 -06:00
parent 33b4fb7042
commit a91e258da8
5 changed files with 5 additions and 5 deletions

View File

@ -515,7 +515,7 @@ public class DynmapPlugin
@Override
public int isSignAt(String wname, int x, int y, int z) {
int blkid = plugin.getServer().getBlockIDAt(r.wname, r.x, r.y, r.z);
int blkid = getBlockIDAt(wname, x, y, z);
if (blkid == -1)
return -1;

View File

@ -523,7 +523,7 @@ public class DynmapPlugin
@Override
public int isSignAt(String wname, int x, int y, int z) {
int blkid = plugin.getServer().getBlockIDAt(r.wname, r.x, r.y, r.z);
int blkid = getBlockIDAt(wname, x, y, z);
if (blkid == -1)
return -1;

View File

@ -528,7 +528,7 @@ public class DynmapPlugin
@Override
public int isSignAt(String wname, int x, int y, int z) {
int blkid = plugin.getServer().getBlockIDAt(r.wname, r.x, r.y, r.z);
int blkid = getBlockIDAt(wname, x, y, z);
if (blkid == -1)
return -1;

View File

@ -499,7 +499,7 @@ public class DynmapPlugin
@Override
public int isSignAt(String wname, int x, int y, int z) {
int blkid = plugin.getServer().getBlockIDAt(r.wname, r.x, r.y, r.z);
int blkid = getBlockIDAt(wname, x, y, z);
if (blkid == -1)
return -1;

View File

@ -502,7 +502,7 @@ public class DynmapPlugin
@Override
public int isSignAt(String wname, int x, int y, int z) {
int blkid = plugin.getServer().getBlockIDAt(r.wname, r.x, r.y, r.z);
int blkid = getBlockIDAt(wname, x, y, z);
if (blkid == -1)
return -1;