Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-04-21 | Vector3 in Handlers (#4680) | Mattes D | 1 | -0/+6 | |
Refactored all cBlockHandler and cItemHandler descendants to use Vector3. | |||||
2020-04-17 | More Vector3 in cBlockHandler (#4644) | Mattes D | 1 | -0/+4 | |
* cBlockHandler.OnUpdate uses Vector3 params. Also slightly changed how block ticking works. | |||||
2019-10-16 | Refactored block-to-pickup conversion. (#4417) | Mattes D | 1 | -1/+1 | |
2018-08-29 | Force all headers other than "Globals.h" to be included with relative paths (#4269) | peterbell10 | 1 | -1/+2 | |
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. | |||||
2018-08-02 | Experience orb (#4259) | changyong guo | 1 | -0/+4 | |
* Replace cWorld::FindClosesPlayer with cWorld::DoWithClosestPlayer * Implement experience reward splitting into the orb sizes used in vanilla * Modified speed calculation in cExpOrb::Tick to make the orbs fly towards the player Fixes #4216 | |||||
2017-12-26 | improve rain simulation (#4017) | Alexander Harkness | 1 | -1/+1 | |
* Uses vanilla logic to decide which blocks rain falls through. * Rain falls infinitely above the world, and stops at y=0. * Entities will now be extinguished if they are under rain-blocking blocks, and fire will now be extinguished by rain similarly. * Create IsWeatherWetAtXYZ to identify wetness at a particular location. * Use new code for enderman rain detection. * Fixes issue #916 * Disable warnings for global constructors in the fire simulator. | |||||
2017-09-19 | Removed UTF-8 BOM (#4033) | Lukas Pioch | 1 | -1/+1 | |
2017-09-11 | Replace ItemCallbacks with lambdas (#3993) | peterbell10 | 1 | -10/+13 | |
2017-09-02 | Revert "Replace ItemCallbacks with lambdas (#3948)" | LogicParrot | 1 | -13/+10 | |
This reverts commit 496c337cdfa593654018c171f6a74c28272265b5. | |||||
2017-09-01 | Replace ItemCallbacks with lambdas (#3948) | peterbell10 | 1 | -10/+13 | |
2017-08-25 | Bed piston fix (#3956) | Lane Kolbly | 1 | -0/+2 | |
* Threaded world interface into ConvertBlockToPickups * Changed how cBlockPiston::PushBlocks sets the old block to air, so that the block exists for the DropBlock call. * Removed unused a_Digger argument. * Removed incorrect comment * This time actually removed a_Digger references. | |||||
2017-08-21 | Fully implemented leashes (#3798) | Pablo Beltrán | 1 | -0/+5 | |
2017-08-17 | Changed int parameters to vector parameters in cCuboid and simulators (#3874) | Lane Kolbly | 1 | -1/+1 | |
2017-08-13 | Replaced includes with forward declarations | Lukas Pioch | 1 | -3/+5 | |
2017-08-03 | Removed unused forward declarations (#3888) | Lukas Pioch | 1 | -1/+0 | |
2017-08-01 | cWorld::SendBlockTo take player by ref | peterbell10 | 1 | -1/+1 | |
2017-07-12 | Changing pickup lifetime and combining semantics, making these adjustable in the lua api. (#3843) | Lane Kolbly | 1 | -0/+2 | |
2016-02-05 | Bulk clearing of whitespace | LogicParrot | 1 | -7/+7 | |
2015-07-16 | Spawn baby mobs | hallucino | 1 | -1/+1 | |
2015-06-28 | Added a size check for portals. | STRWarrior | 1 | -0/+12 | |
Made the portal size configurable Alpha-sorted SetXYZNetherPortalXYZ functions | |||||
2015-03-21 | Changed cEntity::m_UniqueID to UInt32. | Mattes D | 1 | -5/+7 | |
2015-03-05 | Reverted non-functional changes | Tiger Wang | 1 | -5/+0 | |
2015-02-08 | Handle client 'leave bed' request | Tiger Wang | 1 | -0/+5 | |
* Fixes #1728 | |||||
2014-09-17 | Added first test to show the object can be created | Tycho | 1 | -3/+4 | |
2014-09-12 | Spawn exp if you break a mob spawner. | Howaner | 1 | -0/+3 | |
2014-09-08 | TimeOfDay does not need to be an Int64 | Tycho | 1 | -2/+2 | |
2014-07-17 | Basic style fixes. | madmaxoft | 1 | -1/+1 | |
2014-07-02 | Redstone simulator is alerted to lever unpowering | Tiger Wang | 1 | -0/+3 | |
* Fixed the "fix" that broke the fix for #535, thereby fixing said issue * Fixed #535 | |||||
2014-06-17 | Add DoWithBlockEntityAt() to WorldInterface.h | Howaner | 1 | -0/+9 | |
2014-06-14 | Cauldrons check the heightmap | Tiger Wang | 1 | -4/+4 | |
2014-06-05 | Suggestions | Tiger Wang | 1 | -1/+3 | |
2014-05-29 | Cauldrons fill | Tiger Wang | 1 | -0/+3 | |
2014-03-28 | Fixed non-virtual destructors warnings. | madmaxoft | 1 | -1/+2 | |
2014-03-09 | Beds now work properly fixes #707 | Tiger Wang | 1 | -1/+7 | |
Also fixes FS392 Conflicts: src/Blocks/WorldInterface.h src/ClientHandle.cpp | |||||
2014-03-06 | Fix comment | Howaner | 1 | -1/+1 | |
2014-03-05 | Add SendBlockTo to cWorldInterface | Howaner | 1 | -0/+3 | |
2014-02-01 | Changed Signiture of OnDestroyedByPlayer | Tycho | 1 | -0/+3 | |
2014-02-01 | Changed pointers to references | Tycho | 1 | -1/+1 | |
2014-02-01 | Changed signitures of Several BLockHandler Methods | Tycho | 1 | -0/+2 | |
Changed the signitures of the following to use interfaces: GetPlacementBlockTypeMeta OnPlaced OnPlacedByPlayer OnDestroyed OnNeighbourChanged NeighbourChanged OnUse CanBeAt Check | |||||
2014-01-26 | Refactored cBlockHandler::OnUse and dependents | Tycho | 1 | -3/+15 | |
2014-01-25 | First attempt at Implementing Interfaces | Tycho | 1 | -0/+13 | |