summaryrefslogtreecommitdiffstats
path: root/source/FallingBlock.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Changed everyting to Unix line endings.Alexander Harkness2013-07-291-103/+103
* Improved function names for protocol packet sending; alpha-sorted the function listsmadmaxoft@gmail.com2013-07-071-1/+1
* Rewritten entity-on-fire management ("forever on fire" bugs)madmaxoft@gmail.com2013-07-011-1/+1
* Unified the way mobs are spawned (egg vs natural). Fixed deadlocks in mob moving. Fixed mob destroying code.madmaxoft@gmail.com2013-06-251-3/+3
* Fixed entity chunking.madmaxoft@gmail.com2013-05-191-2/+11
* Rewritten entities so that they are owned by individual chunks and ticked within their chunk's Tick()madmaxoft@gmail.com2013-04-131-20/+24
* Added helper functions AddSpeed, AddSpeedX, AddSpeedY, AddSpeedZ, AddPosition, AddPosX, AddPosY, AddPosZ. Made sure that all entites use these helper functions.keyboard.osh@gmail.com2013-03-231-2/+2
* Implemented BroadcastMovementUpdate function. Moved m_Pos,m_Rot,m_Speed to private members and made sure that all classes uses the public functions to access these members.keyboard.osh@gmail.com2013-03-221-3/+3
* SandSimulator: Fixed sand dropping on half-slabs; added more blocks that break falling sand into pickups, fixed instant-fallmadmaxoft@gmail.com2013-03-031-5/+13
* Rewritten SandSimulator to use direct chunk access; and sand falling on torches now creates a pickup.madmaxoft@gmail.com2013-03-021-11/+34
* Moved the Speed member into cEntity class instead of its descendants.madmaxoft@gmail.com2013-02-211-9/+8
* Adjusted the protocol framework to support different types of falling block spawning.madmaxoft@gmail.com2012-12-261-1/+1
* Added the 1.4.6 protocolmadmaxoft@gmail.com2012-12-241-1/+1
* MTRand reference is now passed as a Tick() parameter so that it isn't created and destroyed over and over again. All entities will handle physics (empty callback for now)madmaxoft@gmail.com2012-12-221-1/+1
* Added more constants into eEntityType; made them a compulsory parameter to the constructor, so that all entities have proper type.madmaxoft@gmail.com2012-12-211-1/+1
* Reworked the IsA() / GetClass() framework to actually be useful. Added GetParentClass().madmaxoft@gmail.com2012-12-211-13/+9
* Added falling block entities. Sand and gravel now properly fall downfaketruth2012-09-301-0/+64