mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 02:47:11 +00:00
Updated for SpoutAPI Material changes
This commit is contained in:
parent
4890c1ef9c
commit
9c3634d93d
@ -49,7 +49,7 @@ public class SpoutPlayer extends LocalPlayer {
|
||||
@Override
|
||||
public int getItemInHand() {
|
||||
ItemStack itemStack = null;//player.getItemInHand();
|
||||
return itemStack != null ? itemStack.getMaterial().getRawId() : 0;
|
||||
return itemStack != null ? itemStack.getMaterial().getId() : 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -98,7 +98,7 @@ public class SpoutPlayerBlockBag extends BlockBag {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (bukkitItem.getMaterial().getRawId() != id) {
|
||||
if (bukkitItem.getMaterial().getId() != id) {
|
||||
// Type id doesn't fit
|
||||
continue;
|
||||
}
|
||||
@ -164,7 +164,7 @@ public class SpoutPlayerBlockBag extends BlockBag {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (bukkitItem.getMaterial().getRawId() != id) {
|
||||
if (bukkitItem.getMaterial().getId() != id) {
|
||||
// Type id doesn't fit
|
||||
continue;
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ public class SpoutServerInterface extends ServerInterface {
|
||||
@Override
|
||||
public int resolveItem(String name) {
|
||||
Material mat = MaterialData.getMaterial(name);
|
||||
return mat == null ? 0 : mat.getRawId();
|
||||
return mat == null ? 0 : mat.getId();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user