diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-02-17 09:01:22 +0100 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-02-17 09:01:22 +0100 |
commit | f4049d8eaa2860fd583ab5965fa840cf510ccb91 (patch) | |
tree | 93f6ec8189082d18e7e9d20e732ee11b06843683 /src/Entities/Minecart.h | |
parent | Merge pull request #3010 from LogicParrot/stringFix (diff) | |
parent | Fix minecart entity collision (diff) | |
download | cuberite-f4049d8eaa2860fd583ab5965fa840cf510ccb91.tar cuberite-f4049d8eaa2860fd583ab5965fa840cf510ccb91.tar.gz cuberite-f4049d8eaa2860fd583ab5965fa840cf510ccb91.tar.bz2 cuberite-f4049d8eaa2860fd583ab5965fa840cf510ccb91.tar.lz cuberite-f4049d8eaa2860fd583ab5965fa840cf510ccb91.tar.xz cuberite-f4049d8eaa2860fd583ab5965fa840cf510ccb91.tar.zst cuberite-f4049d8eaa2860fd583ab5965fa840cf510ccb91.zip |
Diffstat (limited to 'src/Entities/Minecart.h')
-rw-r--r-- | src/Entities/Minecart.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/Minecart.h b/src/Entities/Minecart.h index e48df8fda..c4b1d7f6d 100644 --- a/src/Entities/Minecart.h +++ b/src/Entities/Minecart.h @@ -75,7 +75,7 @@ protected: void SnapToRail(NIBBLETYPE a_RailMeta); /** Tests if a solid block is in front of a cart, and stops the cart (and returns true) if so; returns false if no obstruction */ bool TestBlockCollision(NIBBLETYPE a_RailMeta); - /** Tests if this mincecart's bounding box is intersecting another entity's bounding box (collision) and pushes mincecart away */ + /** Tests if this mincecart's bounding box is intersecting another entity's bounding box (collision) and pushes mincecart away if necessary */ bool TestEntityCollision(NIBBLETYPE a_RailMeta); } ; |