summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/FurnaceEntity.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2021-01-02Fix potential destruction crashes (#5095)Tiger Wang1-31/+14
2020-10-03Remove SetProperty(...cPlayer)Tiger Wang1-1/+1
2020-09-05Add more statistic tracking (#4837)12xx121-0/+2
2020-04-16Using Super.Mattes D1-4/+4
2019-09-29Refactored more of Entities and BlockEntities to use Vector3. (#4403)Mattes D1-8/+8
2018-07-26CheckBasicStyle: Check number of empty lines between functions (#4267)peterbell101-2/+0
2018-05-02Prefer static_cast to reinterpret_cast (#4223)peterbell101-1/+1
2018-04-11Smelting Gives Experience (#4094)Alex Sweet1-0/+19
2017-06-16BlockEntities: Support cloning self.Mattes D1-27/+56
2017-06-05Fixes problems with windows:Lukas Pioch1-1/+1
2016-02-05Bulk clearing of whitespaceLogicParrot1-1/+1
2015-12-13allow use failures to propagate from the entity/block to the playerGargaj1-1/+2
2015-06-03Fixes multiple furnace issues, including from loading world storageHaoTNN1-14/+29
2015-05-19Fixes lit furnace issue in #2051haotnn1-0/+1
2015-01-11Initial convertion of a_Dt to std::chronoTycho1-1/+1
2014-12-13Own classes for all windows.Howaner1-1/+1
2014-10-23En masse NULL -> nullptr replaceTiger Wang1-4/+4
2014-10-21Fixed trailing whitespace.Mattes D1-1/+1
2014-10-20En masse NULL -> nullptr replaceTiger Wang1-4/+4
2014-10-18Furnaces now update their block entity typeTiger Wang1-2/+4
2014-10-18Simpler code.Alexander Harkness1-3/+2
2014-10-16Nullptr?Alexander Harkness1-2/+2
2014-10-16Fixed a number of stylistic issues.Alexander Harkness1-7/+7
2014-10-12convert old style casts to fix warningsSteven Riehl1-28/+24
2014-10-03Improved furnacesTiger Wang1-94/+47
2014-09-30Removed WSSCompactTiger Wang1-54/+0
2014-09-26Removed more unessicary includesTycho1-2/+0
2014-09-13Implemented Chest MinecartsTiger Wang1-1/+0
2014-07-21Style: Normalized to no spaces before closing parenthesis.madmaxoft1-1/+1
2014-04-18Did some static analysis, fixed some bugs and optimized a lot of codejfhumann1-3/+4
2014-02-24BlockEntities is warnings freeTycho1-2/+4
2014-01-16Removed obsoleted functionsTiger Wang1-2/+2
2014-01-06Fixed a few MSVC warnings.madmaxoft1-4/+4
2013-11-27Fixed VC2008 compilation, normalized include paths.madmaxoft1-1/+1
2013-11-27Fixed the remaining derpsAlexander Harkness1-1/+1
2013-11-25Further attempts to fix compileTiger Wang1-1/+1
2013-11-24Attempt to fix compilationTiger Wang1-1/+1
2013-11-24Moved source to srcAlexander Harkness1-0/+0
2013-11-15Removed BlockEntities' constructors from the API.madmaxoft1-22/+1
2013-08-19Moved entities into the Entities subfolder.madmaxoft1-1/+1
2013-08-18Added cWindow property manipulation API.madmaxoft1-1/+1
2013-06-20Furnace window progressbars are initialized when the window is openedmadmaxoft@gmail.com1-0/+2
2013-06-20Furnaces light up visually when they're cookingmadmaxoft@gmail.com1-11/+33
2013-06-20Fixed a crash when placing new furnacesmadmaxoft@gmail.com1-0/+2
2013-06-16Rewritten furnacesmadmaxoft@gmail.com1-204/+310
2013-05-30Window contents are sent whenever the window is opened by a player.madmaxoft@gmail.com1-1/+0
2013-05-28Moved BlockEntities to a separate foldermadmaxoft@gmail.com1-10/+4
2013-05-28Block entities now receive the cChunk param in their Tick() functionmadmaxoft@gmail.com1-1/+1
2013-04-01Proper fix for FS #347. Also unification of ticking block entities.madmaxoft@gmail.com1-45/+1
2013-01-12Merged branch "branches/hooks" into "trunk".madmaxoft@gmail.com1-6/+6
2012-11-26Furnace now lights up when smelting itemsluksor111@gmail.com1-0/+2
2012-09-24Source files cleanup: The rest of the files renamed.madmaxoft@gmail.com1-9/+9
2012-09-23Source files cleanup: UI files renamedmadmaxoft@gmail.com1-1/+1
2012-09-23Tweaked logging.madmaxoft@gmail.com1-2/+0
2012-09-20Refactored windows.madmaxoft@gmail.com1-29/+50
2012-08-24Monster classes don't use cPackets. Chat messages are sent / broadcast without cPackets. BlockEntities don't use cPackets.madmaxoft@gmail.com1-0/+10
2012-08-19Window, Chest, Furnace and Pawn are not using cPackets at allmadmaxoft@gmail.com1-22/+9
2012-08-18Packet refactoring, phase two, partial. Rewritten a few packet handling functions not to use cPacket-descendant objects.madmaxoft@gmail.com1-4/+4
2012-08-07Prepared WindowOwner class hierarchy for minecart with chest.madmaxoft@gmail.com1-2/+2
2012-06-14Attempt to bring sanity to newlines across systems.cedeel@gmail.com1-401/+401
2012-06-06Item-dropping code rewritten and centralized - now there's only one place to modify if we want to split or merge same-item drops: cWorld:SpawnItemPickups(). Also, mined blocks can now drop more items, and they recognize if they're being mined by the correct tool.madmaxoft@gmail.com1-2/+3
2012-05-28Chests and Furnaces are now saved properly into Anvil scheme.madmaxoft@gmail.com1-25/+80
2012-03-24Reverted the previous commit - it is useless, since entities still depend heavily on cWorldmadmaxoft@gmail.com1-15/+0
2012-03-23Encapsulated cWorld functions needed in cWorldStorage into an interface, so that cWorldStorage can actually be used outside of MC-Server (such as storage conversion tools and chunk analyzers)madmaxoft@gmail.com1-0/+15
2012-03-19Basic cWindow thread-safetymadmaxoft@gmail.com1-36/+22
2012-03-14Split chunk data into separate arrays; decoupled most sources from cChunk.h dependencymadmaxoft@gmail.com1-1/+0
2012-02-15Restored chest and furnace functionality as it was (it's basically working but joined chests show single-chest window)madmaxoft@gmail.com1-4/+4
2012-02-13Rewritten most of the code for multithreading; still not 100%, but getting there. If this commit proves to be too problematic, we can always undo it.madmaxoft@gmail.com1-17/+45
2012-01-30More cFile cleanup; removed old format writing for block entitiesmadmaxoft@gmail.com1-46/+33
2012-01-29VC2008 / VC2010: Enabled precompiled header through Globals.h; the header included in every module in the project. Compilation optimization.madmaxoft@gmail.com1-2/+3
2011-12-29 - Chests open and close on clients when opened/closedmtilden@gmail.com1-0/+1
2011-10-31Player data is saved and loaded as human readable JSON now.faketruth1-27/+4
2011-10-31Prepared some parts of the code for multi world support, I created lots of TODO'sfaketruth1-12/+6
2011-10-03MCServer c++ source filesfaketruth1-0/+372