Fixed crashes and errors ("Asynchronous entity track")

Fixes #109 (Hopefully)
Fixes #110 (Hopefully)
This commit is contained in:
Eric 2017-06-27 21:42:41 +02:00
parent 0ad435b266
commit bbd0046ed1
1 changed files with 5 additions and 2 deletions

View File

@ -35,7 +35,10 @@ public class ShopUtils {
* @return Shop at the given location or <b>null</b> if no shop is found there
*/
public Shop getShop(Location location) {
return shopLocation.get(location.getBlock().getLocation());
Location newLocation = new Location(location.getWorld(), location.getBlockX(),
location.getBlockY(), location.getBlockZ());
return shopLocation.get(newLocation);
}
/**
@ -44,7 +47,7 @@ public class ShopUtils {
* @return Whether there is a shop at the given location
*/
public boolean isShop(Location location) {
return shopLocation.containsKey(location.getBlock().getLocation());
return getShop(location) != null;
}
/**