Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Streamline startup sequence | Tiger Wang | 2020-09-05 | 1 | -1/+1 |
| | | | | | * Clean up cRoot & main * Move some OS-specifics into OSSupport | ||||
* | Using Super. | Mattes D | 2020-04-16 | 1 | -2/+2 |
| | |||||
* | Remove leading slash from command block commands (#4502) | Mat | 2020-03-19 | 1 | -6/+20 |
| | |||||
* | Refactored more of Entities and BlockEntities to use Vector3. (#4403) | Mattes D | 2019-09-29 | 1 | -3/+3 |
| | |||||
* | CheckBasicStyle: Check number of empty lines between functions (#4267) | peterbell10 | 2018-07-26 | 1 | -1/+0 |
| | | | | Add check for number of empty lines between functions and fix the corresponding failures | ||||
* | Prefer static_cast to reinterpret_cast (#4223) | peterbell10 | 2018-05-02 | 1 | -1/+1 |
| | | | | | | | * Change reinterpret_cast -> static_cast wherever possible * Remove more unnecessary `const_cast`s. reinterpret_casts should be avoided for the same reason as c-style casts - they don't do any type-checking. reinterpret_cast was mainly being used for down-casting in inheritance hierarchies but static_cast works just as well while also making sure that there is actually an inheritance relationship there. | ||||
* | BroadcastBlockBreakAnimation and BroadcastBlockEntity use vectors (#4038) | Bond-009 | 2017-09-25 | 1 | -2/+2 |
| | |||||
* | BlockEntities: Support cloning self. | Mattes D | 2017-06-16 | 1 | -3/+19 |
| | |||||
* | Bulk clearing of whitespace | LogicParrot | 2016-02-05 | 1 | -2/+2 |
| | |||||
* | Reorganised the redstone simulator | Tiger Wang | 2015-12-18 | 1 | -14/+0 |
| | | | | | | -> Many thanks to @worktycho for the idea, and @Haxi52 for the implementation plan! * Uses classes and inheritance now * Speed should be improved | ||||
* | allow use failures to propagate from the entity/block to the player | Gargaj | 2015-12-13 | 1 | -1/+2 |
| | |||||
* | Initial convertion of a_Dt to std::chrono | Tycho | 2015-01-11 | 1 | -1/+1 |
| | | | | also refactored cWorld::m_WorldAge and cWorld::m_TimeOfDay | ||||
* | En masse NULL -> nullptr replace | Tiger Wang | 2014-10-23 | 1 | -1/+1 |
| | |||||
* | Removed WSSCompact | Tiger Wang | 2014-09-30 | 1 | -32/+0 |
| | |||||
* | Removed more unessicary includes | Tycho | 2014-09-26 | 1 | -4/+2 |
| | |||||
* | Fixed style. | madmaxoft | 2014-09-01 | 1 | -1/+2 |
| | |||||
* | Changed null check to assert | worktycho | 2014-08-31 | 1 | -5/+3 |
| | | | Changed the null check to clarify that the function should not be called before the entity has been attached to a world. | ||||
* | Fixed style. | madmaxoft | 2014-08-30 | 1 | -2/+3 |
| | |||||
* | Improved command block security | Tiger Wang | 2014-08-29 | 1 | -6/+19 |
| | |||||
* | Normalized comments. | madmaxoft | 2014-07-17 | 1 | -1/+1 |
| | | | | | This was mostly done automatically and then visually inspected for obvious errors. All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign. | ||||
* | Added static const, initialized fields. | archshift | 2014-04-27 | 1 | -1/+2 |
| | |||||
* | Fixed a few MSVC type warnings. | Mattes D | 2014-04-03 | 1 | -1/+1 |
| | |||||
* | Fixed compilation in MSVC (forward class definitions). | madmaxoft | 2014-02-24 | 1 | -0/+1 |
| | |||||
* | BlockEntities is warnings free | Tycho | 2014-02-24 | 1 | -0/+2 |
| | |||||
* | Minor style improvements for the merged PR. | Mattes D | 2014-01-23 | 1 | -4/+4 |
| | |||||
* | Command block fixes 2 | andrew | 2014-01-23 | 1 | -6/+20 |
| | |||||
* | Removed unneeded paramters | Tiger Wang | 2014-01-19 | 1 | -1/+1 |
| | |||||
* | Changed SendBlockEntity format slightly | Tiger Wang | 2014-01-19 | 1 | -24/+2 |
| | | | | | * Writing NBT is now in Protocol, not BlockEntity files * Fixed a last output bug | ||||
* | Improved command blocks | Tiger Wang | 2014-01-19 | 1 | -5/+37 |
| | | | | | | | * Their command and previous output are displayed on the client * They have a BlockHandler implementation, so you can't place blocks on them anymore + As a side effect, implemented UpdateBlockEntity | ||||
* | Command block fixes | andrew | 2014-01-18 | 1 | -33/+3 |
| | |||||
* | Parse the MC|AdvCdm plugin message | andrew | 2014-01-18 | 1 | -0/+2 |
| | |||||
* | Command blocks: Execute() | andrew | 2014-01-18 | 1 | -5/+27 |
| | |||||
* | Command block (de)serialization | andrew | 2014-01-18 | 1 | -1/+31 |
| | |||||
* | Basic command block implementation | andrew | 2014-01-18 | 1 | -0/+173 |