diff options
author | daniel0916 <theschokolps@gmail.com> | 2014-07-09 16:53:01 +0200 |
---|---|---|
committer | daniel0916 <theschokolps@gmail.com> | 2014-07-09 16:53:01 +0200 |
commit | 98950af634cca62af08ddf8c07b77f46165578a8 (patch) | |
tree | 1d4e1f205ab4166c47f4eff5aec383513348c69d /src/Items | |
parent | Merge pull request #1135 from mc-server/fixes (diff) | |
download | cuberite-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 |
Diffstat (limited to 'src/Items')
-rw-r--r-- | src/Items/ItemBucket.h | 2 |
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; } |