Fix lava crystal not syphoning LP (#1326)

This commit is contained in:
Nicholas Ignoffo 2018-06-26 17:15:45 -07:00
parent 22e8290921
commit c8e42e3288
2 changed files with 3 additions and 5 deletions

View file

@ -43,7 +43,7 @@ public class ItemLavaCrystal extends ItemBindableBase implements IVariantProvide
if (binding == null)
return -1;
if (NetworkHelper.canSyphonFromContainer(stack, 25))
if (NetworkHelper.syphonFromContainer(stack, 25))
return 200;
else {
EntityPlayer player = PlayerHelper.getPlayerFromUUID(binding.getOwnerId());