Changed setfuse to setFused

This commit is contained in:
Andrew 2013-11-06 19:29:27 +13:00
parent 37bef1c1ff
commit 5f41841135

View File

@ -16,7 +16,7 @@ public class CreeperWatcher extends LivingWatcher {
return (Byte) getValue(17, (byte) 0) == 1;
}
public void setFuse(boolean isFused) {
public void setFused(boolean isFused) {
setValue(16, (byte) (isFused ? 1 : -1));
sendData(16);
}