summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/BrewingstandEntity.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-12Fix sending incorrect date values on world changeTiger Wang1-2/+2
Yak shave: make more things use cTickTime. Fix a couple of incorrect modulo-on-millisecond-value by making them use WorldTickAge.
2021-01-02Fix potential destruction crashes (#5095)Tiger Wang1-30/+14
* Fix potential destruction crashes * Fix destructors accessing destroyted objects * Fix cPlayer not destroying windows (Destroyed never called) * Tentatively fixes #4608, fixes #3236, fixes #3262 - Remove cEntity::Destroyed() and replace with cEntity::OnRemoveFromWorld() * Add missing call to OnRemoveFromWorld
2020-10-03Remove SetProperty(...cPlayer)Tiger Wang1-1/+1
Enchantment table, anvil windows are already opened one per-player.
2020-09-05Add more statistic tracking (#4837)12xx121-0/+2
+ Added possible 1.8 stats + Added stat tracking for 1.8.2 + Added stat tracking for 1.9 + Added the breed cow achievement Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-04-16Using Super.Mattes D1-4/+4
2020-03-23Play sound when brewing is completeMat1-0/+1
2019-09-29Refactored more of Entities and BlockEntities to use Vector3. (#4403)Mattes D1-6/+6
2018-07-26CheckBasicStyle: Check number of empty lines between functions (#4267)peterbell101-9/+0
Add check for number of empty lines between functions and fix the corresponding failures
2018-05-02Prefer static_cast to reinterpret_cast (#4223)peterbell101-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.
2017-08-02Removed double includes (#3885)Lukas Pioch1-1/+0
2017-06-16BlockEntities: Support cloning self.Mattes D1-31/+57
2017-06-05Fixes problems with windows:Lukas Pioch1-1/+1
- Changed cPlayer:OpenWindow to accept a ref, tolua adds a nil check - Close open lua window in destructor, to avoid dangling pointers
2017-05-28Minor cBrewingRecipes cleanup (#3731)peterbell101-4/+4
2017-05-08Corrected brewingstand and added support for fuelLukas Pioch1-16/+47
2015-12-17Moved variables into scope, removed unused variables and fixed variablesLukas Pioch1-1/+1
2015-12-13allow use failures to propagate from the entity/block to the playerGargaj1-1/+2
2015-11-08Fix memory leakworktycho1-1/+1
Fixes CID 132249
2015-11-03Implemented brewingLukas Pioch1-0/+309