Skip to content

Commit

Permalink
Fix buckets not picking up molten metals
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Jul 31, 2014
1 parent e3aeca1 commit bb77a11
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -41,7 +41,7 @@ public void onCrafting (ItemCraftedEvent event)
@SubscribeEvent
public void bucketFill (FillBucketEvent evt)
{
if (evt.current.getItem() == Items.bucket && evt.target.typeOfHit == MovingObjectType.ENTITY)
if (evt.current.getItem() == Items.bucket && evt.target.typeOfHit == MovingObjectType.BLOCK)
{
int hitX = evt.target.blockX;
int hitY = evt.target.blockY;
Expand Down

0 comments on commit bb77a11

Please sign in to comment.