summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordaniel0916 <theschokolps@gmail.com>2014-07-09 16:53:01 +0200
committerdaniel0916 <theschokolps@gmail.com>2014-07-09 16:53:01 +0200
commit98950af634cca62af08ddf8c07b77f46165578a8 (patch)
tree1d4e1f205ab4166c47f4eff5aec383513348c69d
parentMerge pull request #1135 from mc-server/fixes (diff)
downloadcuberite-98950af634cca62af08ddf8c07b77f46165578a8.tar
cuberite-98950af634cca62af08ddf8c07b77f46165578a8.tar.gz
cuberite-98950af634cca62af08ddf8c07b77f46165578a8.tar.bz2
cuberite-98950af634cca62af08ddf8c07b77f46165578a8.tar.lz
cuberite-98950af634cca62af08ddf8c07b77f46165578a8.tar.xz
cuberite-98950af634cca62af08ddf8c07b77f46165578a8.tar.zst
cuberite-98950af634cca62af08ddf8c07b77f46165578a8.zip
-rw-r--r--src/Items/ItemBucket.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Items/ItemBucket.h b/src/Items/ItemBucket.h
index 68c89dd85..fa98587ea 100644
--- a/src/Items/ItemBucket.h
+++ b/src/Items/ItemBucket.h
@@ -41,7 +41,7 @@ public:
bool ScoopUpFluid(cWorld * a_World, cPlayer * a_Player, const cItem & a_Item, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace)
{
- if (a_BlockFace > 0)
+ if (a_BlockFace < 0)
{
return false;
}