summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockConcretePowder.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-01-18cChunk: don't inherit from cChunkDef (#5106)Tiger Wang1-1/+1
2020-10-05Fix cmake not adding Werror on clang, and _lots_ of warnings (#4963)peterbell101-1/+1
* Fix cmake not adding Werror on clang, and _lots_ of warnings * WIP: Build fixes * Cannot make intermediate blockhandler instance * Tiger's changes * Fix BitIndex check * Handle invalid NextState values in cMultiVersionProtocol Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2020-09-20BlockHandler initialisation is a constant expression (#4891)Tiger Wang1-8/+7
* BlockHandler initialisation is a constant expression If we can't make it all namespaces, this is the next best I guess. + Tag handlers constexpr, const as needed + Inherit constructors * Privatise handler functions * More constexpr Co-authored-by: Alexander Harkness <me@bearbin.net>
2020-08-04OnBroken/OnPlaced are for entity actionsTiger Wang1-48/+19
* Call OnPlaced/OnBroken in PlaceBlock/DigBlock - Remove unused Placing/Breaking handlers * Have the blockhandler's Check handle neighbour updating, instead of QueueTickBlockNeighbors
2020-04-16Using Super.Mattes D1-3/+3
2019-10-16Refactored block-to-pickup conversion. (#4417)Mattes D1-7/+14
2018-01-03Concrete mixing (#4096)Zach DeCook1-0/+106
Adds a block handler for concrete powder and implements hardening to concrete. Concrete powder turns into concrete when: * It is next to water when it receives a block update * It falls onto a water block (even with Physics SandInstantFall=1)