Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merged trivial item handlers into cSimplePlaceableItemHandler (#4766) | Franklin Kong | 2020-06-26 | 9 | -306/+45 |
| | | | | | | - Remove unused files Co-authored-by: aiugai <aiugai@umich.edu> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com> | ||||
* | Upgrade to C++17 [CMake] (#4717) | Tiger Wang | 2020-05-16 | 1 | -8/+2 |
| | | | * Make our CMake slightly less insane | ||||
* | Update submodules (#4727) | peterbell10 | 2020-05-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | Closes #4708 This updates jsoncpp, mbedtls, TCLAP and SQLiteCpp to their latest stable release. A few additional changes were needed: * jsoncpp deprecated Reader, FastWriter and StyledWriter which I've replaced with some helper functions in JsonUtils.cpp * SQLiteCpp changed how it builds with external sqlite libraries, now expecting them to be installed. The simplest path was to remove sqlite from cuberite's submodule and just use SQLiteCpp's internal version. | ||||
* | Use Vector3 for cLineBlockTracer and cBlockTracer (#4715) | mBornand | 2020-05-08 | 4 | -15/+15 |
| | | | * cLineBlockTracer uses Vector | ||||
* | Unify entity spawn packet sending | Tiger Wang | 2020-05-01 | 1 | -2/+2 |
| | |||||
* | Vector3 in Handlers (#4680) | Mattes D | 2020-04-21 | 42 | -790/+1194 |
| | | | Refactored all cBlockHandler and cItemHandler descendants to use Vector3. | ||||
* | Using Super. | Mattes D | 2020-04-16 | 34 | -162/+212 |
| | |||||
* | Removed extended ASCII, and added a check against it. (#4642) | Mattes D | 2020-04-12 | 1 | -2/+2 |
| | |||||
* | Add mixins for blocks that rotate based on player yaw at placement | Alexander Harkness | 2020-04-10 | 4 | -5/+5 |
| | | | | Also add observer block handler. | ||||
* | Add additional blocks which are not breakable by hand | Alexander Harkness | 2020-04-10 | 2 | -6/+39 |
| | |||||
* | Add Zombie Villagers | Bond-009 | 2020-04-10 | 1 | -5/+2 |
| | |||||
* | Remove switch statements from cItemFoodHandler (#4610) | Alexander Harkness | 2020-04-04 | 15 | -192/+398 |
| | | | | | | | * Remove switch statements from cItemFoodHandler * Alpha-sort and add comment * Relocate golden apple handler | ||||
* | Implement wither skeletons (#4563) | Mat | 2020-04-04 | 1 | -26/+27 |
| | |||||
* | Pulled the BlockID and BlockInfo headers from Globals.h. (#4591) | Mattes D | 2020-04-03 | 7 | -7/+11 |
| | | | | | | | | | The BlockID.h file was removed from Globals.h and renamed to BlockType.h (main change) The BlockInfo.h file was removed from Globals.h (main change) The ENUM_BLOCK_ID and ENUM_ITEM_ID enum names were replaced with ENUM_BLOCK_TYPE and ENUM_ITEM_TYPE (cosmetics) The various enums, such as eDimension, eDamageType and eExplosionSource were moved from BlockType.h to Defines.h, together with the helper functions for converting between them and strings (StringToDimension et al.) (minor) Many inline functions were moved from headers to their respective cpp files, so that BlockType.h could be included only into the cpp file, rather than the header. That broke our tests a bit, since they pick bits and pieces out of the main code and provide stubs for the rest; they had to be re-stubbed and re-verified. eMonsterType values are no longer tied to E_ITEM_SPAWN_EGG_META_* values | ||||
* | Replace buckets to the selected hotbar slot, rather than the first available. (#4580) | Alexander Harkness | 2020-04-02 | 4 | -31/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | * Replace buckets to the selected hotbar slot, rather than the first available. Replicates vanilla behaviour, as well as being more logical. * Refactor cInventory::AddItem. Behaviour is now documented * Add new cInventory::ReplaceOneEquippedItem and ::SetEquippedItem methods * Return empty potion to the same slot after drinking * Replace buckets correctly in other situations, not simply water and lava Uses the new ReplaceOneEquippedItem method * Correct collecting water from source block with bottle * Add cPlayer::ReplaceOneEquippedItemTossRest method * Handle stacked filled buckets (in theory) Use new cPlayer::ReplaceOneEquippedItemTossRest method | ||||
* | Increase speed of splash potion and expbottle (#4513) | Mat | 2020-03-22 | 2 | -2/+5 |
| | |||||
* | TNT position fixes (#4519) | Mat | 2020-03-22 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | | * TNT position fixes * Don't add offset to explosion spawn coords * Don't make other entities push TNT * Correct initial TNT speed * Fix typo * Improvements * Revert unwanted change * Style fixes * Update format | ||||
* | Fix typo in fish meta | Mat | 2020-03-22 | 1 | -1/+1 |
| | |||||
* | Don't enchant an already enchanted book | Mat | 2020-03-22 | 1 | -1/+1 |
| | |||||
* | Don't remove items twice (#4524) | Mat | 2020-03-22 | 5 | -6/+9 |
| | | | * Don't remove items twice | ||||
* | Bonemeal cannot be used on cactus and sugar cane | Mat | 2020-03-21 | 1 | -2/+0 |
| | |||||
* | Don't spawn boats in ground | Mat | 2020-03-05 | 1 | -1/+1 |
| | |||||
* | Stabilise MoveToWorld (#4004) | Mat | 2020-03-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Stabilise MoveToWorld * Fix comments and deprecate ScheduleMoveToWorld * Enhanced thread safety for m_WorldChangeInfo * Return unique_ptr from cAtomicUniquePtr::exchange * cWorld now calls entity cEntity::OnAddToWorld and cEntity::OnRemoveFromWorld. Allows broadcasting entities added to the world from the world's tick thread. This also factors out some common code from cEntity::DoMoveToWorld and cEntity::Initialize. As a consequence, cEntity::Destroy(false) (i.e. Destroying the entity without broadcasting) is impossible. This isn't used anywhere in Cuberite so it's now deprecated. * Update entity position after removing it from the world. Fixes broadcasts being sent to the wrong chunk. * Fix style * cEntity: Update LastSentPosition when sending spawn packet * Add Wno-deprecated-declarations to the lua bindings * Kill uses of ScheduleMoveToWorld | ||||
* | Boats can be spawned on land | Mat | 2020-03-01 | 1 | -7/+0 |
| | |||||
* | Disable block placement in adventure mode (#4424) | Mat | 2019-12-30 | 2 | -0/+18 |
| | |||||
* | Moved growing from cWorld / cChunk to cBlockHandler descendants. | Mattes D | 2019-10-28 | 1 | -6/+188 |
| | |||||
* | Refactored block-to-pickup conversion. (#4417) | Mattes D | 2019-10-16 | 6 | -66/+27 |
| | |||||
* | Refactored more of Entities and BlockEntities to use Vector3. (#4403) | Mattes D | 2019-09-29 | 3 | -6/+6 |
| | |||||
* | Create Ender Portal with Eyes of Ender (#4126) | Zach DeCook | 2019-05-11 | 3 | -1/+62 |
| | | | | | | | | | The algorithm was designed so All portals must be facing the center, no matter which block had the eye inserted in last. Note: Still need to create a block entity so that portals don't become invisible when you relog. Addresses part of #3445 Fixes #3695 | ||||
* | Buckets: Be able to place fluids through other fluids. (#4331) | Zach DeCook | 2019-05-07 | 1 | -2/+2 |
| | |||||
* | Add a formatting function for Vector3 (#4282) | peterbell10 | 2018-09-24 | 1 | -4/+4 |
| | | | | | | | | | | * Vector3: Add custom fmt compatible formatter. * cLuaState: Add fmt version of ApiParamError * Use vector formatting in manual bindings * Always log vectors with FLOG | ||||
* | Force all headers other than "Globals.h" to be included with relative paths (#4269) | peterbell10 | 2018-08-29 | 2 | -4/+1 |
| | | | | | | | 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. | ||||
* | CheckBasicStyle: Check number of empty lines between functions (#4267) | peterbell10 | 2018-07-26 | 1 | -5/+0 |
| | | | | Add check for number of empty lines between functions and fix the corresponding failures | ||||
* | Keep players in gmNotSet (#4248) | changyong guo | 2018-07-23 | 1 | -1/+1 |
| | | | | This allows players game mode to update to the default after portal to another world. Fixes #4207 | ||||
* | Damage fishing rod when catching the hook on a block, then reeling it in (#4151) | Bond-009 | 2018-02-11 | 1 | -0/+8 |
| | | | Fixes #4132 | ||||
* | Deal with covered switches consistently (#4161) | peterbell10 | 2018-02-05 | 6 | -0/+6 |
| | | | | | | | * Fixes a number of "<function>: not all control paths return a value" warnings on MSVC. * Introduces the UNREACHABLE global macro and uses it instead of conditionally compiled switch defaults. * Move cNBTParseErrorCategory from FastNBT.h into FastNBT.cpp to prevent bad calls to message() | ||||
* | Prioritize hinge on the left side (#4153) | Bond-009 | 2018-01-17 | 1 | -0/+1 |
| | |||||
* | Golden Apple Fixes (#4130) | Alexander Harkness | 2018-01-06 | 2 | -21/+10 |
| | | | | | | | | | * Do not remove food item until player has been fed * Golden apples now ignore hunger when eating * Removed EnchantedGoldenApple recipe, as it was removed in 1.9 Reference: https://minecraft.gamepedia.com/1.9#Items_2 * Adjust golden apple effects, as they were changed in 1.9 Reference: https://minecraft.gamepedia.com/1.9#Items_2 | ||||
* | Improved fishing rewards (#4120) | Bond-009 | 2018-01-05 | 1 | -33/+49 |
| | | | | | | | * Damage fishing rod after use * Give xp to the player for catching something * Fixed junk drops * Implement Luck of the Sea | ||||
* | Item durability loss now depends on the item used. (#4123) | Alexander Harkness | 2018-01-05 | 23 | -177/+77 |
| | | | | | | | Armour durability also no longer changes when it is used to break blocks or attack mobs. Fixes #4119 | ||||
* | Add the fmt library (#4065) | peterbell10 | 2018-01-03 | 1 | -0/+1 |
| | | | | | | | * Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style. | ||||
* | cItemHandler: Update max stack size of old doors. (#4072) | peterbell10 | 2017-11-20 | 1 | -0/+2 |
| | |||||
* | BroadcastBlockBreakAnimation and BroadcastBlockEntity use vectors (#4038) | Bond-009 | 2017-09-25 | 1 | -22/+22 |
| | |||||
* | Changed BroadcastSoundEffect, SendSoundEffect, and CastThunderbolt parameters to vectors (#3959) | Lane Kolbly | 2017-09-19 | 4 | -7/+5 |
| | | | | | | | | | | | | | | | | | | * Made BroadcastSoundEffect take vector parameters. * Added docs for new vectored methods * Removed old code * Fixed lua warnings * Made old BroadcastSoundEffect not an override. * m_Block to m_BlockPos, used Vector3d constructor where prettier. * a_Block to a_BlockPos * Changed thunderbolt a_Block to a_BlockPos | ||||
* | Removed UTF-8 BOM (#4033) | Lukas Pioch | 2017-09-19 | 1 | -1/+1 |
| | |||||
* | Fix switch warnings (#4013) | peterbell10 | 2017-09-14 | 2 | -6/+2 |
| | | | | | | | | | | | | | | | * Fix switch warnings * Fix a variety of -Wswitch and -Wswitch-enum warnings * Remove unneeded -Wno-error flags * Reorganise some eMonsterType switches * Alpha sort eMonsterType cases in WriteMobMetadata and in cNBTChunkSerializer::AddMonsterEntity * List all mob types in protocol 1.12 and NBTChunkSerializer * cStructGenTrees::GetNumTrees: remove switch default * cWSSAnvil::LoadOldMinecartFromNBT: Log unhandled minecart type | ||||
* | Replace ItemCallbacks with lambdas (#3993) | peterbell10 | 2017-09-11 | 2 | -88/+39 |
| | |||||
* | Changed some int parameters to vector parameters (#3937) | Bond-009 | 2017-09-07 | 2 | -2/+2 |
| | |||||
* | Revert "Replace ItemCallbacks with lambdas (#3948)" | LogicParrot | 2017-09-02 | 2 | -39/+88 |
| | | | | This reverts commit 496c337cdfa593654018c171f6a74c28272265b5. | ||||
* | Replace ItemCallbacks with lambdas (#3948) | peterbell10 | 2017-09-01 | 2 | -88/+39 |
| | |||||
* | Minor changes (#3909) | mathiascode | 2017-08-24 | 1 | -1/+1 |
| | |||||
* | Fix use after move in cItemBowHandler::OnItemShoot | peterbell10 | 2017-08-24 | 1 | -4/+3 |
| | |||||
* | Fully implemented leashes (#3798) | Pablo Beltrán | 2017-08-21 | 1 | -0/+1 |
| | |||||
* | Merge pull request #3489 from cuberite/EntityOwnership | Tiger Wang | 2017-08-18 | 6 | -42/+16 |
|\ | | | | | * Changed entity ownership model to use smart pointers | ||||
| * | Changed entity ownership model to use smart pointers | Tiger Wang | 2017-08-07 | 6 | -42/+16 |
| | | |||||
* | | Replaced includes with forward declarations | Lukas Pioch | 2017-08-13 | 1 | -1/+1 |
|/ | |||||
* | Removed unneeded includes (#3902) | Lukas Pioch | 2017-08-06 | 12 | -15/+4 |
| | |||||
* | Remove double includes part 2 (#3890) | peterbell10 | 2017-08-03 | 1 | -2/+0 |
| | |||||
* | Removed double includes (#3885) | Lukas Pioch | 2017-08-02 | 1 | -1/+0 |
| | |||||
* | cBlockHandler: take player by ref | peterbell10 | 2017-08-01 | 2 | -3/+3 |
| | |||||
* | cWorld::SendBlockTo take player by ref | peterbell10 | 2017-08-01 | 1 | -2/+2 |
| | |||||
* | Consolidated food effects into EatItem, added all fish type FoodInfos. (#3875) | Lane Kolbly | 2017-07-30 | 5 | -86/+86 |
| | | | | | | | | * Consolidated food effects into EatItem, added all fish types. * Changed type of NumFishInfos to satisfy clang. * Removed unused call for a_Item in EatItem | ||||
* | BigFlower fixes (#3826) | peterbell10 | 2017-07-07 | 4 | -24/+26 |
| | | | | | | | * BigFlowers fixes * Correct upper part meta * Documented parameters to DoesIgnoreBuildCollision | ||||
* | Added 1.12 blocks (#3760) | Bond-009 | 2017-06-30 | 2 | -1/+19 |
| | |||||
* | Fix shears (and vines) | Bond-009 | 2017-06-21 | 1 | -25/+6 |
| | | | | | | | * Shears now lose durability when breaking any block * Leaves don't drop 2 leaves anymore when broken by shears * Removed the chance to drop saplings or apples when leaves are broken by shears * Vines can't be attached to ender chests, pistons and redstone repeaters | ||||
* | FastRandom rewrite (#3754) | peterbell10 | 2017-06-13 | 3 | -11/+11 |
| | |||||
* | Fixed double chests (#3741) | peterbell10 | 2017-06-03 | 1 | -1/+1 |
| | | | | | Normal and trapped chests next to each other don't open a double chest window. Slot changes in the secondary chest are broadcast. Placing a chest in +x of another updates the original chest's metadata. | ||||
* | Exported boat | Lukas Pioch | 2017-05-24 | 1 | -1/+1 |
| | | | | | | | - NBT: Added saving / loading of material - Added the material in the item handler of the boat - Drop the correct boat if destroyed - APIDoc: Added desc and functions | ||||
* | Tracer replacement (#3704) | Mattes D | 2017-05-11 | 4 | -7/+8 |
| | | | | | | * Replaced cTracer usage with cLineBlockTracer. * Exported new cLineBlockTracer utility functions to Lua API. | ||||
* | Added missing checks for Initialize function and updated APIDoc | Lukas Pioch | 2017-05-08 | 4 | -4/+24 |
| | |||||
* | Return bowl when eating beetroot soup | Bond-009 | 2017-03-20 | 1 | -0/+1 |
| | |||||
* | Deadbushes drop sticks | Bond-009 | 2017-03-19 | 2 | -1/+1 |
| | |||||
* | Boat spawned, remove it from player's hand | Lukas Pioch | 2017-03-17 | 1 | -0/+6 |
| | |||||
* | Fixed which blocks can be harvested with what type of pickaxe (#3586) | Bond-009 | 2017-02-26 | 1 | -0/+16 |
| | |||||
* | Changed fish launching mechanism (#3520) | Alex | 2017-02-20 | 1 | -2/+8 |
| | | | Fish and other fishing loot now correctly fly towards played when reeled in. | ||||
* | Updated sounds and effect IDs (#3422) | mathiascode | 2017-02-15 | 8 | -50/+5 |
| | |||||
* | Added some blocks and items (#3503) | mathiascode | 2017-02-14 | 5 | -13/+58 |
| | |||||
* | Fixed placing of double tall flowers and an inconsistency with vanilla (#3541) | Jacob | 2017-01-19 | 1 | -2/+1 |
| | |||||
* | Added code to handle signs replacing blocks | QuImUfu | 2016-12-01 | 1 | -1/+12 |
| | |||||
* | Removed ClientHandle.h dependencies from common headers. | Mattes D | 2016-11-18 | 1 | -0/+1 |
| | |||||
* | Added missing "override" specifier. | Mattes D | 2016-11-13 | 4 | -4/+4 |
| | |||||
* | Anticheat fastbreak (#3411) | mohe2015 | 2016-11-06 | 8 | -0/+177 |
| | | | Added block hardness checks when breaking blocks. | ||||
* | Fixed type-casting-related warnings. | Mattes D | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | Fixed implicit rounding warnings. | Mattes D | 2016-08-19 | 1 | -5/+8 |
| | |||||
* | Fix issue #3312 | Alexander Harkness | 2016-08-12 | 1 | -0/+1 |
| | | | Nether brick fences now drop their item. | ||||
* | CMake: Remove needless minimum version specifications. | Mattes D | 2016-07-18 | 1 | -2/+0 |
| | |||||
* | Fixes for boat entities (#3265) | beeduck | 2016-07-18 | 1 | -1/+16 |
| | | | protocol for vehicles now properly handled, protocol for boat paddles now properly handled, boats can no longer spawn underwater, boats now properly float, boat metadata now properly broadcasted. | ||||
* | Bulk clearing of whitespace | LogicParrot | 2016-02-05 | 28 | -119/+119 |
| | |||||
* | Updated old forum links | Mathias | 2016-01-31 | 1 | -1/+1 |
| | |||||
* | Renamed leftover strings to Cuberite / Server, as needed. | Mattes D | 2016-01-01 | 1 | -1/+1 |
| | | | | Also upgraded the user setting file for MSVC to 2013. | ||||
* | add handling of water bottle | Gargaj | 2015-12-22 | 3 | -0/+98 |
| | |||||
* | Tilling dirt should send block update | Gargaj | 2015-12-06 | 1 | -1/+1 |
| | | | | There are BUD switches that are built on this (https://www.youtube.com/watch?v=Bk_ChvmtCNY) but more prominently, torches placed on dirt blocks should pop off when the dirt block is tilled. | ||||
* | Merge mushroom soup into generic food handler | Gargaj | 2015-12-03 | 4 | -56/+25 |
| | | | | ...and fix eating the bowl when eating rabbit stew | ||||
* | remove slab from inventory when using it on another slab (fixes #2610) | Gargaj | 2015-11-09 | 1 | -3/+27 |
| | |||||
* | Added CircleCI for stylechecking. | Mattes D | 2015-09-17 | 1 | -2/+5 |
| | | | | This will allow us to remove the stylecheck from Travis builds, making them a bit faster, and having fast style checks | ||||
* | Silenced and fixed many warning messages across multiple files. | Samuel Barney | 2015-07-29 | 9 | -20/+26 |
| | |||||
* | Spawn baby mobs | hallucino | 2015-07-16 | 3 | -4/+4 |
| | |||||
* | Improved maps | Tiger Wang | 2015-07-14 | 7 | -10/+10 |
| | |||||
* | Doors now get placed on the server-side. | bibo38 | 2015-06-25 | 1 | -1/+0 |
| | | | | | | The Y-Value is already the lower door block(From ItemHandler.cpp:346). Increasing it once again, places the door into the air, which is blocked by Cuberite. Bugfix #2279 | ||||
* | Fixed right-click with bonemeal. | Mattes D | 2015-06-23 | 1 | -1/+1 |
| | | | | The client would send invalid right-click events with Y set to 0x7ff, which would crash the server. Only process bonemeal for valid clicks (valid blockface). | ||||
* | Refactored block placement workflow. | Mattes D | 2015-06-21 | 7 | -85/+156 |
| | | | | Multi-blocks can now use the default OnPlayerPlaced() callback in cItemHandler. | ||||
* | Merge branch 'master' into PreventNewWarnings | tycho | 2015-05-28 | 3 | -4/+4 |
|\ | | | | | | | | | Conflicts: src/Inventory.cpp | ||||
| * | Merge pull request #2061 from mc-server/fixes | Alexander Harkness | 2015-05-27 | 3 | -4/+4 |
| |\ | | | | | | | Fixes | ||||
| | * | Fixes #2052 | Tiger Wang | 2015-05-18 | 3 | -4/+4 |
| | | | |||||
* | | | Merge branch 'master' into PreventNewWarnings | tycho | 2015-05-24 | 1 | -0/+14 |
|\| | | |||||
| * | | Merge pull request #2091 from Rakete1111/master | worktycho | 2015-05-24 | 1 | -0/+14 |
| |\ \ | | | | | | | | | Placing buckets up to 25 blocks away #2059 | ||||
| | * | | Fixes #2059 | Blitz Rakete | 2015-05-21 | 1 | -0/+14 |
| | |/ | |||||
* | | | Made -Weverything an error. | tycho | 2015-05-24 | 3 | -4/+11 |
| | | | |||||
* | | | Merge branch 'master' into PreventNewWarnings | tycho | 2015-05-23 | 1 | -1/+1 |
|\| | | |||||
| * | | Fixed missing overrides and added a ignore flag for reserved macro for clang version 3.6 and higher. | Lukas Pioch | 2015-05-23 | 1 | -1/+1 |
| |/ | |||||
* / | Make -Werror disabling file only | tycho | 2015-05-19 | 1 | -0/+4 |
|/ | | | | Ad fix a load of warnings | ||||
* | CheckBasicStyle: checks spaces around * and &. | Mattes D | 2015-05-09 | 2 | -2/+2 |
| | |||||
* | More style checking. | Mattes D | 2015-05-09 | 2 | -2/+2 |
| | | | | Spaces around some operators are checked. | ||||
* | Rabbit and cooked rabbit now stackable | jammet | 2015-05-09 | 1 | -1/+3 |
| | | | | And corrected the alphabetical ordering. | ||||
* | Fixed #1893 | Tri125 | 2015-05-07 | 1 | -0/+1 |
| | | | | Quartz ore now stack properly | ||||
* | Merge pull request #1851 from wraith11/DoorFix | Mattes D | 2015-04-23 | 1 | -1/+1 |
|\ | | | | | Fix door placing in connection with slabs | ||||
| * | Fix door placing in connection with slabs | wraith11 | 2015-04-21 | 1 | -1/+1 |
| | | | | | | | | Except top-half slabs as transparent blocks for doors. | ||||
* | | Merge pull request #1852 from wraith11/SlabPlacing | Mattes D | 2015-04-23 | 1 | -0/+23 |
|\ \ | | | | | | | Fix slab placing | ||||
| * | | Fix slab placing | wraith11 | 2015-04-22 | 1 | -0/+23 |
| |/ | |||||
* | | ItemHandler type fixes. | Mattes D | 2015-04-20 | 1 | -2/+2 |
| | | |||||
* | | ItemHandler: Using automatic array bounds. | Mattes D | 2015-04-20 | 1 | -1/+1 |
| | | |||||
* | | Fixed PolishedGranite et al crafting recipes. | Mattes D | 2015-04-16 | 1 | -2/+2 |
| | | | | | | | | Fixes #1774. Ref.: #1859 | ||||
* | | Scooping up fluid calls the player placement hooks. | Mattes D | 2015-04-14 | 1 | -4/+12 |
| | | | | | | | | Ref.: #1857. | ||||
* | | Placing a fluid from bucket calls plugin hooks. | Mattes D | 2015-04-14 | 18 | -51/+165 |
|/ | | | | Ref.: #1857. | ||||
* | Fixed placing bottom half-slabs by clicking a top half-slab. | Mattes D | 2015-03-28 | 1 | -2/+2 |
| | | | | Ref.: #1837 | ||||
* | Merge pull request #1826 from mc-server/UnifyPacketizer | Mattes D | 2015-03-24 | 3 | -4/+4 |
|\ | | | | | Unify packetizer | ||||
| * | Changed cEntity::m_UniqueID to UInt32. | Mattes D | 2015-03-21 | 3 | -4/+4 |
| | | |||||
* | | Correct world height validations. | Tommy Santerre | 2015-03-20 | 1 | -1/+1 |
|/ | | | | | Unify the way we test block above the current one (Height - 1 instead of a_RelY + 1). Allow generation of world of flat height = 255 | ||||
* | cPainting saving implemented | Tiger Wang | 2015-03-14 | 1 | -16/+3 |
| | | | | Additionally, it now inherits from cHangingEntity. | ||||
* | Fixed door placement. | Mattes D | 2015-02-28 | 1 | -4/+17 |
| | | | | Doors now have hinges on the correct side, based on what the surroundings are when placing them. | ||||
* | Door handler: Removed needless check. | Mattes D | 2015-02-21 | 1 | -1/+1 |
| | | | | The Y coord has already been checked above. | ||||
* | Fix door placement check | Freddie Wang | 2015-02-21 | 1 | -7/+3 |
| | |||||
* | Fixed various warnings. | Mattes D | 2015-01-18 | 1 | -6/+6 |
| | |||||
* | MobHead: Fixed wither spawning. | Mattes D | 2014-12-25 | 1 | -13/+40 |
| | |||||
* | MobHeads: fixed regular head placement. | Mattes D | 2014-12-25 | 1 | -2/+22 |
| | |||||
* | Fixed door placement. | Mattes D | 2014-12-25 | 1 | -2/+2 |
| | |||||
* | Fixed forgotten big flower handler. | Mattes D | 2014-12-25 | 1 | -1/+2 |
| | |||||
* | Fixed redstone dust placement on upside-down slabs. | Mattes D | 2014-12-24 | 1 | -1/+36 |
| | |||||
* | Refactored all player block placing to go through hooks. | Mattes D | 2014-12-24 | 12 | -108/+1041 |
| | | | | Fixes #1618. | ||||
* | Added Rabbits | Masy98 | 2014-12-20 | 1 | -0/+1 |
| | |||||
* | Merge branch 'master' into entities | Masy98 | 2014-12-18 | 1 | -2/+44 |
|\ | |||||
| * | Fixes | Howaner | 2014-12-13 | 1 | -0/+5 |
| | | |||||
| * | Added cocoa pod. | Howaner | 2014-12-01 | 1 | -2/+39 |
| | | |||||
* | | Added Entity Guardian | Masy98 | 2014-12-18 | 1 | -0/+1 |
|/ | |||||
* | En masse NULL -> nullptr replace | Tiger Wang | 2014-10-23 | 6 | -10/+10 |
| | |||||
* | Moved tall grass pickups handle. | Howaner | 2014-10-21 | 1 | -9/+0 |
| | |||||
* | Leaves are harvest-able. | Howaner | 2014-10-07 | 1 | -2/+0 |
| | |||||
* | Corrected drops from dead bush, tall grass and cobweb. | Howaner | 2014-10-07 | 2 | -11/+35 |
| | |||||
* | Fixed sorting | Masy98 | 2014-10-01 | 1 | -2/+2 |
| | |||||
* | Fixed Red Sandstone and Prismarine drops | Masy98 | 2014-10-01 | 2 | -17/+23 |
| | |||||
* | Fixed 1.8 dirt types | Howaner | 2014-09-30 | 1 | -2/+25 |
| | |||||
* | Merge pull request #1415 from Masy98/blocks | Mattes D | 2014-09-26 | 3 | -28/+72 |
|\ | | | | | Added 1.8 Blocks and Items | ||||
| * | Moved curly brace to seperate line | Masy98 | 2014-09-26 | 1 | -1/+2 |
| | | |||||
| * | Merge branch 'master' into blocks | Masy98 | 2014-09-26 | 9 | -38/+112 |
| |\ | | | | | | | | | | | | | | | | Conflicts: src/Items/ItemHandler.cpp src/Simulator/IncrementalRedstoneSimulator.cpp | ||||
| * | | Fixed 1.8 Item stacking and block harvesting | Masy98 | 2014-09-12 | 1 | -25/+43 |
| | | | |||||
| * | | Added new doors in ItemDoor.h | Masy98 | 2014-09-11 | 1 | -1/+15 |
| | | | |||||
| * | | Fixed mutton name in Sheep.cpp | Masy98 | 2014-09-11 | 1 | -2/+10 |
| | | | |||||
| * | | Fixed mutton name in ItemHandler | Masy98 | 2014-09-11 | 1 | -1/+1 |
| | | | |||||
| * | | Added 1.8 food to the food list | Masy98 | 2014-09-11 | 1 | -1/+4 |
| | | | |||||
* | | | Removed more unessicary includes | Tycho | 2014-09-26 | 1 | -0/+1 |
| |/ |/| | |||||
* | | Merge branch 'master' into redstoneTests | Tycho | 2014-09-25 | 1 | -1/+0 |
|\ \ | | | | | | | | | | | | | Conflicts: src/Mobs/Monster.h | ||||
| * \ | Merge branch 'master' into 1.8-Protocol | Howaner | 2014-09-14 | 6 | -7/+74 |
| |\ \ | |||||
| * \ \ | Merge branch 'master' into 1.8-Protocol | Howaner | 2014-09-13 | 3 | -5/+8 |
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Items/ItemHoe.h | ||||
| * | | | | Fixed many right click issues. | Howaner | 2014-09-12 | 1 | -3/+7 |
| | |_|/ | |/| | | |||||
* | | | | Merge branch 'master' into redstoneTests | Tycho | 2014-09-17 | 8 | -8/+83 |
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | Conflicts: src/Blocks/ChunkInterface.h | ||||
| * | | | Improved cBlockHandler::DropBlock | Tiger Wang | 2014-09-13 | 1 | -1/+1 |
| | | | | |||||
| * | | | Merge pull request #1353 from mc-server/Effects | Mattes D | 2014-09-13 | 6 | -6/+73 |
| |\ \ \ | | |_|/ | |/| | | Added speed entity effect. | ||||
| | * | | Added extra mushroom handler. | Howaner | 2014-09-12 | 3 | -3/+60 |
| | | | | |||||
| | * | | Merge branch 'master' into Effects | Howaner | 2014-09-12 | 3 | -5/+9 |
| | |\| | |||||
| | * | | Merge branch 'master' into Effects | Howaner | 2014-09-02 | 2 | -2/+12 |
| | |\ \ | |||||
| | * | | | Fixed potion removing in creative mode. | Howaner | 2014-08-30 | 4 | -4/+14 |
| | | | | | |||||
| * | | | | Fixed farmland issues. | Howaner | 2014-09-12 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Only place farmland if no block is upper than dirt/grass. | Howaner | 2014-09-12 | 1 | -1/+6 |
| | | | | | |||||
| * | | | | Added hoe interact sound. | Howaner | 2014-09-12 | 1 | -0/+1 |
| | | | | | |||||
| * | | | | Spawn exp if you break a mob spawner. | Howaner | 2014-09-12 | 1 | -0/+1 |
| | | | | | |||||
| * | | | | Disabled mobspawner itemdrop. | Howaner | 2014-09-12 | 1 | -0/+1 |
| | |_|/ | |/| | | |||||
* / | | | Added first test to show the object can be created | Tycho | 2014-09-17 | 1 | -28/+28 |
|/ / / | |||||
* | | | In 1.8, carrots and potatoes yield one less hunger point. | archshift | 2014-09-04 | 2 | -2/+2 |
| | | | |||||
* | | | Fixed style and alpha-sorting. | madmaxoft | 2014-09-03 | 2 | -7/+7 |
| | | | |||||
* | | | Added mutton, which sheep now drop when killed | archshift | 2014-09-03 | 2 | -0/+4 |
| |/ |/| | |||||
* | | Merge remote-tracking branch 'Hircine/Enchantments' | madmaxoft | 2014-09-01 | 1 | -1/+11 |
|\ \ | |||||
| * | | Fixes | Jaume Aloy | 2014-08-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | - Changed m_TicksLeftBurning > 0 for IsOnFire() - Tried to do the changes in BlockHandler.cpp - Removed m_Creator in ArrowEntity - Added m_Enchantments in ProjectileEntity CreatorData - Added blank lines between functions | ||||
| * | | Added some Enchantments | Jaume Aloy | 2014-08-19 | 1 | -1/+11 |
| | | | | | | | | | | | | | | | | | | - Bow enchantments: Infinity, Flame and Power - Sword and tools enchantments: Fire Aspect, Bane of Arthropods, Smite, Sharpness | ||||
* | | | Merge branch 'master' of https://github.com/mc-server/MCServer | Tiger Wang | 2014-08-29 | 4 | -3/+12 |
|\ \ \ | | |/ | |/| | | | | | | | Conflicts: src/Server.cpp | ||||
| * | | Code formatting fixes. | Howaner | 2014-08-19 | 2 | -2/+1 |
| |/ | |||||
| * | Fixed unsigned long comparison to size_t | archshift | 2014-08-05 | 1 | -1/+1 |
| | | |||||
| * | Changed arrow comment. | Howaner | 2014-08-04 | 1 | -1/+1 |
| | | |||||
| * | Added arrow consuming on shooting | Howaner | 2014-08-04 | 1 | -0/+10 |
| | | |||||
* | | Removed unused code | Tiger Wang | 2014-08-29 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #1272 from Howaner/Food | Mattes D | 2014-08-01 | 4 | -25/+136 |
|\ | | | | | Fixed hunger bugs, Implemented golden apple, added jump statistic, added... | ||||
| * | Fixed hunger bugs, Implemented golden apple, added jump statistic, added correct food effects. | Howaner | 2014-07-31 | 4 | -25/+136 |
| | | |||||
* | | Fixed water from ice and removed packed ice drop. | Howaner | 2014-07-31 | 1 | -0/+1 |
|/ | |||||
* | Hotfixed compilation problems. | madmaxoft | 2014-07-27 | 2 | -2/+2 |
| | |||||
* | Merge pull request #1236 from Howaner/Inventory2 | Mattes D | 2014-07-27 | 7 | -13/+107 |
|\ | | | | | Fix item durability. | ||||
| * | Derp. | Howaner | 2014-07-26 | 1 | -1/+1 |
| | | |||||
| * | Rename function. | Howaner | 2014-07-26 | 4 | -6/+6 |
| | | |||||
| * | Merge branch 'master' into Inventory2 | Howaner | 2014-07-26 | 5 | -13/+61 |
| |\ | | | | | | | | | | | | | Conflicts: src/BlockInfo.cpp | ||||
| * | | Fix item durability. | Howaner | 2014-07-23 | 5 | -10/+91 |
| | | | | | | | | | Fixes #1181 | ||||
* | | | Fixed indentations, removed redundant init code in SplashPotionEntity.cpp | archshift | 2014-07-26 | 1 | -3/+5 |
| | | | |||||
* | | | Moved potion static functions to EntityEffect to create splash potions through world | archshift | 2014-07-26 | 1 | -129/+7 |
| |/ |/| | |||||
* | | Fixed block drops | Tiger Wang | 2014-07-24 | 2 | -5/+43 |
| | | | | | | | | * Fixes #1242 (the issue addressed within) | ||||
* | | Merge remote-tracking branch 'origin/master' into saplingsandleaves | Tiger Wang | 2014-07-22 | 3 | -5/+5 |
|\| | | | | | | | | | Conflicts: src/Defines.h | ||||
| * | Style: Normalized to no spaces before closing parenthesis. | madmaxoft | 2014-07-21 | 3 | -4/+4 |
| | | |||||
| * | Style: Normalized spaces after if, for and while. | madmaxoft | 2014-07-21 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into saplingsandleaves | Tiger Wang | 2014-07-20 | 26 | -78/+136 |
|\| | | | | | | | | | | | Conflicts: src/Bindings/DeprecatedBindings.cpp src/Blocks/BlockSapling.h | ||||
| * | Fixed style: spaces after commas. | madmaxoft | 2014-07-19 | 2 | -2/+2 |
| | | |||||
| * | Merge pull request #1214 from mc-server/anti-glob | Mattes D | 2014-07-19 | 1 | -5/+49 |
| |\ | | | | | | | CMake - Explicitly lists all source files | ||||
| | * | Subdirs: Only add_library if not using MSVC | archshift | 2014-07-19 | 1 | -1/+3 |
| | | | |||||
| | * | Items/CMakeLists.txt: Replaced glob with list of files | archshift | 2014-07-19 | 1 | -5/+47 |
| | | | |||||
| * | | Splash potions: Renamed PotionParticleType to PotionColor for clarity | archshift | 2014-07-19 | 1 | -3/+3 |
| |/ | |||||
| * | Added a extra wall sign handler. | Howaner | 2014-07-18 | 1 | -3/+4 |
| | | | | | | Fixes #1119 | ||||
| * | Fixed tabs used for alignment. | madmaxoft | 2014-07-17 | 2 | -8/+8 |
| | | |||||
| * | More trailing whitespace fixes. | madmaxoft | 2014-07-17 | 3 | -6/+6 |
| | | |||||
| * | Basic style fixes. | madmaxoft | 2014-07-17 | 19 | -25/+25 |
| | | |||||
| * | Normalized comments. | madmaxoft | 2014-07-17 | 10 | -26/+39 |
| | | | | | | | | | | This was mostly done automatically and then visually inspected for obvious errors. All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign. | ||||
* | | Fixed issues relating to saplings and leaves | Tiger Wang | 2014-07-17 | 1 | -6/+3 |
|/ | | | | | | - Removed cBlockInfo::RequiresSpecialTool * Fixes #1195 * Fixes #1201 | ||||
* | Reformatted cItemPotionHandler. | madmaxoft | 2014-07-17 | 1 | -47/+77 |
| | |||||
* | Merge remote-tracking branch 'origin/master' into potions | madmaxoft | 2014-07-17 | 1 | -1/+1 |
|\ | |||||
| * | Fixed a bug with buckets | Tiger Wang | 2014-07-16 | 1 | -1/+1 |
| | | | | | | | | | | * Additionally fixed cLineBlockTracer's EntryFace parameter when a block was hit on the first iteration along the projected line | ||||
* | | Merge branch 'master' into potions | madmaxoft | 2014-07-15 | 4 | -38/+58 |
|\| | |||||
| * | Fixed placing liquids over liquids | Tiger Wang | 2014-07-14 | 1 | -1/+1 |
| | | | | | | | | * Fixes #1182 | ||||
| * | Adjusted calls to CreateProjectile that passed Items | Tycho | 2014-07-13 | 1 | -2/+2 |
| | | |||||
| * | Changed BroadcastSoundEffect function to take floating pos. | Howaner | 2014-07-13 | 3 | -12/+5 |
| | | |||||
| * | Comment grammar correction | Tiger Wang | 2014-07-12 | 1 | -1/+1 |
| | | |||||
| * | Simplified buckets code slightly | Tiger Wang | 2014-07-12 | 1 | -32/+15 |
| | | |||||
| * | Merge pull request #1162 from daniel0916/Fixes | Tiger Wang | 2014-07-12 | 1 | -23/+67 |
| |\ | | | | | | | Fix for bucket placing | ||||
| | * | Changes | daniel0916 | 2014-07-12 | 1 | -5/+4 |
| | | | |||||
| | * | Changes | daniel0916 | 2014-07-11 | 1 | -24/+16 |
| | | | |||||
| | * | Changes | daniel0916 | 2014-07-10 | 1 | -20/+22 |
| | | | |||||
| | * | Maybe fixed whitespaces | daniel0916 | 2014-07-10 | 1 | -7/+7 |
| | | | |||||
| | * | Maybe fixed whitespaces | daniel0916 | 2014-07-10 | 1 | -1/+1 |
| | | | |||||
| | * | Fixed Bucket Placing | daniel0916 | 2014-07-10 | 1 | -6/+57 |
| | | | |||||
| | * | Fixed Bucket placing | daniel0916 | 2014-07-09 | 1 | -1/+1 |
| | | | |||||
* | | | ItemHandler.cpp: removed redundant food and drink checks | archshift | 2014-07-14 | 1 | -33/+0 |
| | | | |||||
* | | | Readability and clarity changes | archshift | 2014-07-14 | 1 | -30/+45 |
| | | | |||||
* | | | For now, removed creator member from Entity Effect for pointer safety | archshift | 2014-07-12 | 1 | -2/+2 |
| | | | |||||
* | | | Merge remote-tracking branch 'origin/master' into potions | archshift | 2014-07-10 | 5 | -11/+62 |
|\| | | | | | | | | | | | | | | | | | Conflicts: src/Entities/Player.cpp src/Entities/ProjectileEntity.cpp | ||||
| * | | Fixed bow charge | Tiger Wang | 2014-07-09 | 1 | -11/+2 |
| |/ | |||||
| * | Only fixes the server crash. | Howaner | 2014-07-01 | 1 | -1/+1 |
| | | |||||
| * | Fix server-crash with non-existing items. | Howaner | 2014-07-01 | 1 | -1/+1 |
| | | |||||
| * | Implemented tripwire(s) (hooks) | Tiger Wang | 2014-06-28 | 2 | -0/+41 |
| | | | | | | | | * Fixes #944 | ||||
| * | Merge branch 'master' into Bow | Howaner | 2014-06-26 | 4 | -0/+14 |
| |\ | |||||
| | * | Nullify deleted pointers. | archshift | 2014-06-19 | 3 | -0/+3 |
| | | | |||||
| | * | Merge branch 'master' into GlobalFixes | Howaner | 2014-06-17 | 6 | -6/+6 |
| | |\ | |||||
| | * | | Add throw sound and fix arrow server crash. | Howaner | 2014-05-28 | 1 | -0/+11 |
| | | | | |||||
| * | | | Split Broadcast Sound Effect function call in multiple lines. | Howaner | 2014-06-16 | 1 | -1/+8 |
| | | | | |||||
| * | | | This isn't needed | Howaner | 2014-06-16 | 1 | -1/+0 |
| | | | | |||||
| * | | | Fix bow sound and creative arrow pickup. | Howaner | 2014-06-16 | 1 | -9/+8 |
| | |/ | |/| | |||||
* | | | EntityEffects.x -> EntityEffect.x, Object-Oriented effects | archshift | 2014-06-19 | 1 | -1/+1 |
| | | | | | | | | | | | | Changed effect map to take a pointer of the effect as a result. | ||||
* | | | Entity Effects: Clarified user, added it to AddEntityEffect | archshift | 2014-06-17 | 1 | -1/+1 |
| | | | | | | | | | | | | Added second AddEntityEffect with a pass-by-value of the class. | ||||
* | | | Changed the AddEntityEffect() params for easier calls. | madmaxoft | 2014-06-17 | 1 | -2/+1 |
| | | | |||||
* | | | Fixed MSVC compilation. | madmaxoft | 2014-06-17 | 1 | -7/+7 |
| | | | |||||
* | | | Pawn: renamed HandleEntityEffects to HandleEntityEffect | archshift | 2014-06-17 | 1 | -1/+1 |
| | | | | | | | | | | | | Exported entity effect functions for ToLua and documented them in APIDesc.lua | ||||
* | | | Removed long function wrapping | archshift | 2014-06-17 | 1 | -10/+2 |
| | | | |||||
* | | | ItemHandler: changed IsDrinkable() to take a short argument | archshift | 2014-06-17 | 4 | -15/+10 |
| | | | |||||
* | | | Splash potion: Adjusted speed, fixed spawn position | archshift | 2014-06-17 | 1 | -6/+3 |
| | | | |||||
* | | | Entity effect type: use 'eff' as a prefix instead of 'ef' | archshift | 2014-06-17 | 1 | -33/+33 |
| | | | |||||
* | | | Added splash potion functionality | archshift | 2014-06-17 | 1 | -1/+35 |
| | | | |||||
* | | | Implemented drinkable potions, noeffect entity effect, | archshift | 2014-06-17 | 4 | -3/+146 |
| | | | | | | | | | | | | Clears entity effects on death | ||||
* | | | Implemented milk, added documentation to Pawn.h | archshift | 2014-06-17 | 3 | -1/+47 |
| | | | |||||
* | | | Player: Removed food-poisoning-specific code, set duration to 30 seconds | archshift | 2014-06-17 | 1 | -1/+1 |
|/ / | | | | | | | http://minecraft.gamepedia.com/Hunger#Behavior | ||||
* / | Fixed deadlock when moving players to other worlds. | Mattes D | 2014-06-08 | 6 | -6/+6 |
|/ | | | | Fixes #1039, fixes #851 | ||||
* | Cleaned up cPlayer::UpdateMovementStats; Wither achievements | andrew | 2014-05-20 | 1 | -0/+6 |
| | |||||
* | Merge pull request #989 from Howaner/Anvil | Mattes D | 2014-05-07 | 2 | -12/+0 |
|\ | | | | | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix ... | ||||
| * | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix anvil bugs. | Howaner | 2014-05-07 | 2 | -12/+0 |
| | | |||||
* | | Merge branch 'master' into Slabs | Howaner | 2014-05-07 | 11 | -34/+282 |
|\ \ | |||||
| * | | Merge pull request #985 from Howaner/Anvil | Mattes D | 2014-05-06 | 6 | -0/+108 |
| |\| | | | | | | | Add anvil inventory. | ||||
| | * | Rename CanRepairWithItem to CanRepairWithRawMaterial and rename Size() to Count() | Howaner | 2014-05-06 | 6 | -26/+26 |
| | | | |||||
| | * | Add anvil window and slot area. | Howaner | 2014-05-05 | 6 | -0/+108 |
| | | | |||||
| * | | Suggestions'd | Tiger Wang | 2014-05-06 | 1 | -5/+9 |
| | | | |||||
| * | | Merge branch 'master' into fixes. | madmaxoft | 2014-05-02 | 6 | -18/+154 |
| |\| | |||||
| | * | Added a sanitizer for Spawn egg damage value. | madmaxoft | 2014-05-02 | 1 | -1/+39 |
| | | | | | | | | | | | | This disallows spawning unknown mobs from unknown spawn eggs. Ref.: #928. | ||||
| | * | Fixed projectile source filenames, indentations | archshift | 2014-04-28 | 1 | -1/+1 |
| | | | |||||
| | * | Moved cArrowEntity out of ProjectileEntity.h | archshift | 2014-04-27 | 1 | -1/+1 |
| | | | |||||
| | * | Missed these CMakeLists. | archshift | 2014-04-25 | 1 | -1/+6 |
| | | | |||||
| | * | Add commit what the code is doing. | Howaner | 2014-04-25 | 1 | -0/+1 |
| | | | |||||
| | * | Add unkown armor warning and fix armor stacks. | Howaner | 2014-04-25 | 1 | -2/+14 |
| | | | |||||
| | * | Add armor to switch() in ItemHandler.cpp | Howaner | 2014-04-24 | 1 | -6/+25 |
| | | | |||||
| | * | Fix armor in survival mode. | Howaner | 2014-04-24 | 3 | -15/+76 |
| | | | |||||
| * | | Merge branch 'master' into fixes | Tiger Wang | 2014-04-24 | 2 | -3/+2 |
| |\| | | | | | | | | | | | | | Conflicts: src/World.h | ||||
| | * | Fixed clang compilation errors. Apparently gcc and MSVC do not care about the order of initializer lists, but clang does. | jfhumann | 2014-04-18 | 1 | -1/+1 |
| | | | |||||
| | * | Did some static analysis, fixed some bugs and optimized a lot of code | jfhumann | 2014-04-18 | 2 | -2/+1 |
| | | | |||||
| * | | Small changes | Tiger Wang | 2014-04-23 | 2 | -9/+10 |
| |/ | |||||
* | | Merge branch 'master' into Slabs | Howaner | 2014-04-06 | 5 | -18/+19 |
|\| | |||||
| * | Fixed Clang warnings in itemhandlers. | madmaxoft | 2014-04-04 | 5 | -18/+19 |
| | | |||||
* | | Add CanChangeDirtToGrass function to Block Handlers. | Howaner | 2014-04-06 | 2 | -1/+2 |
|/ | |||||
* | Fixed boat placement code. | madmaxoft | 2014-04-02 | 1 | -9/+17 |
| | |||||
* | Another curly | Tiger Wang | 2014-03-30 | 1 | -1/+2 |
| | |||||
* | Curly brackets | Tiger Wang | 2014-03-29 | 1 | -1/+4 |
| | |||||
* | Fixed infinite minecart items | Tiger Wang | 2014-03-28 | 1 | -0/+3 |
| | |||||
* | Some fixes to lilypads | Tiger Wang | 2014-03-28 | 2 | -0/+108 |
| | | | | | | | | * Fixed placement on lava * Fixed placement on side of blocks * Fixed placement through blocks + Added washing-away of pads + Added ice as a block that fully occupies its voxel | ||||
* | Implemented lilypad placement | Tiger Wang | 2014-03-23 | 1 | -4/+4 |
| | |||||
* | Merge branch 'master' into awesometnt | Tiger Wang | 2014-03-18 | 5 | -4/+75 |
|\ | | | | | | | | | Conflicts: src/ChunkMap.cpp | ||||
| * | Merge pull request #809 from Howaner/BlockEntitys | Mattes D | 2014-03-16 | 3 | -2/+27 |
| |\ | | | | | | | More entity saving. | ||||
| | * | Merge branch 'master' into BlockEntitys | Howaner | 2014-03-15 | 3 | -14/+17 |
| | |\ | |||||
| | * | | Add fireball interact | Howaner | 2014-03-14 | 3 | -2/+27 |
| | | | | |||||
| * | | | Add new leaves to all classes. | Howaner | 2014-03-16 | 2 | -2/+4 |
| | | | | |||||
| * | | | Add cake | Howaner | 2014-03-16 | 2 | -0/+44 |
| | |/ | |/| | |||||
* | | | Merge remote-tracking branch 'origin/master' into awesometnt | Tiger Wang | 2014-03-10 | 2 | -5/+5 |
|\| | | | | | | | | | | | | | | | | | Conflicts: src/Items/ItemLighter.h src/Simulator/IncrementalRedstoneSimulator.cpp | ||||
| * | | Merge pull request #768 from Howaner/BlockEntitys | Tiger Wang | 2014-03-09 | 1 | -2/+2 |
| |\| | | | | | | | Add TNT load/save | ||||
| | * | Change TNT Fuse to ticks | Howaner | 2014-03-08 | 1 | -2/+2 |
| | | | |||||
| * | | Merge pull request #731 from mc-server/ballisticmissiles | Tiger Wang | 2014-03-09 | 1 | -3/+3 |
| |\ \ | | | | | | | | | Ballistic firework missiles | ||||
| | * \ | Merge branch 'master' into ballisticmissiles | Tiger Wang | 2014-03-09 | 4 | -17/+41 |
| | |\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ClientHandle.cpp | ||||
| | * | | | Implemented ballistic missiles (fireworks) | Tiger Wang | 2014-02-27 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | + Added fireworks | ||||
* | | | | | Merge branch 'master' into awesometnt | Tiger Wang | 2014-03-10 | 3 | -12/+15 |
|\| | | | | |||||
| * | | | | Merge branch 'master' into warnings | Tycho | 2014-03-08 | 1 | -11/+11 |
| |\ \ \ \ | | | |/ / | | |/| | | |||||
| | * | | | cBlockInfo-related changes from #723 | andrew | 2014-03-08 | 1 | -11/+11 |
| | | |/ | | |/| | |||||
| * / | | Fixed warnings | Tycho | 2014-03-07 | 1 | -0/+3 |
| |/ / | |||||
| * | | cBlockInfo now manages the respective cBlockHandler | andrew | 2014-03-02 | 1 | -1/+1 |
| | | | |||||
* | | | Added extra awesomeness to TNT | Tiger Wang | 2014-03-05 | 1 | -1/+1 |
|/ / | | | | | | | | | | | | | + TNT now has a chance of flinging FallingBlock entities around * Improved TNT damage * Improved TNT spawning visuals * Possible fix for 'SetSwimState failure' messages in debug | ||||
* | | g_BlockXXX => cBlockInfo::XXX | andrew | 2014-03-01 | 1 | -1/+1 |
| | | |||||
* | | Fixed multiple gcc warnings about unused params. | madmaxoft | 2014-02-28 | 1 | -1/+25 |
| | | |||||
* | | Fixed crash and some warnings in map handling. | madmaxoft | 2014-02-27 | 1 | -3/+3 |
|/ | | | | Fixes #728. | ||||
* | Fixed MCServer not compiling with C++03 compilers | STRWarrior | 2014-02-24 | 1 | -3/+3 |
| | |||||
* | Maps: Improvements | andrew | 2014-02-23 | 2 | -2/+2 |
| | |||||
* | Manual merge (Fixed conflicts) | andrew | 2014-02-20 | 5 | -3/+203 |
|\ | |||||
| * | Merge pull request #697 from Howaner/Skull | Mattes D | 2014-02-19 | 2 | -0/+44 |
| |\ | | | | | | | Add Skulls/Heads to MCServer | ||||
| | * | Rename SkullEntity to MobHeadEntity | Howaner | 2014-02-19 | 2 | -6/+4 |
| | | | |||||
| | * | Add Heads completely | Howaner | 2014-02-18 | 1 | -0/+1 |
| | | | |||||
| | * | Add Skulls/Heads | Howaner | 2014-02-17 | 2 | -0/+45 |
| | | | |||||
| * | | Merge branch 'master' into itemframes | Tiger Wang | 2014-02-18 | 2 | -2/+102 |
| |\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Entities/Entity.h src/WorldStorage/NBTChunkSerializer.cpp | ||||
| | * | | Comments & new BLOCK_FACE constants | Tiger Wang | 2014-02-18 | 1 | -7/+10 |
| | | | | |||||
| | * | | Implemented paintings, fixes #689 | Tiger Wang | 2014-02-18 | 2 | -2/+99 |
| | |/ | | | | | | | | | | + Implemented paintings | ||||
| * | | Fixed possible ASSERT failure | Tiger Wang | 2014-02-18 | 1 | -1/+1 |
| | | | |||||
| * | | Changed BlockFace type to eBlockFace | Tiger Wang | 2014-02-18 | 1 | -13/+1 |
| | | | |||||
| * | | Added an explanatory comment | Tiger Wang | 2014-02-18 | 1 | -0/+2 |
| | | | |||||
| * | | Used new BLOCK_FACE constants | Tiger Wang | 2014-02-18 | 1 | -7/+8 |
| | | | | | | | | | Also added more comments | ||||
| * | | Implemented item frames, a part of #689 | Tiger Wang | 2014-02-18 | 2 | -0/+65 |
| |/ | | | | | | | | | + Implemented Item Frames * Fixed Pitch and Yaw being wrongly flipped in the protocol (XOFT!) | ||||
| * | Fixed TNT fizzing everywhere | Tiger Wang | 2014-02-15 | 1 | -1/+1 |
| | | |||||
* | | Map decorators; Map clients | andrew | 2014-02-18 | 1 | -2/+2 |
| | | |||||
* | | Map item handler; Fixed several bugs | andrew | 2014-02-17 | 4 | -1/+68 |
| | | |||||
* | | cMap::UpdateRadius | andrew | 2014-02-15 | 1 | -2/+4 |
| | | |||||
* | | EmptyMap item handler | andrew | 2014-02-14 | 2 | -0/+48 |
|/ | |||||
* | Added additional parenthasies | worktycho | 2014-02-10 | 1 | -2/+1 |
| | |||||
* | Merge branch 'master' into boatsFix | Tycho | 2014-02-10 | 1 | -0/+1 |
|\ | | | | | | | | | Conflicts: src/Items/ItemBoat.h | ||||
| * | Maybe fixed boat placing | tonibm19 | 2014-02-10 | 1 | -1/+1 |
| | | |||||
* | | Fixed stupid mistax in conditional | worktycho | 2014-02-10 | 1 | -2/+1 |
|/ | | | boats can't be placed if the face is not block_face_none and not block_face_YM, not if it is only not one. | ||||
* | Merge branch 'master' into playerimprovements | Tiger Wang | 2014-02-09 | 28 | -40/+40 |
|\ | | | | | | | | | Conflicts: MCServer/Plugins/APIDump/APIDesc.lua | ||||
| * | Improved Type safety of eBlockFace | Tycho | 2014-02-04 | 28 | -40/+40 |
| | | | | | | | | May Fix #640 | ||||
* | | Fixed #626 | Tiger Wang | 2014-02-03 | 3 | -13/+38 |
|/ | | | | * Fixed consumption of carrots and potatoes | ||||
* | Changed Signiture of OnUpdate | Tycho | 2014-02-02 | 3 | -4/+13 |
| | |||||
* | Changed pointers to references | Tycho | 2014-02-01 | 2 | -2/+2 |
| | |||||
* | Refactored GetPlacementBlockTypeMeta | Tycho | 2014-01-26 | 2 | -3/+6 |
| | |||||
* | Fixed flint&steel failure on the Y world edges. | madmaxoft | 2014-01-24 | 1 | -0/+4 |
| | |||||
* | Merge pull request #534 from mc-server/SpawnMinecart | Mattes D | 2014-01-17 | 1 | -1/+1 |
|\ | | | | | Added cWorld::SpawnMinecart. | ||||
| * | Renamed cEmptyMinecart to cRideableMinecart | STRWarrior | 2014-01-12 | 1 | -1/+1 |
| | | |||||
| * | EmptyMinecarts should be able to get a block inside of them. | STRWarrior | 2014-01-12 | 1 | -1/+1 |
| | | |||||
* | | Removed internal cEntity::GetRot() usage. | madmaxoft | 2014-01-17 | 4 | -4/+4 |
| | | |||||
* | | Removed obsoleted functions | Tiger Wang | 2014-01-16 | 4 | -4/+4 |
| | | |||||
* | | Renamed g_TorchPlaceable... | Tiger Wang | 2014-01-11 | 1 | -1/+1 |
|/ | | | | ...to g_FullyOccupiesVoxel, as recommended by @bearbin | ||||
* | Fixed a few MSVC warnings. | madmaxoft | 2014-01-07 | 1 | -1/+0 |
| | |||||
* | Implented OnPlayerFishing and OnPlayerFished. | STRWarrior | 2013-12-30 | 1 | -1/+7 |
| | |||||
* | converted commneted paramater names to the unused macro | Tycho Bickerstaff | 2013-12-22 | 1 | -1/+7 |
| | |||||
* | Merge branch 'master' of github.com:mc-server/MCServer | Tycho Bickerstaff | 2013-12-22 | 1 | -29/+173 |
|\ | |||||
| * | You are now able to sweep mobs to your position using fishing rods. | STRWarrior | 2013-12-25 | 1 | -26/+64 |
| | | |||||
| * | Made the lure enchantment work. | STRWarrior | 2013-12-22 | 1 | -1/+1 |
| | | |||||
| * | Countdown time is between 100 and 900 ticks. | STRWarrior | 2013-12-22 | 1 | -1/+1 |
| | | |||||
| * | Using regular assignments. | STRWarrior | 2013-12-21 | 1 | -6/+6 |
| | | |||||
| * | Once again better Y direction for the items given when fishing. | STRWarrior | 2013-12-21 | 1 | -2/+2 |
| | | |||||
| * | You are now able to get different items from fishing. | STRWarrior | 2013-12-21 | 1 | -2/+108 |
| | | |||||
* | | Root is now warnings clean | Tycho Bickerstaff | 2013-12-21 | 1 | -1/+1 |
|/ | |||||
* | Merge branch 'master' into cmake | Tycho Bickerstaff | 2013-12-21 | 1 | -2/+7 |
|\ | |||||
| * | Fixed bug where you could pickup the floater only to get one spawned instantly or the other way around. | STRWarrior | 2013-12-21 | 1 | -0/+5 |
| | | |||||
| * | Increased the range an Floater can shoot to. | STRWarrior | 2013-12-20 | 1 | -1/+1 |
| | | |||||
| * | Fish now actualy jumps to the player instead of a few block bellow them. | STRWarrior | 2013-12-20 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into cmake | Tycho Bickerstaff | 2013-12-19 | 3 | -0/+85 |
|\| | |||||
| * | Merge pull request #450 from mc-server/redstonefixes | Mattes D | 2013-12-19 | 1 | -0/+5 |
| |\ | | | | | | | Multiple fixes | ||||
| | * | Fixed dust from being placed on nonsolids | Tiger Wang | 2013-12-19 | 1 | -0/+5 |
| | | | |||||
| * | | You can get fish from fishing :D. Only one type of fish though. | STRWarrior | 2013-12-19 | 1 | -12/+27 |
| | | | |||||
| * | | Implented cItemFishingRodHandler. | STRWarrior | 2013-12-19 | 2 | -0/+65 |
| |/ | |||||
* | | Merge branch 'master' into cmake | Tycho Bickerstaff | 2013-12-18 | 4 | -46/+169 |
|\| | |||||
| * | Implented Nether Wart. | STRWarrior | 2013-12-18 | 2 | -0/+56 |
| | | |||||
| * | Fixed naming and initialization. | madmaxoft | 2013-12-17 | 1 | -4/+12 |
| | | |||||
| * | Forgot to change one Vector3d to Vector3i. | STRWarrior | 2013-12-17 | 1 | -1/+1 |
| | | |||||
| * | Renamed Pos to m_Pos. | STRWarrior | 2013-12-17 | 1 | -3/+3 |
| | | |||||
| * | Using Recommendations. | STRWarrior | 2013-12-17 | 1 | -10/+23 |
| | | |||||
| * | Made buckets work when the player does not 'look' at a block. This fixes #265 | STRWarrior | 2013-12-17 | 1 | -32/+53 |
| | | |||||
| * | Boats spawn on top of a block. not between 4 blocks. | STRWarrior | 2013-12-16 | 1 | -1/+1 |
| | | |||||
| * | Using suggestions for Boat placing. | STRWarrior | 2013-12-16 | 1 | -1/+1 |
| | | |||||
| * | You can spawn boats on water. | STRWarrior | 2013-12-16 | 1 | -7/+32 |
| | | |||||
* | | more cmake stuff | Tycho Bickerstaff | 2013-12-10 | 1 | -0/+7 |
|/ | |||||
* | Bonemeal has particles, fixes #393 | Tiger Wang | 2013-12-08 | 1 | -3/+2 |
| | |||||
* | Spawn eggs use IsGameMode() | Tiger Wang | 2013-12-06 | 1 | -2/+2 |
| | | | | Possible fix for #316. | ||||
* | Merge remote-tracking branch 'origin/master' into foldermove2 | Alexander Harkness | 2013-11-24 | 4 | -4/+50 |
| | | | | | Conflicts: GNUmakefile | ||||
* | Moved source to src | Alexander Harkness | 2013-11-24 | 30 | -0/+2173 |