Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactored more of Entities and BlockEntities to use Vector3. (#4403) | Mattes D | 2019-09-29 | 1 | -12/+23 |
| | |||||
* | Force all headers other than "Globals.h" to be included with relative paths (#4269) | peterbell10 | 2018-08-29 | 1 | -1/+1 |
| | | | | | | | Closes #4236 CMake now creates a header file in the build directory under the path "include/Globals.h" which just includes "src/Globals.h" with an absolute path. Then instead of adding "src/" to the include directories, it adds "include/". #include "Globals.h" still works by including the build generated file and any other src-relative path will not work. | ||||
* | Fix minecart deceleration (#4059) | peterbell10 | 2017-10-21 | 1 | -0/+3 |
| | |||||
* | Powered rails can kick-start minecarts (#3472) | Marvin Kopf | 2016-12-10 | 1 | -0/+2 |
| | |||||
* | Proper minecart DoSetSpeed Override (#3174) | LogicParrot | 2016-04-30 | 1 | -1/+1 |
| | | | Closes #3173, Introduced in #3037. | ||||
* | Add speed limit enforcement for minecarts | Marvin Kopf | 2016-04-15 | 1 | -0/+3 |
| | |||||
* | Fix minecart entity collision | Marvin Kopf | 2016-02-16 | 1 | -1/+1 |
| | | | | | * Minecarts no longer handle a collision if the entity is behind them. * Minecarts will leave the pushing after a collision on a straight rail to the entity. | ||||
* | Bulk clearing of whitespace | LogicParrot | 2016-02-05 | 1 | -19/+19 |
| | |||||
* | Silenced and fixed many warning messages across multiple files. | Samuel Barney | 2015-07-29 | 1 | -1/+1 |
| | |||||
* | Fixed missing overrides and added a ignore flag for reserved macro for clang version 3.6 and higher. | Lukas Pioch | 2015-05-23 | 1 | -1/+1 |
| | |||||
* | More style checking. | Mattes D | 2015-05-09 | 1 | -3/+2 |
| | | | | Spaces around some operators are checked. | ||||
* | Converted MinecartEntity to std::chrono | Tycho | 2015-01-16 | 1 | -3/+3 |
| | |||||
* | Initial convertion of a_Dt to std::chrono | Tycho | 2015-01-11 | 1 | -2/+2 |
| | | | | also refactored cWorld::m_WorldAge and cWorld::m_TimeOfDay | ||||
* | Minecart.h: Fixed integral conversion warning. | Mattes D | 2014-11-27 | 1 | -1/+1 |
| | |||||
* | En masse NULL -> nullptr replace | Tiger Wang | 2014-10-23 | 1 | -2/+2 |
| | |||||
* | Fixed style. | Mattes D | 2014-10-13 | 1 | -1/+1 |
| | |||||
* | Suggestions | Tiger Wang | 2014-09-27 | 1 | -1/+2 |
| | |||||
* | Implemented Chest Minecarts | Tiger Wang | 2014-09-13 | 1 | -10/+30 |
| | |||||
* | Removed redundant semicolons and re-added warning | archshift | 2014-07-24 | 1 | -6/+6 |
| | |||||
* | Minecart: slimmed down SpawnOn by keeping subtype in the payload enum | archshift | 2014-07-19 | 1 | -5/+6 |
| | |||||
* | Basic style fixes. | madmaxoft | 2014-07-17 | 1 | -1/+1 |
| | |||||
* | Add entity invulnerable | Howaner | 2014-04-26 | 1 | -1/+1 |
| | |||||
* | Fixed issues with int vs size_t and a few other warnings | Tycho | 2014-03-08 | 1 | -2/+2 |
| | |||||
* | Begin implementing ascending rails | Tiger Wang | 2014-01-19 | 1 | -0/+3 |
| | |||||
* | Added more rail functionality | Tiger Wang | 2014-01-19 | 1 | -14/+0 |
| | |||||
* | Merge remote-tracking branch 'origin/master' into minecartimprovements | Tiger Wang | 2014-01-19 | 1 | -3/+9 |
|\ | |||||
| * | Merge pull request #534 from mc-server/SpawnMinecart | Mattes D | 2014-01-17 | 1 | -3/+9 |
| |\ | | | | | | | Added cWorld::SpawnMinecart. | ||||
| | * | Changed GetContent function. | STRWarrior | 2014-01-16 | 1 | -1/+1 |
| | | | |||||
| | * | Fixed server crash. | STRWarrior | 2014-01-12 | 1 | -1/+1 |
| | | | |||||
| | * | Renamed cEmptyMinecart to cRideableMinecart | STRWarrior | 2014-01-12 | 1 | -3/+3 |
| | | | |||||
| | * | EmptyMinecarts should be able to get a block inside of them. | STRWarrior | 2014-01-12 | 1 | -1/+7 |
| | | | |||||
* | | | Minecart collision and general improvements | Tiger Wang | 2014-01-18 | 1 | -2/+5 |
|/ / | | | | | | | | | | | + Implemented collision on one type of rail * Improved curved rails somewhat * Fixed a crash bug | ||||
* | | Furnace minecarts now stop being active after a while. | STRWarrior | 2014-01-15 | 1 | -1/+8 |
| | | |||||
* | | First implementation for furnace minecarts. | STRWarrior | 2014-01-15 | 1 | -0/+1 |
| | | |||||
* | | Final improvements to Minecarts | Tiger Wang | 2014-01-13 | 1 | -1/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed curved rails being a little broken + Implemented detector rails + Implemented block collisions on rails * Fixed snapping to rail - Removed minecart physics conditions in Entity.cpp as minecarts use their own simulator when on rails Fixes #148 and #217; partially implemented #215. This is Cave Johnson, and we're done here. | ||||
* | | Multiple enhancements and fixes to minecarts | Tiger Wang | 2014-01-12 | 1 | -3/+4 |
|/ | | | | | | + They are destroyed instantly by creative mode * Physics is much improved + Basic implementation of powered rails | ||||
* | Moved source to src | Alexander Harkness | 2013-11-24 | 1 | -0/+169 |