summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use cMultiVersionProtocol's bufferTiger Wang2020-07-184-37/+33
|
* Delete duplicated status request handlersTiger Wang2020-07-1816-536/+182
| | | | Here we go again...
* 1.13 items supportTiger Wang2020-07-1823-90/+67621
| | | | + Add 1.16 block and item definitions
* Move IsValidSocket out of global namespaceTiger Wang2020-07-182-17/+23
|
* Initial work on 1.13 entity metadata (#4539)Mat2020-07-174-181/+1086
| | | | | | | * Initial work on 1.13 entity metadata * Largely complete metadata Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
* cProtocolRecognizer goes on a diet (#4770)Tiger Wang2020-07-1710-1167/+250
| | | - Removed inheritance from cProtocol
* SimplePlaceableItemHandler styleTiger Wang2020-07-141-4/+9
|
* cWorld * -> cWorld (#4771)Tiger Wang2020-07-146-129/+96
| | | * cWorld * -> cWorld
* Introduce recipe book functionality (#4493)Tobias Wilken2020-07-1432-73/+761
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Introduce recipe book functionality The recipe book helps especially new players. Missing it gives the impression that cuberite is not as advanced as it is. The handling of the recipe book uses the following functions: - Unlock Recipes (https://wiki.vg/index.php?title=Protocol&oldid=14204#Unlock_Recipes) to make recipes available and show the notification for new recipes. Initialization is done on player login for known ones, the update is done when new items are discovered. - Craft Recipe Request (https://wiki.vg/index.php?title=Protocol&oldid=14204#Craft_Recipe_Request) when the user selects a recipe from the recipe book to fill the slots. Known recipes are initialized on player login via `Unlock Recipes` with `Action` 0. As soon as a new recipe is discovered this is added via `Unlock Recipes` with `Action` 1. To be able to know and recognize new recipes the player class is extended with `KnownItems` and `KnownRecipes`. As soon as a player touches an item this is compared to the list of `KnownItems`, if the item is unknown the recipes are checked for this item and the other ingredients are checked with the list of `KnownItems`. If a full match is discovered the recipe is unlocked with the client and stored in the `KnownRecipes`. To unlock recipes the recipe ID is sent to the client. A mapping file (for protocol 1.12.2) translated the minecraft recipe names to ids. The crafting.txt is extended with and minecraft recipe names is possible. Limitations: Only a single recipe is added to the crafting area. Multiple clicks or shift click does not increase the number of builds. Co-authored-by: peterbell10 <peterbell10@live.co.uk> * Address first issues mentioned by @peterbell10 - Some linting - Extract loading of recipe specific protocol mapping into a function - Build `RecipeNameMap` only once - Use `std::optional` - Extract `LoadRecipe` from `Window` * Start to implement new suggestions * Update with suggestions from @peterbell10 * Some minor cleanup * Update protocol packet IDs * Remove unused include * Include header in cmake * Change a vector to integer counter * Change dromedaryCase method names to PascalCase * Address suggestions from @madmaxoft * Read Protocol subdirectories to load recipe books To load all recipebooks iterate over the `Protocol` subdirectories to find mapping files. Co-authored-by: peterbell10 <peterbell10@live.co.uk>
* Remove unnecessary includesTiger Wang2020-07-132-13/+2
|
* Remove Schematic Chunk height limitationKrystilizeNevaDies2020-07-061-1/+1
|
* Comment capitalisationTiger Wang2020-07-061-2/+2
|
* Use enum to represent light statesTiger Wang2020-07-061-19/+34
|
* Reduced packet spam when entities idleTiger Wang2020-07-063-4/+12
| | | | * Try not to send look packets when nothing's changed.
* Made grass spreader prettierTiger Wang2020-07-063-65/+91
|
* Update fmtlib to 7.0.0Peter Bell2020-07-064-8/+5
|
* cWindow: Convert XYZ to Vector3 (#4764)MaxwellScroggs2020-07-0411-43/+24
|
* Merged trivial item handlers into cSimplePlaceableItemHandler (#4766)Franklin Kong2020-06-269-306/+45
| | | | | | - Remove unused files Co-authored-by: aiugai <aiugai@umich.edu> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
* Cactus cannot be placed on a forbidden blocks (#4767)morsmordere2020-06-261-0/+34
| | | | | | | | Co-authored-by: Franklin T Kong <ftk@umich.edu> Co-authored-by: aiugai <aiugai@umich.edu> Fixes #4641 Overrode GetPlacementBlockTypeMeta for CactusBlock, which gets called before a player places the cactus block, so it returns true if the placement is allowed or false if not, in which case the cactus does not drop as a block but stays in the player's hand which is the expected behavior. Tested in Minecraft client 1.12.2.
* Send entities in cChunkSender (#4532)Mat2020-06-243-21/+24
| | | Confer issue #3696
* libevent: Enable IOCP backend on windows (#4745)peterbell102020-06-081-1/+4
|
* Fire sim: Handle fuel block being destroyed (#4751)peterbell102020-05-311-9/+25
|
* Protocol: Avoid crashing on invalid sign textPeter Bell2020-05-291-1/+1
|
* Upgrade to C++17 [CMake] (#4717)Tiger Wang2020-05-1621-466/+93
| | | * Make our CMake slightly less insane
* sizeof(char)Peter Bell2020-05-161-2/+2
|
* Use thread safe localtime_r on linuxPeter Bell2020-05-161-9/+6
|
* Enable debug logging in test buildsPeter Bell2020-05-161-2/+2
|
* Avoid a copy when logging lua stringsPeter Bell2020-05-161-18/+15
|
* Update logging code to reduce unnecessary string copying:Peter Bell2020-05-169-196/+195
| | | | | | * Write into a single fmt::memory_buffer * Use string_view instead of AString for listener callbacks * Also collapsed vFLOG and vLOG functions into one per formatting type
* Enable some more clang-tidy linter checks (#4738)peterbell102020-05-1596-295/+229
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Avoid inefficient AString -> c_str() -> AString round trip * Avoid redundant string init expressions * Avoid unnecessary return, continue, etc. * Add .clang-format to help with clang-tidy fix-its * Avoid unnecessary passing by value * Avoid unnecessary local copying * Avoid copying in range-for loops * Avoid over-complicated boolean expressions * Some violations missed by my local clang-tidy * Allow unnecessary continue statements * Add brackets * Another expression missed locally * Move BindingsProcessor call into clang-tidy.sh and add space * Fix pushd not found error * Different grouping of CheckBlockInteractionRate
* Android build cleanup (#4734)Mat2020-05-104-27/+12
| | | | | | | | | * Android build cleanup * Remove unnecessary workaround * Remove more unnecessities * Bump cmake version
* Cleanup some workarounds and warnings (#4735)peterbell102020-05-109-142/+63
| | | | | | | | | * Cleanup thread_local usage in FastRandom * Use constexpr to avoid clang warning * Fix more Wglobal-constructor warnings * Make MSVC happy?
* Cleanup unneeded globals (#4736)peterbell102020-05-1011-68/+33
|
* Enable C++17 in buildPeter Bell2020-05-097-19/+22
|
* Update submodules (#4727)peterbell102020-05-0929-87/+136
| | | | | | | | | | | | | 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.
* Fix clang-tidy errors (#4730)peterbell102020-05-092-52/+52
|
* Add some comments about terracingTiger Wang2020-05-081-17/+43
|
* Update RedstoneWireHandler styleTiger Wang2020-05-081-11/+9
|
* Use Vector3 for cLineBlockTracer and cBlockTracer (#4715)mBornand2020-05-089-184/+258
| | | * cLineBlockTracer uses Vector
* Fix SetBlockMeta call in observer handler (#4728)peterbell102020-05-081-2/+2
|
* Remove old Android leftovers (#4722)Mat2020-05-0715-46/+40
|
* Add tree generation for ExtemeHills and other biomes (#4713)mBornand2020-05-063-97/+131
|
* Fixed various MSVC warnings.Mattes D2020-05-064-5/+3
|
* Update fmt to 6.2.0 (#4718)peterbell102020-05-0517-98/+230
| | | * Update fmt to 6.2.0
* Remove cRankManager migration code (#4714)Mat2020-05-052-381/+4
| | | | | | | * Remove cRankManager migration code * Restore mistakenly removed code * Display log message when creating ranks
* Refactor minecart collision detection code. (#4712)Alexander Harkness2020-05-042-109/+280
| | | | | | | | | * Refactor minecart collision detection code. - Use new GetBoundingBox function. - Handle descending and ascending rails. - Snap to descending rails. * Add message for UNREACHABLE
* Add two missing include guardsTiger Wang2020-05-042-0/+4
|
* Fix one definition rule violationsTiger Wang2020-05-046-77/+79
|
* Fix incorrect formatter invocationTiger Wang2020-05-042-3/+3
|
* Added check if player is in spectator mode (#4709)Lukas Pioch2020-05-041-0/+6
|
* Add comment for boat position broadcastAlexander Harkness2020-05-041-0/+3
|
* Improve entity position updates (#4701)Tiger Wang2020-05-0423-382/+272
| | | | | | | | | * Make puking pickups fly nicer * Improve entity position updates * Move determination of whether a delta is too big for a packet into the protocol handlers + Less jittery movement + Generalise CollectEntity to take any entity
* Buttons can now be triggered by arrows. (#4670)DrButcher2020-05-034-21/+124
| | | * Buttons can now be triggered by arrows.
* Add cEntity::GetBoundingBox, and use where appropriate. (#4711)Alexander Harkness2020-05-038-11/+12
| | | * Add cEntity::GetBoundingBox, and use where appropriate.
* Update src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.hmBornand2020-05-031-8/+1
| | | Co-authored-by: peterbell10 <peterbell10@live.co.uk>
* Update src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.hmBornand2020-05-031-8/+1
| | | Co-authored-by: peterbell10 <peterbell10@live.co.uk>
* Made some style update and add commentsMarc_Bornand2020-05-031-4/+9
|
* Fix the connexion to the side of the repeaterMarc_Bornand2020-05-031-3/+25
|
* Modify pickup collection behaviour to correspond to vanilla.Alexander Harkness2020-05-031-16/+4
| | | | As documented here: https://www.spigotmc.org/threads/item-pickup-radius.337271/#post-3141146
* Assert if world is incorrectMat2020-05-031-0/+1
|
* Set entity world earlymathiascode2020-05-032-1/+1
|
* Unify entity spawn packet sendingTiger Wang2020-05-0126-465/+243
|
* NBT: Dynamic list-max-count protection. (#4697)Mattes D2020-04-303-11/+34
|
* Update DispenserEntity.cppLukas Pioch2020-04-251-1/+1
| | | Removed unneeded cast
* Fixed spawning of mobs from dispenserLukas Pioch2020-04-251-2/+3
|
* Get biome at world coords on mob spawn (#4692)Mat2020-04-251-3/+4
|
* Fix incorrect relative coords usage in farmland handler (#4690)peterbell102020-04-241-2/+2
|
* Prevent bookshelf pickup crashmathiascode2020-04-241-1/+1
| | | | If no tool was involved in the creation of a bookshelf pickup (e.g. explosion), the server would crash due to a missing nullptr check. Removed the IsTool check completely, since we don't use it elsewhere, and vanilla doesn't do such checks either.
* Unify 1.8 and 1.9Tiger Wang2020-04-224-2359/+156
| | | | - Deleted ridiculous amount of duplicated code
* Vector3 in Handlers (#4680)Mattes D2020-04-21108-1475/+2649
| | | Refactored all cBlockHandler and cItemHandler descendants to use Vector3.
* Delet SpawnObject paramsTiger Wang2020-04-2017-43/+19
| | | | | | * Fix #4679 awkward...
* Correct world access in NetherPortalScannerTiger Wang2020-04-191-6/+16
|
* More arrow patchesTiger Wang2020-04-193-42/+37
| | | | | | | * Further reduce instances of appearing black * Fix packet send and get arrows to more reliably lodge in blocks clientside * Fix hit detection failing at chunk boundaries + Use delegating constructors
* Added check for item damage (#4681)Lukas Pioch2020-04-191-2/+1
| | | | | * Added check for item damage Co-authored-by: Mattes D <github@xoft.cz>
* Reduce arrows going black on hitTiger Wang2020-04-181-15/+25
|
* MoveToWorld must always be provided a worldTiger Wang2020-04-185-43/+45
|
* Only store IDs across ticksTiger Wang2020-04-184-28/+64
|
* Re-implement repeater lockingTiger Wang2020-04-183-20/+111
|
* Extended Vector3 (#4666)Mattes D2020-04-182-0/+18
|
* Fixing washing away of redstone mechanisms (#4665)DrButcher2020-04-171-0/+1
|
* More Vector3 in cBlockHandler (#4644)Mattes D2020-04-1722-247/+389
| | | | | * cBlockHandler.OnUpdate uses Vector3 params. Also slightly changed how block ticking works.
* Implement glowing redstone orePeter Bell2020-04-172-187/+267
|
* ಠ_ಠ (#4660)Tiger Wang2020-04-165-0/+135
| | | + Provisional handling for observers
* Using Super.Mattes D2020-04-16399-1380/+1814
|
* Prevent crash when breedingMat2020-04-161-2/+0
|
* Trapdoor can be placed anywhere since 1.9Bond_0092020-04-151-12/+0
|
* ServerHandle: Fix closing failed servers. (#4653)Mattes D2020-04-151-1/+4
| | | If the cServerHandle failed to listen, closing it would then crash Cuberite.
* Fixed Lua Vector unification. (#4652)Mattes D2020-04-153-5/+35
|
* Bindings: Allow coercion between Vector3 subtypes. (#4646)Mattes D2020-04-147-167/+177
| | | | | In manually bound functions, allows one to use any Vector3<T> value, as well as a {x, y, z} table, in Lua as any Vector3<T> parameter. Has example in Debuggers' /vector command. Unfortunately doesn't work in auto-bindings.
* Pressure plate sounds and delay (#4643)DrButcher2020-04-141-7/+141
| | | | + Added sounds on depress and release + Added correct delay times
* Acquire chunk map CS when accessing player entitiesPeter Bell2020-04-133-29/+32
|
* Fixed entity teleport for just-spawned entities.Mattes D2020-04-121-1/+5
| | | | Includes a test code in the Debuggers plugin - throwing a cake-as-fallingblock.
* Removed extended ASCII, and added a check against it. (#4642)Mattes D2020-04-125-5/+9
|
* Fix rotation metas on blocksAlexander Harkness2020-04-118-31/+31
|
* fixing rotation - rel. #4625GefaketHD2020-04-112-15/+9
|
* Replace all single-digit hex constants with two-digit versionAlexander Harkness2020-04-103-15/+15
|
* Remove silly empty cBlockGlazedTerracotta classAlexander Harkness2020-04-103-21/+6
|
* Reduce line length on templatesAlexander Harkness2020-04-101-2/+19
|
* Add additional spacing between template/function definitionsAlexander Harkness2020-04-101-0/+9
|
* Add doxy-comments to new functionsAlexander Harkness2020-04-101-2/+4
|
* Fix comment textAlexander Harkness2020-04-101-8/+4
|
* Add mixins for blocks that rotate based on player yaw at placementAlexander Harkness2020-04-1022-413/+202
| | | | Also add observer block handler.
* Brewing stands do not have rotationAlexander Harkness2020-04-101-2/+2
|
* Add Terracotta handlersAlexander Harkness2020-04-103-0/+52
|
* Correct Black Glazed Terracotta block handlerAlexander Harkness2020-04-101-1/+1
|
* Add additional blocks which are not breakable by handAlexander Harkness2020-04-102-6/+39
|
* Change stained clay hardness valueAlexander Harkness2020-04-101-1/+1
|
* Use correct value for zombie villager in 1.13Mat2020-04-101-1/+1
|
* Fix compilation, for real this time.Alexander Harkness2020-04-105-1/+5
| | | | I should go to sleep now...
* Oops, remember to save your files!Alexander Harkness2020-04-102-42/+1
|
* Add Zombie VillagersBond-0092020-04-1021-63/+358
|
* Don't set entity world twice (#4606)Mat2020-04-092-4/+1
| | | | | * Don't set entity world twice * Call HookSpawnedEntity when the entity actually spawned
* Falling blocks can now be spawned at any position. (#4620)Mattes D2020-04-095-17/+18
| | | | | | | * Falling blocks can now be spawned at any position. * Added a /cake command to Debuggers that throws a cake in a nice slow arc. * Fixed regular falling blocks.
* Wolves and mooshrooms are passive mobsMat2020-04-091-2/+2
|
* Initial resource pack support (#4622)Mat2020-04-0718-4/+146
|
* Filter blocks to add to redstone sim's wake queue (#4621)peterbell102020-04-053-6/+63
|
* Add potatoes to washed away list alsoAlexander Harkness2020-04-051-1/+2
|
* FluidSimulator: Carrots should be also washable (#4619)metiu072020-04-051-0/+1
|
* Block entity for beacon was not created (#4618)Lukas Pioch2020-04-041-0/+1
|
* Remove switch statements from cItemFoodHandler (#4610)Alexander Harkness2020-04-0415-192/+398
| | | | | | | * Remove switch statements from cItemFoodHandler * Alpha-sort and add comment * Relocate golden apple handler
* Potion changes (#4601)Mat2020-04-041-7/+7
| | | | | * Correct protocol translation for potions * Update brewing recipes
* Implement wither skeletons (#4563)Mat2020-04-0421-231/+334
|
* Manage block entity lifetime with unique_ptr (#4080)peterbell102020-04-0312-213/+144
|
* New hotfix to prevent calling OnBroken (#4600)Alexander Harkness2020-04-034-17/+15
| | | | | | | | | * Fix stack overflow in breaking ice. Stupid fix, but it does work and is used in other places too... * Replace hotfix for pistons with better one * Fix comments in BlockBed handler
* Quick fix to make spawn eggs work (#4611)Mat2020-04-031-1/+1
|
* Tweak pickup sound pitch (#4598)Mat2020-04-032-2/+2
|
* Removed the obsolete cTracer class. (#4594)Mattes D2020-04-036-589/+0
|
* Pulled the BlockID and BlockInfo headers from Globals.h. (#4591)Mattes D2020-04-0393-1314/+1522
| | | | | | | | | 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
* Use a reasonable listen backlog value (#4597)Mat2020-04-021-2/+2
|
* Replace buckets to the selected hotbar slot, rather than the first available. (#4580)Alexander Harkness2020-04-0212-63/+167
| | | | | | | | | | | | | | | | | | | | | | | | * 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
* Tweak attack rangesmathiascode2020-04-022-7/+7
|
* Fix explosion knockback issues and tweak knockback strength (#4590)peterbell102020-04-024-20/+19
|
* Fix off-by-one error and clean error messages in manual bindings for BlockArea (#4549)Alexander Harkness2020-04-011-68/+73
| | | | | | | | | * Correct off-by-one error in manual bindings for FillRelCuboid Fixes #4454 * Fix inconsistent error messages in manual bindings for BlockArea * Generate error if invalid coords passed to FillRelCuboid
* Prevent player from being destroyed by plugins (#4584)Alexander Harkness2020-03-312-6/+34
| | | | | | | | | | * Prevent player from being destroyed by plugins Add manual binding, bails out with error message if attempted entity to destroy is player. * Improve warnings and documentation, remove automatic binding * Remove old and unnecessary deprecated function
* Lua API for spectating entities (#4518)Mat2020-03-302-2/+21
|
* Send experience on respawn (#4586)Mat2020-03-301-0/+1
|
* Fix client disconnect assert (#4579)peterbell102020-03-292-5/+9
|
* Add protocol mob ID remapping (#4538)Mat2020-03-2911-5/+217
|
* Fix build on ClangAlexander Harkness2020-03-282-8/+8
|
* Inventory changes (#4561)Mat2020-03-283-17/+14
| | | Co-Authored-By: peterbell10 <peterbell10@live.co.uk>
* Updated Bookshelves drop behaviour (#4567)Xenoxis2020-03-283-0/+29
| | | | | | | | | * Updated BookShelves Drop Behaviour As described here : https://minecraft.gamepedia.com/Bookshelf#Loot * Update src/Blocks/BlockBookShelf.h * Update CONTRIBUTORS
* Toss all items from enchantment table (#4569)Mat2020-03-281-2/+2
|
* cClientHandle: Only allow m_State to increase (#4533)peterbell102020-03-282-40/+49
| | | | | | | * cClientHandle: Only allow m_State to increase * WasAddedToWorld was incorrect if kicked * Rewrite cClient::Destroy with a guard clause
* Fix Snow Spawn on Cobblestone Slab (#4564)Xenoxis2020-03-282-1/+2
|
* Reduce ghast spawn rate againMat2020-03-271-1/+1
|
* Reduce ghast spawn rateMat2020-03-271-1/+1
|
* Updated plugin list format (#4557)Mat2020-03-271-7/+26
|
* Lock hopper when powered by redstone (#4347)Bond-0092020-03-2712-4/+143
| | | | | | | | | * Lock hopper when powered by redstone * Add to manual bindings * Add hopper API documentation Co-authored-by: Mat <mail@mathias.is>
* Merge #4552Alexander Harkness2020-03-271-1/+8
| | | | | | | | | | | | | | | | | | | | | | commit 28654b1f42a98c0f9910e333a9c8074fe30aff24 Author: Alexander Harkness <me@bearbin.net> Date: Fri Mar 27 11:58:34 2020 +0000 Remove whitespace commit f1492e174b51e168bf4fb150c2d7b7096c393057 Author: Odin <SirRobo@users.noreply.github.com> Date: Fri Mar 27 04:30:32 2020 +1100 Add issue comment commit b64166d68a327e8a9bf80720ff6e9c6af93921b5 Author: Odin <SirRobo@users.noreply.github.com> Date: Fri Mar 27 03:42:35 2020 +1100 Don't run OnBroken with pistons Stops piston duplication bug and doesn't break water and lava simulation
* Fix typo in floater code (#4556)Mat2020-03-271-1/+1
|
* Fix typo in block break particle coordinate (#4555)Mat2020-03-271-1/+1
| | | | | * Use Vector3d for block break particle * Fix typo
* Decrease attack cooldown for monsters (#4542)Mat2020-03-261-1/+1
| | | | | | | * Decrease attack cooldown for monsters * Nerf some mobs * Decimal points
* Improvements to blaze and ghast (#4547)Mat2020-03-266-26/+149
|
* Disable bonemealable settings for now (#4551)Mat2020-03-262-0/+6
|
* Fix nether mob spawning (#4546)Mat2020-03-252-81/+94
| | | | | * Fix nether mob spawning * Remove zombie from nether mobs
* Send respawn packet by default (#4540)Mat2020-03-243-4/+4
|
* Furnace and brewing stand drops (#4534)Mat2020-03-242-6/+36
| | | | | | | | | | | | | * Furnace drops contents * Brewing stand drops contents * Fix lit furnace drop * Fix brewing stand drop * Style * Style
* When Client sends message longer than 256 bytes, kick him instead of handling message (#4514)Max Luchterhand2020-03-241-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Wrong overload of function push() got called when pushing a cEntity*. Using a const cEntity * fixes this. * Fixed accidental wrong indentation * Compiler didn't like old style cast * Kicking player when writing chat message longer than 2048 * Accounted for Astrings size() method returning bits, not bytes * Fixed typo * Changed MAX_STRING_SIZE to 1024, removed unnecessary division by 8 * Handling message length check in cClientHandle:HandleChat * Guard clause instead of if else * Remove stale changes * Fixed formatting Co-authored-by: mluchterhand <mluchterhand@max.de> Co-authored-by: Peter Bell <peterbell10@live.co.uk> Co-authored-by: Mattes D <github@xoft.cz>
* Fix certain item drops (#4536)Mat2020-03-236-12/+51
| | | | | | | | | | | * Fix certain item drops * Revert unwanted changes * Revert unwanted changes * Revert change * Style fixes
* Enable functional packets in 1.13mathiascode2020-03-232-30/+0
|
* Play sound when brewing is completeMat2020-03-231-0/+1
|
* Jukebox improvements (#4537)Mat2020-03-234-5/+61
| | | | | * Add jukebox block handler Co-authored-by: peterbell10 <peterbell10@live.co.uk>
* Manual merge of #4498.Alexander Harkness2020-03-237-11/+44
| | | | | | Credit to @MeMuXin Closes #4498
* Don't attempt to give bucket with item count of 0Mat2020-03-231-1/+1
|
* Cocoa pods have three growing stagesMat2020-03-231-2/+2
|
* Pickup spawn improvements (#4525)Mat2020-03-232-5/+5
| | | Pickups are now thrown around when spawned, like in vanilla. Pickups also bail out of the collision detection checks while being created, to prevent them from blasting too far off in e.g. cobblestone generators.
* Don't push blocks outside world height limits (#4516)Mat2020-03-221-0/+5
| | | | | | | | | | | | | | | | | | | | | | | * Don't push blocks outside world height limits * Style fix * Apply suggestion Co-Authored-By: peterbell10 <peterbell10@live.co.uk> * Apply suggestion Co-Authored-By: peterbell10 <peterbell10@live.co.uk> * Improvements * Add block type check back * Revert line break changes * Update BlockPiston.cpp Co-authored-by: peterbell10 <peterbell10@live.co.uk>
* Add ambient mob sounds (#4521)Mat2020-03-2239-41/+62
|
* Increase speed of splash potion and expbottle (#4513)Mat2020-03-222-2/+5
|
* Fix effect crashes (#4530)Mat2020-03-221-3/+3
| | | | | * Fix effect crashes * Change according to suggestion
* TNT position fixes (#4519)Mat2020-03-228-13/+16
| | | | | | | | | | | | | | | | | | | * 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 invalid explosion damage (#4529)Mat2020-03-221-1/+1
|
* Fix typo in fish metaMat2020-03-221-1/+1
|
* Don't enchant an already enchanted bookMat2020-03-221-1/+1
|
* Fix armor protection (#4506)Mat2020-03-222-17/+24
| | | | | | | | | | | | | | | * Fix armor protection * Check min damage * Check min damage * Commit missing changes * Convert to int * Use float * Float some more
* Don't remove items twice (#4524)Mat2020-03-2211-19/+16
| | | * Don't remove items twice
* Allow enderman to attack during day (#4522)Mat2020-03-221-36/+1
|
* Ender chest is not affected by piston (#4526)Mat2020-03-221-1/+1
|
* Bonemeal cannot be used on cactus and sugar caneMat2020-03-211-2/+0
|
* Wrong overload of function push() got called when pushing a cEntity*. (#4512)Max Luchterhand2020-03-212-0/+11
| | | | | | | * Now having two funcs, Push(cEntity* ..) and Push(const cEntity* ...). For now, the const function just casts away the const qualifier and passes to the other. Co-authored-by: mluchterhand <mluchterhand@max.de>
* Don't call player movement hook if nothing changed (#4517)Mat2020-03-211-0/+20
| | | Co-authored-by: peterbell10 <peterbell10@live.co.uk>
* Improve explosion visuals (#4511)Mat2020-03-211-1/+17
|
* Clamp teleportation position (#4203)stone33112020-03-201-1/+9
|
* Remove leading slash from command block commands (#4502)Mat2020-03-191-6/+20
|
* Improvements to knockback (#4504)Mat2020-03-195-14/+28
| | | | | * Improvements to knockback * SetSpeed for explosions * Improve code consistency
* Prevent arrows from sinking into the ground (#4509)Mat2020-03-191-1/+1
|
* Change outdated air drag value for arrowsMat2020-03-191-1/+1
|
* Change outdated air drag value for TNTMat2020-03-191-1/+1
|
* Fixed unloading of chunks that contain player entities (#4508)Max Luchterhand2020-03-182-0/+19
| | | | Co-authored-by: peterbell10 <peterbell10@live.co.uk> Co-authored-by: mluchterhand <mluchterhand@max.de>
* Blocks only drop pickups when using correct tool (#4505)Max Luchterhand2020-03-181-1/+7
| | | Co-authored-by: mluchterhand <mluchterhand@max.de>
* Silk touch pickaxe drops grass block (#4485)Mat2020-03-173-101/+134
|
* Don't send entity velocity for boats (#4488)Mat2020-03-074-5/+35
| | | * Don't send entity velocity for boats
* Attached entities can't enter portals (#4484)Mat2020-03-052-0/+18
| | | | | | * Attached entities can't enter portals * Whitespace fixes
* Don't spawn boats in groundMat2020-03-051-1/+1
|
* Use LastSentPos for mob spawn packet in 1.11+ (#4490)Mat2020-03-053-109/+4
|
* Stabilise MoveToWorld (#4004)Mat2020-03-0521-212/+366
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Update LastSentPosition when entity has no speed (#4487)peterbell102020-03-041-53/+50
| | | | | | * Update LastSentPosition when entity has no speed * Restructure BroadcastMovementUpdate and always process relmove
* Prevent container item duplication (#4476)Mat2020-03-042-15/+0
|
* Play correct sound when entities are hit by arrows (#4481)Mat2020-03-041-1/+1
|
* Boats can be spawned on landMat2020-03-011-7/+0
|
* BlockTypePalette: Improved loading speed in MSVC Debug builds.Mattes D2020-02-241-45/+130
|
* Remove 1.13 from supported protocol listmathiascode2020-02-241-3/+3
|
* Blocks are usable in adventure mode (#4464)Mat2020-01-151-1/+1
|
* Added temporary block type mapping for 1.13+ protocols.Mattes D2020-01-0713-67/+352
|
* StringUtils: Added note to StringsConcat about StringJoin.Mattes D2020-01-071-1/+2
|
* ProtocolRecognizer: Updated to unique_ptr.Mattes D2020-01-072-36/+20
|
* Root: Load the UpgradeBlockTypePalette on startup.Mattes D2020-01-072-0/+26
|
* main: Terminate if an exception is thrown.Mattes D2020-01-071-4/+7
|
* Clean up server folder for Android (#4448)Mat2020-01-021-6/+6
|
* Fix android builds (#4432)Alexander Harkness2020-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Terminate android build script early if any step fails * Remove deprecated android types * Use android NDK cmake support rather than cmake android NDK support as that support is better supported * Android uses GNU strerror_r? * Fix compilation * Rebase * Fix final issues * Drop submodule changes * Revert change * Parentheses * Lower api levels * Don't use GNU strerror_r for Android Co-authored-by: Mat <mail@mathias.is>
* Include missing server files (#4446)Mat2019-12-301-0/+2
|
* Remove lang folder (#4445)Mat2019-12-301-1/+0
|
* Disable block placement in adventure mode (#4424)Mat2019-12-303-2/+20
|
* CMake: Fix builds in folders with spacesMattes D2019-12-291-6/+5
|
* CMake: Don't create symlinks if link == orig.Mattes D2019-12-281-15/+25
|
* BlockTypePalette: Load from TSV or original reports' JSON.Mattes D2019-12-283-45/+174
|
* Moved ProtocolBlockTypePalette functionality into BlockTypePalette.Mattes D2019-12-285-186/+110
|
* BlockTypePalette: Refactored for usage in both directions.Mattes D2019-12-283-29/+100
| | | | Improves index() lookup speeds and allows BlockTypePalette to be used in place of ProtocolBlockTypePalette.
* Output the binaries into a per-configuration Server subfolder. (#4440)Mattes D2019-12-281-13/+74
| | | Make links to the original Server subfolder's items from the per-configuration Server subfolder.
* WebAdmin improvements (#4433)Mat2019-12-286-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WebAdmin improvements * Remove stray div tag * Revert path change * Remove buildserver link * Further simplification * Reduce horizontal padding * Add svg icons * Remove unneeded css * Make login and logout icons colored * Use same capitalization for Log in and Log out * Remove leftover code from old Webadmin design * Remove more leftover code from earlier Webadmin versions * and don't add earlier leftovers back... * PR test * Fix max width overflow * Add missing css changes
* Improved large jungle and acacia tree generation (#4413)NiLSPACE2019-12-226-295/+373
|
* Correct block transparenciesPeter Bell2019-12-051-0/+5
|
* Moved growing from cWorld / cChunk to cBlockHandler descendants.Mattes D2019-10-2840-1287/+1464
|
* Refactored block-to-pickup conversion. (#4417)Mattes D2019-10-16116-1667/+2384
|
* Fixed crash in hopper while pulling items from blockentity above itself (#4412)NiLSPACE2019-10-041-2/+2
|
* Added another check if the item is place able (#4404)Lukas Pioch2019-10-031-0/+7
|
* Refactored more of Entities and BlockEntities to use Vector3. (#4403)Mattes D2019-09-29117-832/+1017
|
* Cactus can now grow and will be dropped if there is no place to grow.Lukas Pioch2019-09-291-4/+17
|
* Fixed MSVC warnings (#4400)Mattes D2019-09-2712-28/+28
|
* Fix clang8.0 build (#4399)Bond-0092019-09-241-9/+13
| | | The protocol 13.0 PR broke clang 8.0 builds.
* NBTChunkSerializer: Cleaned up interface.Mattes D2019-09-249-960/+909
| | | | | | Removed dependency on cChunkDataCallback. Moved all the serializing code into a worker class. Changed the serialization into a single-call action.
* Add ProtocolBlockTypePalette (#4391)E142019-09-225-0/+236
|
* Added missing closing } in message outputLukas Pioch2019-09-201-1/+1
|
* Protocol 1.9: Alpha-sort, add useful debugging code.Mattes D2019-09-162-38/+47
|
* Initial support for 1.13 clientsTiger Wang2019-09-168-6/+669
| | | | | + Can look at *shape* of world + Can look at *shape* of inventory
* GCC: Added pragma to ignore fallthrough warnings within Unicode Inc. code (#4392)E142019-09-131-0/+7
|
* Fixed warnings in ChunkDataSerializer.Mattes D2019-09-101-2/+2
|
* Protocol: Use logical outgoing packet types.Mattes D2019-09-1017-517/+705
|
* ChunkGenerator: Changed to use cChunkCoords.Mattes D2019-09-087-28/+23
|
* ShapeGen, HeiGen: Changed to use cChunkCoords.Mattes D2019-09-0818-188/+146
|
* BiomeGen: Changed to use cChunkCoords params.Mattes D2019-09-0811-87/+82
|
* Generator: Added repeatability test.Mattes D2019-09-071-0/+4
|
* CompoGenNether: Fixed different data produced in Linux Release builds.Mattes D2019-09-071-20/+12
|
* Added a BasicGeneratorTest.Mattes D2019-09-062-8/+8
|
* Moved the generator defaults to ComposableGenerator.Mattes D2019-09-069-98/+177
|
* Separated chunk generator from world / plugin interfaces.Mattes D2019-09-0626-663/+681
| | | | The generator now only takes care of servicing synchronous "GetChunk(X, Y)" and "GetBiomes(X, Y)" requests.
* Updated LibEvent to release 2.1.11-stable. (#4383)Mattes D2019-09-041-0/+4
| | | | | | This finally restores my ability to compile on Windows and Linux from the same source folder (on a network drive). LibEvent broke this long ago by writing a config file into the source folder, rather than build folder. Now it's finally fixed.
* Added a basic PalettedBlockArea implementation (#4377)Mattes D2019-08-286-0/+525
|
* Improved testing framework. (#4376)Mattes D2019-08-261-37/+25
|
* Added BlockState implementation for 1.13 support.Mattes D2019-08-243-0/+259
|
* Fix mobs targeting dead players (#4344)Julius Oeftiger2019-08-161-1/+1
| | | | Fixes #4340
* Fix building with clang 8.0 (#4346)Bond-0092019-08-1120-76/+95
|
* Wake up redstone simulator on slot changes for blockentities (#4348)Bond-0092019-08-112-0/+16
| | | | | Fix #1898 Fix #2194 Fix #3063
* Added null check for position (#4366)Lukas Pioch2019-08-111-0/+5
|
* Improved CMake generator (#4365)Mattes D2019-08-102-3/+8
|
* Added more clamping operations to cCuboid.Mattes D2019-08-102-6/+53
|
* Removed coord-based API from cCuboid. (#4362)Mattes D2019-08-094-52/+179
|
* cBoundingBox: Fix tolua warning (#4361)peterbell102019-08-082-23/+3
| | | | tolua was warning about no support for `operator =`. Ref: #4360
* Change TakeDamageInfo::FinalDamage from int to float (#4359)Aplaus2282019-08-083-9/+9
| | | | Closes #4357
* Fixed compilation on VS2019Mattes D2019-08-061-0/+1
|
* Register vanilla blocks in BlockTypeRegistry.Mattes D2019-08-055-2/+730
|
* BlockTypeRegistry: Added hint manipulationMattes D2019-08-052-3/+144
|
* BlockTypeRegistry: Initial skeletonMattes D2019-08-053-0/+313
|
* Check for nil in cWorld:SpawnSplitExperienceOrbs binding (#4354)Mark Asp2019-07-281-1/+6
| | | | | | Adds explicit nil check for 'position' parameter to prevent crashes if invalid. Fixes #4352
* Ignore whitespace only lines in brewing and furnace recipes (#4332)peterbell102019-06-114-9/+19
|
* Respect return value of cLuaWindow's OnClicked handler (#4322)DaPorkchop_2019-06-111-1/+2
|
* Fix directory traversal bug (#4341)Wilhem Barbier2019-06-111-9/+8
| | | Refuse to serve an URL containing `../`.
* * Sponge: Add water absorbtion (#4333)Zach DeCook2019-06-113-0/+163
| | | | Closes #1411
* Create Ender Portal with Eyes of Ender (#4126)Zach DeCook2019-05-117-1/+335
| | | | | | | | | 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 DeCook2019-05-073-4/+4
|
* Fix player skin sending through BungeeCord (#4328)DaPorkchop_2019-04-221-5/+10
| | | This fixes sending of player skins through BungeeCord by actually parsing the JSON instead of setting the player properties as a string.
* Make Nether portals spawn the player inside of them (#4325)DaPorkchop_2019-04-182-4/+4
| | | | | | Currently the player is spawned immediately in front of them. Simply changing `cNetherPortalScanner::OutOffset` to 0.5 wasn't enough, as the player would always be spawned on top of the portal, however checking for non-solid blocks instead of air fixes this.
* Limit the size of cListAllocationPool's free listpeterbell102019-02-204-21/+31
|
* Add colors to console for macOS (#4303)Bond-0092018-10-151-5/+5
|
* Add a formatting function for Vector3 (#4282)peterbell102018-09-2427-181/+192
| | | | | | | | | | * Vector3: Add custom fmt compatible formatter. * cLuaState: Add fmt version of ApiParamError * Use vector formatting in manual bindings * Always log vectors with FLOG
* Add BurnsInDaylight to Lua API and Monsters.ini (#4295)Muhammad Kaisar Arkhan2018-09-244-16/+17
| | | | | | | | | | | | | * Monster.h: Export SetBurnsInDaylight This commit also adds BurnsInDaylight to check if the Monster burns in daylight or not. Closes https://github.com/cuberite/cuberite/issues/4294 * MonsterConfig.cpp: Add BurnsInDaylight Closes https://github.com/cuberite/cuberite/issues/4294
* Force all headers other than "Globals.h" to be included with relative paths (#4269)peterbell102018-08-29102-187/+117
| | | | | | | 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.
* Store and pass entity effect duration as an int not a short. (#4293)Alexander Harkness2018-08-2613-37/+13
| | | Fixes #4292.
* Fixes bed item 26 and 355 being spawned, only 355 spawns now (#4290)Rick van Schijndel2018-08-231-0/+1
|
* solve new player login crash issue (#4285)changyong guo2018-08-171-1/+0
| | | | currently if new player login, server will crash during send player ability to client. this pull request solve this issue.
* Handle the lapis slot separately (#4286)Nate2018-08-171-0/+36
| | | | | This is my attempt to fix #4112. The root cause of the issue was that the lapis slot was treated exactly the same as the enchanting slot, so it on the server side it would only ever slot one item. My fix is to check if its the second slot in the window, then check if it's lapis (it would slot whatever). If it is lapis I call the base click handler.
* Fix: Create players folder recursively (#4283)Nate2018-08-131-2/+5
| | | | | | | | | | Problem: On a new server the players folder was not created on windows. Root Cause: `GetUUIDFolderName` was returning a folder structure for players with `/` while CreateFolderRecursively was checking for `\\` for win32. The fix is to recognise both forward and backward slashes as file separators on windows. Fixes #4284
* Experience orb (#4259)changyong guo2018-08-0214-56/+262
| | | | | | | * Replace cWorld::FindClosesPlayer with cWorld::DoWithClosestPlayer * Implement experience reward splitting into the orb sizes used in vanilla * Modified speed calculation in cExpOrb::Tick to make the orbs fly towards the player Fixes #4216
* Ocelots no longer multiply exponentially (#4272)peterbell102018-07-302-15/+9
| | | | | Along with a call to `destroyentities`, this fixes #4271 I'm guessing the intention of this code was to modify the normal spawning of ocelots. However, `cEntity::SpawnOn` is actually called to send the entity to an individual client. That means this code was run for every single player, every time they were sent a chunk with ocelots in it. Thus, the ocelots population would grow exponentially as players log in and move around.
* Add new flow direction calculating algorithm (#4160)bionext032018-07-273-126/+73
|
* cWorld: Manually bind deprecated broadcast functions (#4265)peterbell102018-07-2715-114/+306
| | | Ref: https://github.com/cuberite/cuberite/pull/4264#discussion_r204769193
* CheckBasicStyle: Check number of empty lines between functions (#4267)peterbell102018-07-26121-166/+192
| | | | Add check for number of empty lines between functions and fix the corresponding failures
* At long last... Piston animations!Tiger Wang2018-07-254-86/+117
| | | | | * Fixes #3198 * Fixes #57 (again lol)
* Reimplemented fall particlesTiger Wang2018-07-251-3/+8
| | | | Regression when 1.9.x support introduced in #3135, originally implemented in #461.
* Broadcast refactor (#4264)peterbell102018-07-2428-1564/+845
| | | | | | | | | | | | | | | | | | | | | | | * Move Broadcast functions from cChunkMap to cBroadcaster - Remove cBroadcastInterface in favour of cBroadcaster. - cChunk: Remove broadcast functions. * resurect broadcast interface * Absorb cBroadcaster into cWorld. Removes the need for forwarding the function calls. * Improve const-correctness * Use Int8 instead of char + Comment `ForClients` functions * Improve comments * Broadcaster: Rename ForClients functions
* Stop cFunctionRef constructor from disabling default copy constructor. (#4173)peterbell102018-07-241-6/+31
| | | | | * Stop cFunctionRef constructor from disabling default copy constructor. + cFunctionRef: Improve documentation
* Optimise chunk set (#4260)peterbell102018-07-239-152/+155
| | | | | | | | | | | | | | | | | Closes #1244 Initially I was just going to add the cChunkData to cSetChunkData but profiling revealed that the copying wasn't even the biggest slowdown. Much more time was being spent in cChunk::CreateBlockEntities and cChunk::WakeUpSimulators than was in memcpy so I've made those significantly faster as well. Optimisations performed: * cSetChunkData now stores blocks in a cChunkData object * cChunkData objects can now perform moves even if they are using different pools * cChunk::CreateBlockEntities now iterates in the correct order and only over present chunk sections * Similarly for cChunk::WakeUpSimulators * cSetChunkData::CalculateHeightMap now shortcuts to the highest present chunk section before checking blocks directly
* cPawn: Reset last ground height in ResetPosition (#4261)peterbell102018-07-234-2/+13
| | | | | Prevents fall damage after teleporting/portaling to a lower height. Fixes #3457
* Rewrite explosion knock back (#4251)changyong guo2018-07-236-20/+119
| | | | | | | 1. Base knockback on an entity's bounding box intersection with the explosion 2. Armor blast protection reduces knockback 3. Don't apply knockback to players flying in creative mode Fixes #4139
* Keep players in gmNotSet (#4248)changyong guo2018-07-237-43/+48
| | | | This allows players game mode to update to the default after portal to another world. Fixes #4207
* recover hotbar selected slot after reconnect (#4249)changyong guo2018-07-2312-0/+79
| | | | | | | 1. implement protocol message SendHeldItemChange 2. add save / load inventory equipped item slot in JSON 3. send held item slot message after player connect to server Fixes #4189
* cIsThread: Reset m_ShouldTerminate after the thread has stopped (#4258)peterbell102018-07-227-26/+7
| | | | | This allows threads to be restarted after stopping. Fixes #4257
* Make offline UUIDs consistent with vanilla. (#4178)peterbell102018-07-203-12/+59
| | | | | Fixes #4177 This is a breaking change to existing Cuberite permissions settings.
* cBlockArea: Write all present data types by default (#4252)peterbell102018-07-192-13/+39
| | | | | cBlockArea::Write now defaults to use GetDataTypes() instead of assuming all data types are present. Fixes cuberite/WorldEdit#130
* Add unbreaking for armor (#4220)Bond-0092018-07-132-22/+37
| | | | | | Ref: minecraft.gamepedia.com/Enchanting#Unbreaking #915
* fix dispenser pickup display bug (#4247)changyong guo2018-06-301-0/+7
| | | fix dispenser pickup bug by ignore meta data during pickup creation
* fix block area rotation bug (#4243)changyong guo2018-06-251-3/+3
| | | fix mirror method bug in class cBlockArea.
* Update m_IsSolid assignments in BlockInfo (#4167)Alexander Harkness2018-06-241-0/+7
| | | Fixes #4166
* Support swap item between main hand and offhand by press key "F" (#4241)changyong guo2018-06-243-1/+14
| | | | | | | | Hi, I found cuberite don't support to press key "F" to swap items on main hand and offhand, so I implemented this feature. Best regards Changyong
* Flush stdout after resetting console colour. (#4240)peterbell102018-06-201-0/+1
|
* Use clang-tidy to check more code conventions (#4214)Bond-0092018-05-069-167/+174
| | | | | | | * Create clang-tidy.sh * Add clang-tidy to circle.yml * Fixed some naming violations Fixes #4164
* Generate cacti and sugarcane with different heights (#4137)Cocosushi62018-05-033-30/+97
| | | | | When generating foliage, create cacti with height in the interval [1; MaxCactusHeight] and sugarcane with height in [1; MaxSugarcaneHeight] (with MaxCactusHeight and MaxSugarcaneHeight declared in world.ini) Fixes #4135
* Prefer static_cast to reinterpret_cast (#4223)peterbell102018-05-0248-351/+351
| | | | | | | * 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.
* tolua++ bindings use nullptr. (#4219)peterbell102018-04-271-4/+1
| | | Fixes compilation with -Wzero-as-null-pointer-constant.
* Fix fishing timer (#4217)peterbell102018-04-271-0/+5
| | | | | | | | | | | Fixes ["Fishing Speed Too Slow"](https://forum.cuberite.org/thread-3175-post-29000.html#pid29000). Interestingly, the constants @NiLSPACE points out are actually correct: ```cpp (Random.RandInt(100, 900) - static_cast<int>(a_Player->GetEquippedItem().m_Enchantments.GetLevel(cEnchantments::enchLure) * 100)) ``` 100 to 900 ticks is the correct timing of 5-45 seconds. However, the timer is only updated when the floater is in the water and the server side position was actually bobbing in and out of the water. This meant the timer took ~2-3x longer than it should. With this change the floater position is always in the water and so the timer works as expected.
* Removed unnecessary disconnect (#4200)mathiascode2018-04-271-5/+0
|
* Removed duplicate code (#4198)Bond-0092018-04-114-147/+159
| | | Should also fix dogs not despawning
* Update m_LastSentPosition in TeleportToCoords and DoMoveToWorld. (#4211)peterbell102018-04-113-4/+18
|
* Smelting Gives Experience (#4094)Alex Sweet2018-04-117-5/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Smelting Exp Smelting now gives experience * Furnace.txt update Exp rewards are entered in furnace.txt, Reward calculation is now done is the furnaceentity class * furnace.txt update Changed alignment tabs to spaces Included documentation of exp in recipe * Updated StringToFloat changed strtod to strtof * Explicit Float to Int * Reworked Smelting Rewards * No C casts -Adds new function to the api -Sets reward counter to 0 in furnace constructor * Style and exp lock removed -Fixed style mistakes accoring to PR notes -XP isn't locked to a single player anymore * No Smelter API -Removed SetLastSmelter and GetLastSmelter -Fixed comments -Fixed log reward amounts
* Fix cUUID::Variant (#4213)peterbell102018-04-081-1/+1
|
* Properly destroy player (#4199)mathiascode2018-04-031-7/+7
|
* * Block Info: glazed terracotta and concrete hardness/solid voxel status (#4205)Zach DeCook2018-04-021-0/+35
|
* Broadcast playerlist removal in every world (#4201)mathiascode2018-04-023-6/+26
|
* Wolves only spawn in taiga biomes (#4197)Bond-0092018-03-201-2/+1
| | | Ref: https://minecraft.gamepedia.com/Wolf#Spawning
* Add cPluginManager::GenericCallHook (#4027)peterbell102018-03-022-632/+252
| | | | | | | | Replace repetitive CallHook functions with a generic implementation. Also converts some loops to range-based for. Related to #1134
* cLightingThread: Faster chunk reading (#4185)peterbell102018-02-211-12/+23
| | | | Profiled at a 10x speedup for cLightingThread::ReadChunks.
* Fix cUrlClient leak (#4125)peterbell102018-02-203-36/+54
| | | | | | | | Fixes #4040 * The TCP connection is now shutdown after OnBodyFinished * Any open connections are closed when cNetworkSingleton::Terminate() is called. * Removed ownership cycles in cUrlClientRequest * Added a check to the test to ensure there are no leaks.
* cBlockInfo: Deprecate direct access to variables. (#4184)peterbell102018-02-202-74/+119
|
* Damage fishing rod when catching the hook on a block, then reeling it in (#4151)Bond-0092018-02-111-0/+8
| | | Fixes #4132
* Deal with covered switches consistently (#4161)peterbell102018-02-0538-399/+266
| | | | | | | * 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()
* cChunk and cChunkData: Use vectors for block get and set functions (#4172)peterbell102018-02-046-121/+145
| | | | | * cChunkData: Change interface to use Vector3i * cChunk: Add Vector3i overloads for bounded block get and set functions.
* Ocelots don't take fall damage (#4171)Bond-0092018-02-044-6/+19
|
* A player's inventory is always opened by its owner. (#4176)peterbell102018-01-281-4/+6
| | | | | Fixes #4093 Window updates are only broadcast to players in the m_OpenedBy list. Normally players are added after sending a window open packet but no packet is sent for a player's inventory. This meant broadcasts were never sent for the inventory window.
* cClientHandle: Always call HOOK_PLAYER_RIGHT_CLICK (#4149)peterbell102018-01-251-6/+11
| | | Reverts the reduction in cases where the hook was called, a change which broke plugins.
* Removed cBlockInfo.m_IsSnowable (#4105)Bond-0092018-01-233-90/+54
| | | | | | * Removed cBlockInfo.m_IsSnowable * Return IsSnowable from deprecated variable binding m_IsSnowable.
* cItemGrid: Allocate storage lazily (#4083)peterbell102018-01-214-87/+257
| | | | | * cItemGrid: Allocate storage lazily * cItemGrid: Fix spelling, Prioritary -> Priority
* New movement system for leashed entities (#4147)peterbell102018-01-172-35/+47
| | | | | | | * New movement system for leashed entities Entities are accelerated towards the leashed to entity as if by a spring. * Mobs now pathfind close to but not directly to the leashing entity. * Also minor comment changes
* Calculate crit damage properly (#4154)Bond-0092018-01-171-11/+13
|
* Prioritize hinge on the left side (#4153)Bond-0092018-01-171-0/+1
|
* Add world name in logs from cWorld (#4148)Bond-0092018-01-161-3/+3
|
* Exp Orbs and Pickups are destroyed instantly by cacti. (#4136)Alexander Harkness2018-01-165-15/+54
| | | | | | | | | | | | | * Cactus detection code follows pattern set in #3996 * Pickups are now destroyed on cactus contact * Add cactus detection and destruction to Exp Orbs Remove checks for IsExpOrb() in cEntity::Tick() Exp Orbs do not call super::Tick() and so this condition was pointless.
* Don't burn mobs in daylight when swimming (#4145)Bond-0092018-01-151-1/+2
|
* cWindow: Fix slot area priority when double click stacking. (#4086)peterbell102018-01-152-34/+6
| | | Fixes #4084
* Rename cEntity swim states (#3996)Alexander Harkness2018-01-1410-134/+156
| | | | | | | | | | * Replace cEntity:m_IsSubmerged with m_IsHeadInWater * Replace cEntity:m_IsSwimming with m_IsInWater * Add API documentation for new symbols * Apply SetSwimState to all entities, not just mobs and players * Pickups now use IsOnFire to check if they are on fire before destruction Fixes #3987
* Rewrite cClientHandle::HandleRightClick (#4089)9caihezi2018-01-088-158/+173
| | | | | | | | | | | | | * Add hand parameter to distinguish main hand/off hand. * Add a new function cClientHandle::HandleUseItem to separate the functionality of using an item without a target block. This matches the protocol with client version >= 1.9 * Always actively update the status of a block if the placement fails (by out of reach or rejected by plugin). * Do not call plugin callback CallHookPlayerRightClick(-1, 255, -1, -1, 0, 0, 0) when using item. The CallHookPlayerUsingItem will still be called. Now at most one of CallHookPlayerRightClick, CallHookPlayerUsingBlock, CallHookPlayerUsingItem and CallHookPlayerEating will be called based on the type of action (not including the used version of callbacks). * Do not count using item as BlockInteractionsRate check (Using item takes time). * Now we can open chests(etc.) when sneaking as long as the player's hand is empty. This is what vanilla server does.
* Golden Apple Fixes (#4130)Alexander Harkness2018-01-063-21/+14
| | | | | | | | | * 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-0092018-01-052-34/+52
| | | | | | | * Damage fishing rod after use * Give xp to the player for catching something * Fixed junk drops * Implement Luck of the Sea
* Sugar cane can be near frosted ice (#4133)Bond-0092018-01-051-1/+1
|
* Item durability loss now depends on the item used. (#4123)Alexander Harkness2018-01-0530-208/+111
| | | | | | | Armour durability also no longer changes when it is used to break blocks or attack mobs. Fixes #4119
* Add the fmt library (#4065)peterbell102018-01-0353-385/+305
| | | | | | | * 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.
* Concrete mixing (#4096)Zach DeCook2018-01-035-0/+121
| | | | | | | | | 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)
* cLuaState: Update `Push` for entities. (#4128)peterbell102018-01-031-47/+35
| | | | | | | Fixes #4127 Some classes were exported but were only pushed as a cEntity meaning exported functions were inaccessible. This brings cLuaState::Push(cEntity *) up to date with all exported entities.
* Lilypads can be on top of (frosted) ice (#4122)Bond-0092017-12-271-2/+2
| | | Fixes #4117
* improve rain simulation (#4017)Alexander Harkness2017-12-2610-85/+118
| | | | | | | | | | | * Uses vanilla logic to decide which blocks rain falls through. * Rain falls infinitely above the world, and stops at y=0. * Entities will now be extinguished if they are under rain-blocking blocks, and fire will now be extinguished by rain similarly. * Create IsWeatherWetAtXYZ to identify wetness at a particular location. * Use new code for enderman rain detection. * Fixes issue #916 * Disable warnings for global constructors in the fire simulator.
* Water bottles are drinkable potions (#4114)Alexander Harkness2017-12-261-11/+8
| | | | | | | Water bottles are now drinkable potions Fixes #4111 Also update outdated mcwiki references
* Protocol: Fix potion metadata parsing (#4116)peterbell102017-12-261-2/+2
|
* Fix Travis build (#4101)peterbell102017-12-222-5/+7
| | | | | | | | | Stop using gdb on osx - was breaking the build Add clang 3.5 build as travis now defaults to 5.0 Fix unknown-warning-option errors on AppleClang ProtoProxy: Use nullptr UrlClientTest: add override to callback destructor Update jsoncpp to use nullptr
* Fix typo in #4095.Alexander Lyons Harkness2017-12-211-2/+1
| | | | The build was being broken.
* NetworkLookup: Added "virtual" keyword to overridden dtor. (#4100)Mattes D2017-12-211-1/+1
|
* cInventory: Add listener to shield slot. (#4095)peterbell102017-12-211-0/+6
|
* Fixed Clang 5.0 compile errors (#4085)bibo382017-12-2110-7/+38
| | | | | | | | | | | | * Fixed Clang 5.0 compile errors * Fixed wrong comment * Only disable warnings in Clang 5 or higher * Added a CMake condition for the Clang 5 no-zero-as-null-pointer-constant warning * Now using the use_nullptr branch of the Cuberite specific SQLiteCpp fork
* Store Health as a float (#4073)Fabian2017-11-226-16/+35
| | | | | | | | | | | | | | | | | | * Fix #4024 * Fix clang error * Add comment * Fix behaviour * Save Health as float * Changed m_Health to float * Remove redundant static_cast * Fix casts
* cBlockRail: Fix assertion failure (#4075)peterbell102017-11-211-3/+3
|
* cChunkInterface GetBlock, GetBlockMeta, GetBlockTypeMeta use vectors (#4050)Bond-0092017-11-2034-187/+176
|
* cItemHandler: Update max stack size of old doors. (#4072)peterbell102017-11-201-0/+2
|
* cWorld Threads: Seperate initialization and thread start.peterbell102017-10-216-32/+17
| | | | Prevents nullptr dereferences before Start has been called.
* cWorld: Move Initialization from Start to the constructor.peterbell102017-10-216-239/+261
| | | | Start now does nothing more than launch the world's threads.
* Implement horse inventory (#4053)peterbell102017-10-2114-27/+455
| | | | | | | | | | * Implement horse inventory * Fix sign conversions * Add API doc for ItemCategory::IsHorseArmor * Improve HandleOpenHorseInventory comment and style fixes.
* Fixed some small passive mob issues (#4057)Bond-0092017-10-219-10/+44
| | | | | * Chickens can be bred with seeds, beetroot seeds, melon seeds, or pumpkin seeds Ref: https://minecraft.gamepedia.com/Chicken#Baby_chicken * Baby passive mobs don't drop items * Fixed the size of some mobs
* Fix minecart deceleration (#4059)peterbell102017-10-212-32/+48
|
* Fixed FreeBSD build (#4061)Bond-0092017-10-161-2/+5
|
* Fixed 2 small warnings (#4055)Bond-0092017-10-022-7/+3
|
* Fix explosion interaction with block entities. (#4052)peterbell102017-09-272-3/+17
| | | | | | * WriteBlockArea: Fix erasing of block entities. * cChunkMap::DoExplosionAt destroys block entities
* cPressurePlateHandler: Fix uninitialised variables. (#4047)peterbell102017-09-251-2/+2
|
* BroadcastBlockBreakAnimation and BroadcastBlockEntity use vectors (#4038)Bond-0092017-09-2513-67/+62
|
* cBlockArea: Fix performance regression (#4045)peterbell102017-09-231-2/+16
|
* Add support for release 1.12.2 (#4041)peterbell102017-09-214-3/+108
|
* Only allow snow to be placed where valid. Fixes #2920.peterbell102017-09-211-12/+38
|
* Only allow rails to be placed where valid.peterbell102017-09-211-1/+8
| | | | Fixes #3507.
* Added working directory for x64 builds (#4037)Lukas Pioch2017-09-201-0/+8
|
* Fixed webadmin certificate reading.Mattes D2017-09-193-3/+10
|
* Changed BroadcastSoundEffect, SendSoundEffect, and CastThunderbolt parameters to vectors (#3959)Lane Kolbly2017-09-1937-110/+138
| | | | | | | | | | | | | | | | | | * 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
* cRoot: Make PollPeriod representation 32 bit (#4030)peterbell102017-09-191-3/+1
|
* Leaves now drop with the correct meta when broken by a pickaxe with silk touch (#4034)Bond-0092017-09-191-0/+6
|
* Removed UTF-8 BOM (#4033)Lukas Pioch2017-09-1948-48/+48
|
* cFinishGenPreSimulator: Preserve sand meta (#4025)peterbell102017-09-182-13/+8
| | | Fixes #1516.
* Fix error with implicit cast from long long to long (#4026)Alexander Harkness2017-09-141-1/+1
|
* Fix switch warnings (#4013)peterbell102017-09-1424-322/+357
| | | | | | | | | | | | | | | * 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
* Adjust lava damage values (#4020)Alexander Harkness2017-09-122-2/+2
| | | Fixes isue #2925
* Limit how long cRoot::InputThread may block (#4019)peterbell102017-09-121-10/+26
| | | | | | | Limit how long cRoot::InputThread may block Only calls `std::getline` when there is input available which removes the need to "notify" the input thread. Fixes #2494 and fixes #3177
* Replace ItemCallbacks with lambdas (#3993)peterbell102017-09-1169-1813/+915
|
* cBlockArea: change MakeIndex to return size_tpeterbell102017-09-113-120/+51
|
* cBlockArea: use unique_ptrpeterbell102017-09-113-148/+164
|
* Fix crash for players out of the world. Fixes #4006 (#4007)Alexander Harkness2017-09-101-3/+4
|
* Shutdown connection when disconnect packet sent (#3999)Alexander Harkness2017-09-082-11/+11
|
* Made world data paths adjustable, and added API to temporarily disable saving chunks to disk. (#3912)Lane Kolbly2017-09-077-35/+84
|
* Lighting now generally consistent with vanilla (#3988)Alexander Harkness2017-09-073-14/+68
| | | | | | | | | | | | | | | | | | | | | | | | | * Lighting now generally consistent with vanilla Skylight is now dispersed by some blocks, instead of passing through unimpeded. Some blocks which were not marked as transparent are now marked as such. Water and other such blocks now attenuate light with the correct intensity. Generally changes were based on documentation in the Minecraft Wiki: https://minecraft.gamepedia.com/Opacity#On_block_light , however during play-testing on vanilla lava was found not to attenuate sky or block-light so the attenuation was removed. This fixes #3849 * Add API documentation for IsSkylightDispersant * Rename m_SkylightDispersant to m_IsSkylightDispersant * Update comment for m_Transparent property of Blocks
* Switched player statistic store to save with UUID filenames. (#4002)Lane Kolbly2017-09-073-6/+12
|
* Fire effect now shown for creative and spectator mode players (#3998)Alexander Harkness2017-09-073-24/+19
| | | | | | | | * Fire effect now shown for creative and spectator mode players Fixes #3989 * Add documentation for IsFireproof
* Updated APIDoc (#3985)Lukas Pioch2017-09-073-6/+8
|
* Changed some int parameters to vector parameters (#3937)Bond-0092017-09-0753-178/+191
|
* Add cWorld::RemoveEntity and use in cEntity (#4003)peterbell102017-09-053-11/+44
| | | | | | * Add cWorld::RemoveEntity and use in cEntity * cEntity: Remove uneeded asserts from Destroy and DoMoveToWorld
* Added assert to cProtocolRecognizer::GetPacketId. (#4001)Lane Kolbly2017-09-045-17/+29
|
* GetPacketID for protocol packet IDs (#3977)Lane Kolbly2017-09-0211-1359/+366
| | | | | | | | | | | | | | | | | | | | | | | | * Added GetPacketId method to protocol, implemented for all protocols. * Moved GetPacketID methods into a single file, alpha-sorted. * Fixed 1.12.1 HandlePacket switch statement. * Added SendLogin to the GetPacketId framework. * Added SpawnObject to GetPacketId framework. * Added missing sendEntityEquipment packet ID update for 1.12.1 * Added LeashEntity packet ID change to 1.12.1 * Alphabetized packet enum, added SpawnGlobalEntity to GetPacketId framework * Fixed clang errors * Indented cases, expanded comment for GetPacketId * Changed dyslexic comment.
* Revert "Replace ItemCallbacks with lambdas (#3948)"LogicParrot2017-09-0267-872/+1830
| | | | This reverts commit 496c337cdfa593654018c171f6a74c28272265b5.
* SetSwimState now takes into account head heightAlexander Harkness2017-09-012-3/+3
| | | | | | | This affects m_IsSubmerged and IsSubmerged() for entities of all types. Also prevent squids from suffocating in water.
* Remove double-checking below world for burningAlexander Harkness2017-09-011-5/+0
|
* OnLogin now kicks players properly (#3980)Alexander Harkness2017-09-011-1/+2
|
* Replace ItemCallbacks with lambdas (#3948)peterbell102017-09-0167-1830/+872
|
* Drop enderchest when broken by a silk touck pick (#3986)Bond-0092017-08-312-1/+6
|
* Merge pull request #3969 from peterbell10/cuboidTiger Wang2017-08-307-80/+30
|\ | | | | cCuboid: restore default copy construct and assign
| * Add TOLUA_EXPOSITION for readabilitypeterbell102017-08-284-14/+8
| |
| * cCuboid: restore default copy construct and assign.peterbell102017-08-282-29/+4
| |
| * Cleanup Vector3 constructors and Abspeterbell102017-08-283-39/+20
| |
* | Protocol Spawn Position Should Use LastSentPosition (#3929)Lane Kolbly2017-08-303-24/+36
| | | | | | | | | | | | + Added GetLastSentPos * Fixed spawn position bug in 1.8.
* | Update mbedtls to 2.5.1 (#3964)peterbell102017-08-3048-647/+896
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Renaming changes: * macro prefix "POLARSSL" -> "MBEDTLS" * functions now prefixed with "mbedtls_" * rename PolarSSL++ -> mbedTLS++ * rename polarssl submodule * Use mbedtls' AES-CFB8 implementation. * Add cSslConfig to wrap mbedtls_ssl_config * Update cTCPLink and cBlockingSslClientSocket to use cSslConfig * Use cSslConfig in cHTTPServer * Use cSslConfig for cMojangAPI::SecureRequest * CI Fixes * Set -fomit-frame-pointer on the right target
* | Added ShouldSendRespawn parameter to ScheduleMoveToWorld (#3979)Lane Kolbly2017-08-302-3/+5
| |
* | cUUID: Fix FromHexDigit for digits >= 'a'peterbell102017-08-291-2/+2
| |
* | cWorld: Add entities without holding of m_CSEntitiesToAddpeterbell102017-08-291-9/+12
|/ | | | * Fixes deadlock when cWorld::AddEntity is called while holding chunk map CS.
* Repair the removed constructor of cCuboid `cCuboid(otherCuboid)` (#3966)Bastien ADAM2017-08-282-2/+13
| | | | | | | | * Repair the removed constructor of cCuboid `cCuboid(const cCuboid & a_Cuboid) : p1(a_Cuboid.p1), p2(a_Cuboid.p2) {}` * Update Cuboid.cpp * Update Cuboid.h
* Implement Forge protocol handshake support (#3869)satoshinm2017-08-2718-11/+684
|
* Implement anvil chunk sparsingpeterbell102017-08-265-26/+160
|
* Leashes work in 1.12.1mathiascode2017-08-262-24/+50
|
* Fix mobs not burning in daylight when on snow (#3961)Alexander Harkness2017-08-251-3/+3
| | | | | | | | | | * Fix mobs not burning in daylight when on snow or other non-transparent partial blocks. Fixes #3945 * Change from floor to ceil
* Gives all entities the default airlevel on creation (#3942)Bond-0092017-08-253-17/+30
| | | | * Guardians don't take damage on land * Squids suffocate on land
* Don't assert when placing beds in older versions (#3916)mathiascode2017-08-252-0/+2
|
* Add cUUID class (#3871)peterbell102017-08-2542-483/+1116
|
* Bed piston fix (#3956)Lane Kolbly2017-08-257-10/+13
| | | | | | | | | | | | * Threaded world interface into ConvertBlockToPickups * Changed how cBlockPiston::PushBlocks sets the old block to air, so that the block exists for the DropBlock call. * Removed unused a_Digger argument. * Removed incorrect comment * This time actually removed a_Digger references.
* Use ref instead of pointerLukas Pioch2017-08-243-8/+8
|
* Minor changes (#3909)mathiascode2017-08-2428-41/+41
|
* Added check to deactivate existing entity effects when new entity effects are added.Lane Kolbly2017-08-241-0/+7
|
* Fix use after move in cItemBowHandler::OnItemShootpeterbell102017-08-241-4/+3
|
* Removed outdated pathfinder comment (#3955)Safwat Halaby2017-08-231-2/+1
|
* Added check in cEntity::TickBurning for whether the entity is planning to change worlds. (#3943)Lane Kolbly2017-08-221-0/+6
|
* Potential spawn prepare fix (#3924)peterbell102017-08-222-13/+17
|
* Implement protocol level chunk sparsing (#3864)peterbell102017-08-217-297/+346
|
* Award player an achievement when creating a beacon (#3930)Bond-0092017-08-211-13/+36
|
* Snow only generates on blocks with a block light level of 10 or less (#3931)Bond-0092017-08-211-1/+7
|
* Fixed build for older clang versions (#3935)Bond-0092017-08-211-1/+1
|
* Give arthropods slowness IV when hit with bane of arthropods (#3932)Bond-0092017-08-211-3/+7
|
* Fully implemented leashes (#3798)Pablo Beltrán2017-08-2140-19/+937
|
* Changed MoveToWorld to ScheduleMoveToWorld in cPlayer::Respawn (#3922)Lane Kolbly2017-08-181-1/+1
| | | | | | * Changed MoveToWorld to ScheduleMoveToWorld - Removed empty line
* Merge pull request #3921 from lkolbly/removeAssertTiger Wang2017-08-181-3/+0
|\ | | | | - Removed incorrect assert in SendRespawn
| * Removed incorrect assert in cClientHandle::SendRespawn.Lane Kolbly2017-08-111-3/+0
| |
* | Merge pull request #3918 from peterbell10/GetBlockEntityTiger Wang2017-08-181-7/+11
|\ \ | | | | | | cChunk: Don't assume GetBlockEntity coords are valid
| * | cChunk: Don't assume GetBlockEntity coords are validpeterbell102017-08-101-7/+11
| |/
* | Represent cItem::m_Lore as an AStringVector (#3882)peterbell102017-08-1812-51/+245
| | | | | | | | | | | | | | | | * Replace cItem::m_Lore with AStringVector * Reword deprecation warning * Fix lua bindings
* | Changed type of FastRandom in monster drop calculation. (#3920)Lane Kolbly2017-08-181-1/+8
| | | | | | | | | | | | | | | | * Fixed type of FastRandom in monster drop calculation. * Distribute dropped items into stacks. * Moved while loop outside if statement.
* | cBeaconEntity fix no world crashpeterbell102017-08-181-1/+4
| |
* | Merge pull request #3489 from cuberite/EntityOwnershipTiger Wang2017-08-1839-421/+480
|\ \ | | | | | | * Changed entity ownership model to use smart pointers
| * | Changed entity ownership model to use smart pointersTiger Wang2017-08-0739-421/+480
| |/
* | Sitting cats block enderchests from opening (#3906)Bond-0092017-08-174-25/+42
| |
* | Add cLuaWindow OnClicked Callback (#3901)Lane Kolbly2017-08-1712-2/+101
| |
* | Add support for 1.12.1 (#3908)Bond-0092017-08-174-6/+825
| |
* | Changed int parameters to vector parameters in cCuboid and simulators (#3874)Lane Kolbly2017-08-1737-179/+217
| |
* | Added knockback to arrows, fixed knockback enchantment handling (#3900)Lane Kolbly2017-08-132-34/+16
| | | | | | | | * Added knockback for arrows, fixed knockback enchantment handling.
* | Merge pull request #3897 from peterbell10/PlaceSoundTiger Wang2017-08-132-5/+61
|\ \ | | | | | | cBlockInfo: Remove/deprecate place sound
| * | cBlockInfo: Deprecate place soundpeterbell102017-08-072-5/+61
| | |
* | | Shortened DoIntervalsIntersect to two comparisons, made inline. (#3883)Lane Kolbly2017-08-132-32/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Shortened DoIntervalsIntersect to two comparisons, made inline. * Applied DeMorgan's * a_Max1 => a_Max2 * Moved DoIntervalsIntersect definition into header file. * Moved DoesIntersect into header. * Unindented line
* | | Replaced includes with forward declarationsLukas Pioch2017-08-1313-22/+22
| |/ |/|
* | Removed unneeded includes (#3902)Lukas Pioch2017-08-0650-60/+7
|/
* Fixed compilation for clang 4.0 & gcc 7.1Dan Čermák2017-08-042-0/+5
|
* Implement invisibility effectpeterbell102017-08-035-45/+92
|
* Remove double includes part 2 (#3890)peterbell102017-08-0380-146/+7
|
* Removed unused forward declarations (#3888)Lukas Pioch2017-08-0326-102/+2
|
* Fix BSD buildpeterbell102017-08-021-0/+1
|
* Removed double includes (#3885)Lukas Pioch2017-08-0223-31/+2
|
* Handle Teleport Confirmation Packet (#3884)Lane Kolbly2017-08-022-4/+26
| | | + Added code to drop incoming client position packets until the most recent teleport was confirmed.
* cBlockHandler: take player by refpeterbell102017-08-0149-150/+150
|
* cWorld::SendBlockTo take player by refpeterbell102017-08-0115-33/+33
|
* Consolidated food effects into EatItem, added all fish type FoodInfos. (#3875)Lane Kolbly2017-07-306-90/+93
| | | | | | | | * Consolidated food effects into EatItem, added all fish types. * Changed type of NumFishInfos to satisfy clang. * Removed unused call for a_Item in EatItem
* cParsedNBT: Improved error reporting (#3876)peterbell102017-07-305-59/+216
| | | | | | * cParsedNBT: Improved error reporting * Fix typos
* Added anvil enchantment handling. (#3857)Lane Kolbly2017-07-285-35/+418
| | | + Added anvil enchantment handling.
* Check for intersection between placed blocks and entities. (#3850)Lane Kolbly2017-07-2813-3/+243
| | | | | | | | | | | | | * Check for intersection between placed blocks and entities. + Implemented GetPlacementCollisionBox, to permit custom placement collision boxes for blocks. * Factored block-entity placement checking into another function in cPlayer. - Removed vector min/max functions * Use GetWorld to get the world in DoesPlacingBlocksIntersectEntity. + Added block height checks, allow different cEntity subclasses to decide whether they will prevent block placement.
* Tentative fix for player-limit race condition (#3862)Tiger Wang2017-07-2812-95/+61
| | | | | | | | | | * Attempts to fix #2257 Derived from d233e9843148313c71fbaba96ccff660e47b07b1 * Changed player count type to int * Clarified certain actions
* Handle incomplete packets in cProtocolRecognizerpeterbell102017-07-262-44/+58
|
* Updated armor cover calculation. (#3858)Lane Kolbly2017-07-234-135/+98
| | | | | | | | * Updated armor damage calculation. + Added lua docs, added casts from float to int. * Changed verbage in docstring and comment.
* Creepers explode when burned by flint and steel (#3865)Bond-0092017-07-221-1/+1
| | | Fixed an issue where creepers didn't explode when they were burned with flint and steel
* BlockArea: Added the GetBounds function.Mattes D2017-07-222-2/+18
|
* Fixed check to see if block entity is in merge source.Lane Kolbly2017-07-221-1/+1
|
* Increment fire block iteratorTiger Wang2017-07-211-0/+1
| | | | * Resolves potential deadlock
* Remove commentpeterbell102017-07-211-1/+0
|
* Simplify SizeCheckpeterbell102017-07-211-6/+2
|
* Remove stricmp macro in favour of NoCaseComparepeterbell102017-07-212-5/+1
|
* Remove alignment macrospeterbell102017-07-212-8/+1
|
* Remove smart pointer macrospeterbell102017-07-2144-88/+83
|
* FastRandom: Remove discrepancy between arg and return value type. (#3846)Mattes D2017-07-213-19/+15
|
* Break the cactus block when it grows next to a block. (#3851)Bond-0092017-07-182-6/+37
|
* Made cBlockHandler OnPlacedByPlayer call OnPlaced, made BlockRailHandler use NeighborChanged instead of OnNeighborChanged.Lane Kolbly2017-07-182-16/+17
|
* Allocate redstone component handlers upfrontpeterbell102017-07-1725-329/+293
|
* Simulators: Added area-based wakeup.Mattes D2017-07-169-56/+93
|
* Handle middle mouse drag (#3847)peterbell102017-07-135-10/+53
|
* Added basic ocelot behavior (#3829)Bond-0092017-07-1210-20/+368
|
* Lua plugin cColor (#3833)Lane Kolbly2017-07-124-6/+30
|
* Changing pickup lifetime and combining semantics, making these adjustable in the lua api. (#3843)Lane Kolbly2017-07-125-6/+49
|
* If entity is a player, send relmove packets.Lane Kolbly2017-07-121-1/+1
|
* Remove double delete of PrepareChunk lua callback (#3844)peterbell102017-07-121-29/+16
|
* Send player message when clicking on advancements or green book. (#3845)Lukas Pioch2017-07-122-2/+24
|
* Made cBlockArea:cChunkReader AreaBounds inclusive on both sides. (#3842)Lane Kolbly2017-07-101-1/+1
|
* Sound effect horse rejects player when tamingPablo Beltrán2017-07-101-0/+1
|
* Implemented draggingitem API.Lane Kolbly2017-07-102-1/+17
|
* cItemGrid bounds check (#3837)peterbell102017-07-092-12/+68
|
* BigFlower fixes (#3826)peterbell102017-07-0716-47/+71
| | | | | | | * BigFlowers fixes * Correct upper part meta * Documented parameters to DoesIgnoreBuildCollision
* Added bed entity (#3823)Lukas Pioch2017-07-0725-12/+335
| | | | | | | | | | * Added bed entity * Export cBedEntity to lua * Set color of bed through item damage value * Added bed entity to APIDoc * NBT: Added loading and saving * Crafting recipes for the colored beds
* Changed Lua plugins to only execute files ending in .lua (#3831)Lane Kolbly2017-07-071-1/+2
|
* cBlockInfo static initialisation (#3832)peterbell102017-07-033-912/+920
|
* Fixes double right click on entities till off-hand actions gets implemented (#3821)Pablo Beltrán2017-07-031-2/+8
|
* You can't use beds when there are hostile mobs nearbyBond_0092017-07-021-8/+32
|
* Added armor durability reduction when player is attacked.Lane Kolbly2017-07-022-0/+32
|
* Fix horse taming (#3820)Bond-0092017-07-021-14/+26
| | | | * Horses rear when untamed and right-clicked with an item
* Players in creative and spectator aren't affected by cacti (#3824)Bond-0092017-07-021-1/+4
|
* When right-clicking on a passive mob with 'his' spawn egg spawn a babyBond_0092017-07-021-2/+20
|
* Endermen take damage from rainBond-0092017-06-302-3/+29
|
* Spider should attack only when the light level is lower than 11 (#3815)Bond-0092017-06-301-1/+4
|
* Added 1.12 blocks (#3760)Bond-0092017-06-306-8/+122
|
* Update tolua and export EffectIDpeterbell102017-06-296-22/+61
|
* cNetwork bindings: Use ApiParamError and CheckParam(Static)Self.Mattes D2017-06-261-226/+91
|
* Moved ApiParamError into cLuaState.Mattes D2017-06-265-114/+144
|
* Fixed memory leak in cClientHandle. (#3794)Mattes D2017-06-262-6/+6
|
* Corrected APIDoc for cBlockArea and exported missing functions (#3808)Lukas Pioch2017-06-261-1/+102
|
* Added check if datatype is present in block area (#3811)Lukas Pioch2017-06-261-0/+6
|
* Fix cBlockArea assertion and mis-indexing (#3810)peterbell102017-06-251-2/+2
|
* Fix cBlockArea null derefpeterbell102017-06-241-41/+45
|
* cBlockArea supports block entities. (#3795)Mattes D2017-06-2411-675/+2234
|
* Load entities from old and new namesLukas Pioch2017-06-232-224/+150
|
* Pressure plates can be placed on fences and hoppers (#3796)Bond-0092017-06-221-2/+21
|
* NetworkSingleton: Fixed a throw warning in VS2017. (#3792)Mattes D2017-06-224-8/+8
| | | Also fixed the misleading name.
* Fix shears (and vines)Bond-0092017-06-212-26/+13
| | | | | | | * 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
* Anvil storage: load block entities from both old and new name-styles. (#3784)Mattes D2017-06-212-80/+129
| | | | * WSSAnvil: Load the sign text from JSON, too.
* Lighting Optimisations (#3785)peterbell102017-06-202-73/+23
|
* Let water vaporise in the Nether by defaultBond-0092017-06-201-5/+6
|
* Generated tall flowers have flower type meta in both blockspeterbell102017-06-193-4/+7
|
* MSVC Debug builds: Added operator new redirection to provide more info. (#3781)Mattes D2017-06-192-0/+44
|
* LuaState: Fixed VS2017's throw warnings for destructors. (#3779)Mattes D2017-06-192-5/+12
|
* Removed the LeakFinder for Windows. (#3777)Mattes D2017-06-1912-2863/+1435
|
* NetworkSingleton: Fixed an object leak upon termination.Mattes D2017-06-171-0/+1
|
* Fixed missing "override"Mattes D2017-06-161-1/+1
|
* BlockEntities: Support cloning self.Mattes D2017-06-1641-309/+640
|
* Change error no data to no namepeterbell102017-06-161-1/+1
|
* Protocol: Do not assume anything about unknown packets. (#3647)Mattes D2017-06-161-35/+38
|
* Remove sign conversionpeterbell102017-06-163-7/+8
|
* Entity: Replaced a mutexed counter with a std::atomic. (#3773)Mattes D2017-06-152-11/+15
|
* Replace evdns with getaddrinfo and getnameinfo (#3766)peterbell102017-06-1511-248/+294
|
* Added missing 1.12 packet changesmathiascode2017-06-142-0/+30
|
* Protocol 1.12: Fixed missing override specifierMattes D2017-06-141-3/+3
|
* Double tall grass drops seeds when broken by water (#3763)dbhicks2017-06-141-6/+15
|
* Added support for protocol 1.12 (#3757)Lukas Pioch2017-06-145-3/+1589
|
* Remove redundant heighmap codepeterbell102017-06-143-41/+2
|
* FastRandom rewrite (#3754)peterbell102017-06-1362-400/+452
|
* Fix assert when clicking blocks at the top of the world.Mattes D2017-06-091-12/+16
|
* Fixed skylight going down through transparent blocks.Mattes D2017-06-091-1/+12
|
* Added WriteBlockEntity to 1.10 and 1.11 and fixed mob spawnerLukas Pioch2017-06-096-2/+235
|
* Fixed handling Lua errors in nested callbacks (#3755)Mattes D2017-06-092-3/+42
|
* Fixes problems with windows:Lukas Pioch2017-06-0515-18/+39
| | | | | - Changed cPlayer:OpenWindow to accept a ref, tolua adds a nil check - Close open lua window in destructor, to avoid dangling pointers
* Avoid pickups to sink into blocks and disappear (#3739)Pablo Beltrán2017-06-042-24/+35
| | | | * Avoid pickups to sink into blocks and disappear
* Add command line argument for disabling the logfileworktycho2017-06-033-7/+29
|
* Fixed double chests (#3741)peterbell102017-06-033-8/+25
| | | | | 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.
* Fixed exp orb (#3744)Pablo Beltrán2017-06-031-19/+23
| | | | Fixes #3740 Fixes #2667
* New icon colors (#3675)mathiascode2017-06-036-0/+0
| | | | | * New icon colors * New Webadmin favicon
* LineBlockTracer: Fixed a math rounding error failure.Mattes D2017-05-281-1/+5
|
* Fixed tracer usage in Entity physics handling. (#3720)Mattes D2017-05-283-17/+20
|
* Minor cBrewingRecipes cleanup (#3731)peterbell102017-05-284-115/+63
|
* Double chest window fix (#3735)peterbell102017-05-282-52/+130
|
* Broadcast mob head changesmathiascode2017-05-281-0/+5
|
* Add rank prefix and suffix to player name in chat (#3730)Heiko Hund2017-05-273-1/+29
| | | Fixes issue #1721
* Exported boatLukas Pioch2017-05-2413-18/+167
| | | | | | | - 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
* Off-hand/shield slot functional, save and load slot, bow + arrow functional (#3725)Pablo Beltrán2017-05-245-9/+97
| | | Fixes #3714.
* Store cChunk::m_BlockEntities in a map (#3717)peterbell102017-05-2210-514/+269
| | | | | | * Store block entities in a map from block index * Cleanup ForEachBlockEntity * Cleanup DoWithBlockEntityAt
* Spawn eggs works againLukas Pioch2017-05-223-34/+68
|
* Clang 5.0 fixesLukas Pioch2017-05-2164-74/+64
| | | | | - Added override keyword - Removed inherited member variables
* Fixed invisible chests (#3722)Pablo Beltrán2017-05-213-5/+15
| | | Fixes #3479, #3403, #3696
* Don't destroy monster when last target type is a player (#3721)Pablo Beltrán2017-05-213-2/+9
| | | In current Cuberite version if you are pursued by monsters you just have to disconnect and connect again to get rid of them. If no other player is in your chunk monsters will get destroyed.
* Allow enabling/disabling of block change limitmathiascode2017-05-193-1/+8
|
* Use FastWriter instead of StyledWritermathiascode2017-05-165-8/+9
|
* VarInt metadata written correctly for boats (#3709)peterbell102017-05-153-9/+9
| | | | * Varint metadata written correctly for boats
* Tracer replacement (#3704)Mattes D2017-05-1115-102/+482
| | | | | | * Replaced cTracer usage with cLineBlockTracer. * Exported new cLineBlockTracer utility functions to Lua API.
* Exported cFallingBlock and cExpOrb (#3700)Lukas Pioch2017-05-094-5/+20
|
* Fixed Lua bindings for const objects.Mattes D2017-05-094-102/+9
|
* BlockHandlers: vertical alignment.Mattes D2017-05-091-159/+159
|
* BlockCrops: Fixed RipeMeta off-by-one error properly.Mattes D2017-05-092-6/+6
| | | | Ref.: #3691
* Added missing checks for Initialize function and updated APIDocLukas Pioch2017-05-086-12/+70
|
* Corrected brewingstand and added support for fuelLukas Pioch2017-05-089-99/+169
|
* Adjusted RipeMeta for off by one error (#3691)dbhicks2017-05-061-2/+2
|
* Prevent infinite loop when logging fails (#3693)josh-parris2017-05-051-0/+1
| | | | Prevent infinite loop when logging fails
* Removed binary ToLua++ from build.Mattes D2017-05-042-7/+4
| | | | A local Lua executable is used instead.
* Gen: Moved PiecePool into a separate file.Mattes D2017-05-0415-628/+627
| | | | Also rewritten the PieceGenerator to use std::unique_ptr.
* Don't return const ref params and removed functions fromLukas Pioch2017-05-012-100/+10
| | | | ManualBindings.cpp
* Fix fence gates (#3683)Bond-0092017-04-291-0/+5
| | | This commit fixes an issue where a pressureplate would only open oak fence gates
* Replace double grass and large fern with placed blockLukas Pioch2017-04-062-1/+28
|
* API: Removed function GetChar (#3664)Lukas Pioch2017-04-051-5/+0
|
* APIDoc: Documented missing functions and variables. (#3634)Lukas Pioch2017-04-041-6/+6
|
* Added a nullptr check to cEntity::IsA (#3659)Marvin Kopf2017-04-013-3/+3
| | | Fixes #3603
* fix endless loop in StringReplace (#3658)Marvin Kopf2017-04-011-1/+7
| | | | * Fixed a recursive loop where the replacement would again be searched for the needle. * Skip if the needle is empty. Find(needle) always matches if needle is empty.
* NBT: Corrected firework loadingLukas Pioch2017-03-221-2/+2
|
* Fireworks can be fired from a dispenserBond-0092017-03-221-1/+4
|
* Added blocks that can be washed away by water (#3637)Bond-0092017-03-212-0/+11
|
* Return bowl when eating beetroot soupBond-0092017-03-201-0/+1
|
* Deadbushes drop sticksBond-0092017-03-194-1/+48
|
* Removed development plugins from settings filemathiascode2017-03-192-3/+1
|
* Detach player from entity / object if he is deadLukas Pioch2017-03-191-0/+4
|
* Boat spawned, remove it from player's handLukas Pioch2017-03-171-0/+6
|
* Fixed looping when unable to bind port (#3621)johnsoch2017-03-171-0/+7
| | | Fixes #3593
* Removed unnecessary check for lower and upper folderLukas Pioch2017-03-162-7/+1
|
* Allow mobs to walk through dead_bush (#3623)willi123yao2017-03-161-0/+1
| | | Fixes #3618.
* Add 1.11 entity metadata (#3601)Pokechu222017-03-034-5/+845
|
* Fixed which blocks can be harvested with what type of pickaxe (#3586)Bond-0092017-02-261-0/+16
|
* Corrected particles (#3577)mathiascode2017-02-262-26/+18
| | | Fixes wrong IDs causing particles to become unknown to the server.
* Fixed cactus detection and zombie pigman sword (#3584)Bond-0092017-02-253-1/+14
| | | | Fixes for issues #902 and #2917
* BlockCrops: Fixed comments and reformatted control flow. (#3576)Mattes D2017-02-251-46/+54
|
* Removed a few default plugins (#3580)mathiascode2017-02-241-2/+0
|
* Changed world_end to world_the_end #3531 (#3538)Bond-0092017-02-242-13/+33
|
* Finishers now update the heightmap for tall flowers. (#3545)Jacob2017-02-241-0/+7
|
* Add support for alternate config file locations (#3578)Gareth Nelson2017-02-224-2/+18
|
* Add 1.11.1/1.11.2 protocol (#3575)mathiascode2017-02-216-13/+86
|
* Changed fish launching mechanism (#3520)Alex2017-02-203-2/+14
| | | Fish and other fishing loot now correctly fly towards played when reeled in.
* Dead bushes will generate in mega mega taigas (#3571)Bond-0092017-02-151-0/+1
|
* Updated sounds and effect IDs (#3422)mathiascode2017-02-1563-352/+127
|
* Added some blocks and items (#3503)mathiascode2017-02-1424-35/+474
|
* StringUtils: Dropped an unneeded copy in lower-/upper-casing. (#3512)Mattes D2017-02-131-4/+6
|
* PieceGenerator: Added rotation-aware vertical connectors.Mattes D2017-02-138-47/+351
|
* Made survival the default gamemode (#3563)Lawton Mizell2017-02-071-1/+1
|
* Fixed bindings for cBlockArea:Read and Write. (#3568)Mattes D2017-02-0510-23/+23
| | | The original bindings accepted nil as the World param, causing a crash.
* Changed big flowers so they don't need air above them.Altenius2017-01-281-1/+11
|
* Changed big flowers so they can only be placed on dirtAltenius2017-01-281-1/+4
|
* Fixed ClientHandle:GetProtocolVersion returning wrong number.Mattes D2017-01-284-13/+7
|
* World: Remember the age persistently. (#3556)Mattes D2017-01-192-2/+8
|
* World: Removed LineBlockTracer test code. (#3555)Mattes D2017-01-191-53/+0
| | | The test for LineBlockTracer is already in the Debuggers plugin (/spidey and testtracer commands).
* Fixed placing of double tall flowers and an inconsistency with vanilla (#3541)Jacob2017-01-191-2/+1
|
* Removed asserts about chunk queued.Mattes D2017-01-193-4/+0
| | | | The assumption is not needed and was invalid under a stress-test.
* WebAdmin: Renamed two neighboring locks for better clarity / style.Mattes D2017-01-181-2/+2
|
* Webadmin: Added a missing CS lock.Mattes D2017-01-181-0/+1
| | | | This fixes an assert when accessing the login-page and the plugin-failure pages in the webadmin.
* DeadlockDetect now lists some tracked CS's stats.Mattes D2017-01-1816-69/+240
|
* DeadlockDetect: Provide more information for debugging.Mattes D2017-01-173-5/+30
|
* LuaState: Fixed untracking references.Mattes D2017-01-152-6/+9
| | | | One thread may untrack a ref while another thread was closing the LuaState, which had emptied the tracked refs.
* Moved cPrefab parser self-check to the LoadablePieces test. (#3536)Mattes D2017-01-151-105/+0
|
* Fixed race conditions and forgotten clear in Lua ref tracking. (#3530)Mattes D2017-01-133-13/+23
| | | This fixes occasional crashes on plugin reload.
* LuaState: Fixed race condition in ref tracking. (#3529)Mattes D2017-01-094-18/+70
|
* Disconnect sent flag addedsweetgiorni2017-01-031-5/+6
| | | | Truthiness no longer assumed
* TCPLink: call networking callbacks with LibEvent unlocked. (#3515)Mattes D2017-01-031-2/+2
|
* Track skin part and main hand preferences (#3498)Pokechu222017-01-036-7/+110
|
* Player checksweetgiorni2017-01-031-4/+7
| | | | | Checks if there are any players connected to the server before running PlayerCallback and waiting 1 second.
* Api Documentationsweetgiorni2017-01-031-1/+1
| | | | | Added API documentation for GetShutdownMessage. Style fix in Root.cpp
* Custom Disconnect Messagesweetgiorni2017-01-033-0/+20
| | | | | | Adds a m_ShutdownMessage option to the settings. When the stop command is issued, players are kicked with said message before the server shuts down.
* Fix crash after attempting to kill a non-running thread (#3504)Fabian Stein2017-01-011-4/+7
| | | Fixes #3221
* Disabled anticheat (#3511)LogicParrot2017-01-011-1/+2
|
* Fix crash after calling OnTick on removed effect (#3501)Fabian Stein2016-12-301-3/+5
|
* Fixed entity effect ticking (#3497)Fabian Stein2016-12-291-1/+10
| | | Fixes #3386
* World: Add check for unknown RedstoneSimulator (#3496)Fabian Stein2016-12-291-0/+5
|
* Refactored to put URL Encoding / Decoding in a single place. (#3491)Mattes D2016-12-255-103/+255
|
* Updated links and docs (#3488)mathiascode2016-12-194-7/+7
|
* CMake: Output the binary to Server folder in all configurations. (#3486)Mattes D2016-12-181-0/+3
|
* CompositeChat: Use shorter JSON format.Mattes D2016-12-161-1/+8
|
* Initial support for the 1.11 protocol.Mattes D2016-12-1623-455/+682
|
* Fixed minecart destruction using deallocated memory.Mattes D2016-12-152-3/+10
|
* Use CMake's Android generators to crosscompileTiger Wang2016-12-1216-144/+79
|
* Export GetPosition and GetSpeed from cEntity as a copy instead of a pointer to lua.Lukas Pioch2016-12-102-2/+52
|
* Powered rails can kick-start minecarts (#3472)Marvin Kopf2016-12-102-32/+62
|
* Fix meta mirror (#3470)Mattes D2016-12-092-35/+59
|
* Fix comparator segfaultsMarvin Kopf2016-12-061-1/+8
| | | | The handler would get called for any BlockEntity, but not every BlockEntity is a BlockEntityWithItems. Downcasting with static_cast is UB on fail.
* Fix floating large trees (#3460)James Balajan2016-12-021-0/+18
|
* Fixed villages generating under-water.Mattes D2016-12-012-4/+10
| | | | The CompoGenBiomal didn't update the heightmap properly.
* Added code to handle signs replacing blocksQuImUfu2016-12-011-1/+12
|
* Prefabs: Implemented support for ExpandFloorStrategy.Mattes D2016-11-243-54/+142
|
* cWolf: Fixed targetting a nullptr.Mattes D2016-11-221-3/+3
|
* Fixed race conditions in cClientHandle's State.Mattes D2016-11-192-168/+229
|
* Removed ClientHandle.h dependencies from common headers.Mattes D2016-11-1819-51/+206
|
* Added NoiseSpeedTest project.Mattes D2016-11-151-0/+1
|
* Added missing "override" specifier.Mattes D2016-11-134-4/+4
|
* Add Lua API export for titles. (#3408)mohe20152016-11-131-7/+7
|
* LuaState: Fixed stack balance when calling functions (#3428)Mattes D2016-11-102-8/+83
|
* Fixed TrappedChest saving. (#3423)Mattes D2016-11-072-5/+16
| | | Vanilla uses "Chest" in NBT for trapped chests.
* Anticheat fastbreak (#3411)mohe20152016-11-0619-4/+884
| | | Added block hardness checks when breaking blocks.
* LuaJson: Report serialization errors instead of crashing.Mattes D2016-10-271-3/+82
|
* Added SendMessageRaw for sending json string.Lukas Pioch2016-10-2110-0/+53
|
* StyleCheck: Add "else has to be on a separate line" (#3412)mohe20152016-10-202-1/+6
|
* Spectators added (#2852)bibo382016-10-1237-36/+368
|
* Fixed cProjectileEntity double destroy bug (#3397)LogicParrot2016-10-091-0/+4
|
* cChunk::SetAlwaysTicked implies cChunk::stay (#3361)LogicParrot2016-10-093-2/+4
|
* Initialize m_bIsInBed in cPlayer constructor.sgtbigman2016-10-081-0/+1
| | | | | This fixes an issue where the return value from the IsInBed method of the cPlayer class in the lua API would not return a boolean value.
* Fixed cRankManager API docs.Mattes D2016-10-061-47/+40
|
* Use cChunkDef::Height for Y coord comparison where applicable.Moritz Borcherding2016-09-277-10/+10
|
* LuaAPI: Fixed possible crashes in HTTPRequest bindings.Mattes D2016-09-261-35/+36
|
* Fixed cCompositeChat's constructor LuaAPI bindings.Mattes D2016-09-255-25/+119
| | | | The tolua-generated constructor would return an extra string value.
* APIDump: Reformatted the docs to include type information.Mattes D2016-09-123-4/+5
| | | | Also fixed a bit of documentation in the CPP source.
* Bindings: Fixed some function signatures comments.Mattes D2016-09-081-4/+6
|
* APIDump: Removed trailing whitespace.Mattes D2016-09-081-28/+28
|
* Enclosed Clang pragmas with ifdef's (#3373)bibo382016-09-061-4/+7
| | | Fixes a warning in MSVC
* Merge branch 'master' of https://github.com/cuberite/cuberiteMattes D2016-09-0545-192/+1279
|\
| * Configurable dirty unused chunk cap to avoid RAM overuse (#3359)LogicParrot2016-09-036-15/+81
| | | | | | Configurable dirty unused chunk cap to avoid RAM overuse
| * Entities now bail out of ticks if destroyed (#3363)LogicParrot2016-09-0322-1/+111
| |
| * Improve cPlayer::DoMoveToWorld (#3113)LogicParrot2016-09-033-38/+45
| |
| * Added support for the Minecraft 1.10 protocol(#210) (#3348)bibo382016-09-027-37/+959
| | | | | | | | | | | | | | | | | | | | * Added support for the Minecraft 1.10 protocol(#210) * Fixed the Clang compilation errors * Fixed wrong sound pitch value and fixed SendPlayerSpawn Metadata value. * Prefixed each enum item with the appropriate class name.
| * Remove settings.ini world migration code (#3360)LogicParrot2016-08-291-49/+0
| |
| * Proper respawn packets on dimension travelLogicParrot2016-08-2912-48/+80
| |
| * Fixed SendUnloadChunk bug (#3353)LogicParrot2016-08-281-1/+1
| |
| * Fix breaking ice in survival not giving a water's source (#3356)ElNounch2016-08-282-3/+2
| | | | | | Fix #3355
* | PluginLua: Removed unneeded assignment.Mattes D2016-09-051-1/+0
|/ | | | Duplicated in SetLoadError().
* Fixed type-casting-related warnings.Mattes D2016-08-2424-112/+79
|
* HTTP: Fixed empty headers parsing.Mattes D2016-08-241-1/+8
|
* cUrlClient: Exported to Lua API.Mattes D2016-08-234-0/+374
|
* cUrlClient: Refactored callbacks to use UniquePtr.Mattes D2016-08-222-24/+25
|
* cTCPLink supports TLS out of the box.Mattes D2016-08-227-315/+510
|
* UrlClient: Basic HTTP implementation.Mattes D2016-08-224-1/+756
|
* cLuaState: Moved function param counting to PushCallPop() template.Mattes D2016-08-223-28/+2
| | | | The Push() functions can be used not only for function params, but also returns or temporaries, so it doesn't make sense to count the params there.
* cLuaState: Added direct support for pushing a nil constant.Mattes D2016-08-225-26/+29
|
* cLuaState: Added support for optional params and AStringMap values.Mattes D2016-08-222-4/+111
|
* Delay EntityChangedWorld players' callback until Entity fully linked to world (#3330)ElNounch2016-08-223-15/+31
| | | | Otherwise, some API calls just don't seem to happen .gitignore tweak for test executables
* WebAdmin: Report opened ports. (#3333)Mattes D2016-08-211-2/+16
|
* cLuaState: Added template to push multiple values in a single call. (#3331)Mattes D2016-08-214-44/+23
|
* Fix minecart destruction crash (#3336)LogicParrot2016-08-201-1/+1
|
* Fixed minecraft with chest destruction crash (#3335)LogicParrot2016-08-201-2/+11
|
* Fixed implicit rounding warnings.Mattes D2016-08-192-6/+9
|
* Pull the cSettingsRepositoryInterface::noID constant into cIniFile Lua API.Mattes D2016-08-181-0/+11
| | | | This re-adds the cIniFile.noID constant into the Lua API
* Fix cWorld:QueueTask() Lua's bindingElNounch2016-08-181-2/+1
| | | | | | Manual binding expect three parameters : self, a number, a function And then read self and a function... Removing the extra check for the broken second argument
* Fixing string literal catching word letter as hexa-digitElNounch2016-08-172-2/+2
| | | | | | Was sending "\x08C""uberite" as plugin identifier, aka a String of lenght (Varint 0x8c 0x75 ->) 14988 characters but only 7 provided Now sending "\x08""Cuberite" as plugin identifier, aka a String of lenght (Varint 0x08 ->) 8 characters, with 8 provided Fix BungeeCord compatibility
* Added cWorld:SetSpawn() API and Lua binding (#3316)ElNounch2016-08-152-12/+32
|
* Fixed cWorld:ChunkStay bindings. (#3319)Mattes D2016-08-146-77/+219
| | | | | | Introduced new cLuaState::cOptionalCallback for representing optional callbacks (nil from Lua side). Introduced new cLuaState::cStackTable class for easy access to Lua table's elements. Fixes #3305.
* Implemented OverworldClumpFlowersNiLSPACE2016-08-143-0/+283
|
* IPLookup: Fixed a soft memory leak when looking up invalid IPs.Mattes D2016-08-131-1/+7
|
* Converted cLuaState::cTableRef to use cTrackedRef.Mattes D2016-08-1312-463/+457
| | | | This makes the table-based callbacks resistent to LuaState unloads and safer to use.
* Revert "Added a BasicStyleCheck for virtual functions without override keyword."Mattes D2016-08-131-2/+0
| | | | This reverts commit a800b5bd9f663b5c7d78101a449f97e5a5789c9a.
* Added a BasicStyleCheck for virtual functions without override keyword.Mattes D2016-08-131-0/+2
|
* Fix issue #3312Alexander Harkness2016-08-121-0/+1
| | | Nether brick fences now drop their item.
* Removed debug log message.Mattes D2016-08-111-1/+0
| | | | Ref.: #3308
* Fixed LuaAPI library registrations. (#3308)Mattes D2016-08-111-1/+18
| | | | lsqlite3 didn't clean up the stack properly. lxp didn't register itself properly.
* Removed "." and ".." from cFile:GetFolderContents(). (#3301)Mattes D2016-08-071-0/+14
|
* Fixed cFile API bindings.Mattes D2016-08-061-16/+16
|
* Commented out code_out.cpp generating.Mattes D2016-08-061-0/+4
| | | | Fixes #3296.
* Fixed RasPi builds of unit tests.Mattes D2016-08-0415-44/+97
| | | | | On RasPi with gcc 4.8.2, the asserts wouldn't compile when tests were enabled. Enforced the assumption that ASSERT code is generated only in Debug builds.
* Added compile.sh folder check warningsLogicParrot2016-08-041-0/+4
|
* Fixed cFastRandom Test. (#3291)Alexander Harkness2016-08-031-72/+0
| | | This resolves #3290
* Simplified cChunkMap chunk storage (#2565)Tiger Wang2016-08-032-666/+257
|
* Redstone fixes (#3285)Tiger Wang2016-07-314-55/+99
| | | | | | | | * Comparators and pistons no longer update instantly * Fixes #3168. * Consolidated comparator code * As a result, fixed an issue where GetPowerLevel didn't consider block entities behind it (only GetFrontPowerLevel did)
* Fix tab list sometimes not updating after a player leaves. (#3280)Alexander Harkness2016-07-311-1/+1
| | | | | | When a player leaves the game, their client handle has its state changed to csDestroyed. This should fix issue #3138
* Fixed port command line argument. (#3287)Alexander Harkness2016-07-301-5/+1
|
* Fix the error in #3270.Alexander Harkness2016-07-291-1/+1
|
* Revert "Redstone fixes"Mattes D2016-07-294-99/+55
|
* Consolidated comparator codeTiger Wang2016-07-292-46/+42
| | | | | * As a result, fixed an issue where GetPowerLevel didn't consider block entities behind it (only GetFrontPowerLevel did)
* Comparators and pistons no longer update instantlyTiger Wang2016-07-294-15/+63
| | | | * Fixes #3168.
* Tab completion across worlds (#3270)Alexander Harkness2016-07-215-1/+55
| | | Fixes #2563.
* CMake: Fix system Lua usage for non-5.1 versions. (#3271)Mattes D2016-07-212-2/+2
|
* Dropped 1.7 support (#3253)Mathias2016-07-218-3663/+3
|
* Fix endianness issue with ODROID-C2 Boards (#3268)Alexander Harkness2016-07-201-1/+1
|
* CMake: Remove needless minimum version specifications.Mattes D2016-07-1817-30/+0
|
* Use system Lua, if available, to generate bindings.Mattes D2016-07-182-23/+37
| | | | Closes #1031.
* Updated API documentation.Mattes D2016-07-1814-41/+42
|
* Vector3: Removed useless NormalizeCopy overload from LuaAPI.Mattes D2016-07-181-1/+7
|
* DiffAPIDesc: Support optional params in desc.Mattes D2016-07-181-12/+12
|
* LuaAPI: Fixed bindings for cChunkDesc:GetBlockTypeMetaMattes D2016-07-183-2/+39
|
* Bindings: Added a script to generate a diff between APIDesc and ToLua.Mattes D2016-07-182-3/+553
| | | | This allows a simple copy operation from the DoxyComments into APIDesc.
* Bindings: Don't generate docs for private symbols, mark static symbols.Mattes D2016-07-181-13/+35
|
* Bindings: Output description is valid Lua file.Mattes D2016-07-181-3/+7
|
* Bindings: Extract unexported DoxyComments.Mattes D2016-07-181-15/+134
|
* Bindings: Extract DoxyCommentsMattes D2016-07-181-18/+187
|
* Added a Pure-Lua implementation for bindings generation.Mattes D2016-07-183-2/+511
| | | | | The BindingsProcessor.lua script can be opened in ZeroBraneStudio and debugged from there, it invokes the entire ToLua++ processing. Also added docs-generation to the ToLua++ processor.
* Fixes for boat entities (#3265)beeduck2016-07-187-7/+186
| | | 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.
* Fixed Lua Json serializing a bool.Mattes D2016-07-101-0/+10
| | | | Fixes #3257.
* removed cast from BlockTrapdoor.h (#3256)gaurav sehgal2016-07-073-4/+9
|
* Fixed piston destroying other pistonsAltenius2016-07-061-5/+9
| | | | Fixes #3251
* Fixed falling block spawningAltenius2016-07-051-1/+1
| | | | Fixes #3222
* Bindings: Added missing dependencies.Mattes D2016-07-021-0/+12
| | | | Fixes #3245
* CircleCI: Check for missing Bindings dependenciesMattes D2016-07-021-0/+108
| | | | This commit fails the CircleCI tests on purpose, so that we know that the check works.
* Revert "Made redstone handlers static"Lukas Pioch2016-07-012-93/+31
|
* Close chest window if minecart is destroyedLukas Pioch2016-06-301-0/+1
|
* Converted cLuaState::cCallbackPtr into a UniquePtr.Mattes D2016-06-279-24/+39
|
* Removed dead code related to callbacks.Mattes D2016-06-274-43/+3
|
* cPluginManager: Use a callback for command handler registration.Mattes D2016-06-278-209/+167
|
* LuaState: Implemented proper locking for cCallback.Mattes D2016-06-2711-115/+151
|
* Changed cLuaWindow callbacks to use cLuaState::cCallback.Mattes D2016-06-277-183/+243
|
* Removed the cPluginLua::cResettable class.Mattes D2016-06-272-82/+1
| | | | The functionality provided by that class has been superseded by cLuaState::cCallback, with better multithreading support.
* Changed world tasks to use cLuaState::cCallback.Mattes D2016-06-271-67/+38
|
* Changed plugin hook registrations to use cLuaState::cCallback.Mattes D2016-06-275-1008/+190
|
* Removed cWebPlugin, WebAdmin uses cLuaState::cCallback.Mattes D2016-06-2711-606/+584
|
* Added cLuaState::cCallback for representing (resettable) Lua callbacks.Mattes D2016-06-272-7/+231
|
* Self tests (#3242)Mattes D2016-06-262-6/+3
| | | | | | | | * SelfTests: Added a cEvent stress-test. * cNetwork: Fixed startup event hang. The original code used to hang with a ~ 1:50000 chance, because on Linux the cEvent was destroyed before its "Set()" returned.
* cNetwork: Fixed possible hang when terminating immediately after init.Mattes D2016-06-182-2/+27
|
* Flush immediately after each line when running tests.Mattes D2016-06-181-54/+55
|
* SelfTests: Removed the unneeded cSelfTests class.Mattes D2016-06-187-133/+0
|
* SelfTests: Moved BoundingBox test to a separate project.Mattes D2016-06-181-66/+0
|
* SelfTests: Moved SchematicFileSerializer test into a separate project.Mattes D2016-06-181-36/+0
|
* SelfTests: Moved cCompositeChat test to a separate project.Mattes D2016-06-181-89/+0
|
* SelfTests: Moved ByteBuffer test to a separate project.Mattes D2016-06-181-66/+0
|
* Moved NetworkInterfaceEnum test to a separate test project.Mattes D2016-06-181-28/+0
|
* - Add a activation flag to droppers and dispensers. Previously droppers and dispensers shot items with every block update.QUSpilPrgm2016-06-155-9/+34
| | | | - Fixes a range check inside cIncrementalRedstoneSimulator::Simulate
* Normalized Vector3 API to use the same capitalization as all else.Mattes D2016-06-103-8/+67
|
* Bindings: Fixed cBoundingBox API.Mattes D2016-06-053-11/+98
|
* Bindings: Add a const-ptr variant to all stack getter functionsMattes D2016-06-052-0/+16
|
* Makes tall grass and large flowers bonemealableQUSpilPrgm2016-06-036-12/+132
| | | | Adds the bonemeal particle effect to some more places
* Update Dispensers and let them act more like in VanillaQUSpilPrgm2016-06-039-103/+206
| | | | | | | | - Added code to make bonemeal, potions, minecarts, XP bottles and boats work inside dispensers - Dispensers are now able to place TNT if the block is transparent but not air - Added return value that indicates the success of pumpkin, melon, sugarcane and cactus growing functions - Changed return value of "GrowRipePlant" so that it actually indicates if the block was able to grow - Fixed "GrowSugarcane" and "GrowCactus" in "GrowRipePlant" so that it only grows them a single block
* Fixed fall damageTiger Wang2016-06-024-44/+17
| | | | * Fixes #3216
* LuaState: Inter-plugin calls now support simple tables. (#3220)Mattes D2016-05-312-54/+140
|
* Added GetTeamNames to cScoreboard (#3217)PlasmaPower2016-05-293-0/+44
| | | Resolves #3210
* Don't let redstone blocks power adjacent blocks. (#3214)QUSpilPrgm2016-05-282-3/+2
| | | | | * Don't let redstone blocks power adjacent blocks. This fixes issue #2966
* Made redstone handlers staticTiger Wang2016-05-282-31/+93
| | | | * Improvements to performance? Maybe. Can't hurt (he says).
* 1.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135)Pokechu222016-05-1430-101/+5308
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Semistable update to 15w31a I'm going through snapshots in a sequential order since it should make things easier, and since protocol version history is written. * Update to 15w34b protocol Also, fix an issue with the Entity Equipment packet from the past version. Clients are able to connect and do stuff! * Partially update to 15w35e Chunk data doesn't work, but the client joins. I'm waiting to do chunk data because chunk data has an incomplete format until 15w36d. * Add '/blk' debug command This command lets one see what block they are looking at, and makes figuring out what's supposed to be where in a highly broken chunk possible. * Fix CRLF normalization in CheckBasicStyle.lua Normally, this doesn't cause an issue, but when running from cygwin, it detects the CR as whitespace and creates thousands of violations for every single line. Lua, when run on windows, will normalize automatically, but when run via cygwin, it won't. The bug was simply that gsub was returning a replaced version, but not changing the parameter, so the replaced version was ignored. * Update to 15w40b This includes chunk serialization. Fully functional chunk serialization for 1.9. I'm not completely happy with the chunk serialization as-is (correct use of palettes would be great), but cuberite also doesn't skip sending empty chunks so this performance optimization should probably come later. The creation of a full buffer is suboptimal, but it's the easiest way to implement this code. * Write long-by-long rather than creating a buffer This is a bit faster and should be equivalent. However, the code still doesn't look too good. * Update to 15w41a protocol This includes the new set passengers packet, which works off of the ridden entity, not the rider. That means, among other things, that information about the previously ridden vehicle is needed when detaching. So a new method with that info was added. * Update to 15w45a * 15w51b protocol * Update to 1.9.0 protocol Closes #3067. There are still a few things that need to be worked out (picking up items, effects, particles, and most importantly inventory), but in general this should work. I'll make a few more changes tomorrow to get the rest of the protocol set up, along with 1.9.1/1.9.2 (which did make a few changes). Chunks, however, _are_ working, along with most other parts of the game (placing/breaking blocks). * Fix item pickup packet not working That was a silly mistake, but at least it was an easy one. * 1.9.2 protocol support * Fix version info found in server list ping Thus, the client reports that it can connect rather than saying that the server is out of date. This required creating separate classes for 1.9.1 and 1.9.2, unfortunately. * Fix build errors generated by clang These didn't happen in MSVC. * Add protocol19x.cpp and protocol19x.h to CMakeLists * Ignore warnings in protocol19x that are ignored in protocol18x * Document BLOCK_FACE and DIG_STATUS constants * Fix BLOCK_FACE links and add separate section for DIG_STATUS * Fix bat animation and object spawning The causes of both of these are explained in #3135, but the gist is that both were typos. * Implement Use Item packet This means that buckets, bows, fishing rods, and several other similar items now work when not looking at a block. * Handle DIG_STATUS_SWAP_ITEM_IN_HAND * Add support for spawn eggs and potions The items are transformed from the 1.9 version to the 1.8 version when reading and transformed back when sending. * Remove spammy potion debug logging * Fix wolf collar color metadata The wrong type was being used, causing several clientside issues (including the screen going black). * Fix 1.9 chunk sending in the nether The nether and the end don't send skylight. * Fix clang build errors * Fix water bottles becoming mundane potions This happened because the can become splash potion bit got set incorrectly. Water bottles and mundane potions are only differentiated by the fact that water bottles have a metadata of 0, so setting that bit made it a mundane potion. Also add missing break statements to the read item NBT switch, which would otherwise break items with custom names and also cause incorrect "Unimplemented NBT data when parsing!" logging. * Copy Protocol18x as Protocol19x Aditionally, method and class names have been swapped to clean up other diffs. This commit is only added to make the following diffs more readable; it doesn't make any other changes (beyond class names). * Make thrown potions use the correct appearence This was caused by potions now using metadata. * Add missing api doc for cSplashPotionEntity::GetItem * Fix compile error in SplashPotionEntity.cpp * Fix fix of cSplashPotionEntity API doc * Temporarilly disable fall damage particles These were causing issues in 1.9 due to the changed effect ID. * Properly send a kick packet when connecting with an invalid version This means that the client no longer waits on the server screen with no indication whatsoever. However, right now the server list ping isn't implemented for unknown versions, so it'll only load "Old" on the ping. I also added a GetVarIntSize method to cByteBuffer. This helps clean up part of the code here (and I think it could clean up other parts), but it may make sense for it to be moved elsewhere (or declared in a different way). * Handle server list pings from unrecognized versions This isn't the cleanest way of writing it (it feels odd to use ProtocolRecognizer to send packets, and the addition of m_InPingForUnrecognizedVersion feels like the wrong technique), but it works and I can't think of a better way (apart from creating a full separate protocol class to handle only the ping... which would be worse). * Use cPacketizer for the disconnect packet This also should fix clang build errors. * Add 1.9.3 / 1.9.4 support * Fix incorrect indentation in APIDesc
* Fixed death on teleportation or leaving Minecart (#3181)LogicParrot2016-05-034-6/+32
|
* Fix crash on world travel (#3180)LogicParrot2016-05-031-1/+1
|
* Fix Crash on stopping the server (#3176)LogicParrot2016-05-013-2/+14
|
* Proper minecart DoSetSpeed Override (#3174)LogicParrot2016-04-301-1/+1
| | | Closes #3173, Introduced in #3037.
* Disable Enderman Spawn (Issue #3108) (#3170)benf5162016-04-301-2/+2
| | | Temporarily disabled enderman spawning until the glitches can be fixed
* ChunkLayers now stored in std::mapLogicParrot2016-04-242-62/+61
|
* Fixed some logout crashesLogicParrot2016-04-241-2/+3
|
* Revert "ChunkLayers now stored in std::map"LogicParrot2016-04-242-54/+62
|
* ChunkLayers now stored in std::mapLogicParrot2016-04-232-62/+54
|
* ClientHandle destruction thread safetyLogicParrot2016-04-231-2/+13
|
* Out of world blocks are now always considered air blocksLogicParrot2016-04-233-15/+10
|
* Reduced unnecessary block updatesLogicParrot2016-04-2216-91/+54
|
* Fix minecart block collision on curved railsWoazboat2016-04-221-10/+56
|
* Updated vector hashing bit operationsLogicParrot2016-04-221-6/+4
|
* Auto clean bad world linkagesLogicParrot2016-04-193-17/+16
|
* Proper fix for #3136 (#3143)Alexander Harkness2016-04-191-17/+11
|
* Fix issues below y = 0LogicParrot2016-04-184-11/+21
|
* Prevented snow from killing grassLogicParrot2016-04-161-2/+4
|
* Updated cChunk::SetMeta, fixed grass growth, reduced markDirty/setMeta usageLogicParrot2016-04-1610-26/+39
|
* Add speed limit enforcement for minecartsMarvin Kopf2016-04-152-41/+54
|
* Revert "Issue3136"LogicParrot2016-04-143-14/+27
|
* Fix occasional freeze bugLogicParrot2016-04-132-39/+42
|
* Fixed port override code.Alexander Harkness2016-04-123-27/+14
|
* Revert "Move mob tick code to cChunk"LogicParrot2016-04-062-40/+56
|
* Move mob tick code to cChunkLogicParrot2016-04-062-56/+40
|
* Manual mob burn codeLogicParrot2016-04-061-7/+34
|
* Minor improvements to player freezeLogicParrot2016-04-052-5/+5
|
* Improved player freeze codeLogicParrot2016-04-057-75/+99
|
* Prevent Nether teleportation loopsLogicParrot2016-04-041-1/+1
|
* Players never fall through unloaded chunks or end up inside solids on teleportLogicParrot2016-03-315-29/+138
|
* Fix adding players to worldLogicParrot2016-03-311-1/+1
|
* Player death crashfixLogicParrot2016-03-311-2/+4
|
* Entities are never lostLogicParrot2016-03-303-32/+19
|
* MoveToWorld defaults to spawnpointLogicParrot2016-03-302-3/+21
|
* Bed's world is now savedLogicParrot2016-03-292-4/+47
|
* Updated icons and logoMathias2016-03-286-0/+0
|
* Fix passive mob destruction crashesLogicParrot2016-03-281-0/+1
|
* Rewrite mob tick codeLogicParrot2016-03-231-18/+41
|
* Revert "Lua callback"Mattes D2016-03-2118-1259/+1925
|
* Fixed misuse of comma.Lukas Pioch2016-03-182-5/+5
|
* Fixed leaping potion not giving jump boostBlitz Rakete2016-03-181-0/+1
|
* Changed cLuaWindow callbacks to use cLuaState::cCallback.Mattes D2016-03-177-182/+242
|
* Removed the cPluginLua::cResettable class.Mattes D2016-03-172-82/+1
| | | | The functionality provided by that class has been superseded by cLuaState::cCallback, with better multithreading support.
* Changed world tasks to use cLuaState::cCallback.Mattes D2016-03-171-67/+38
|
* Changed plugin hook registrations to use cLuaState::cCallback.Mattes D2016-03-175-1008/+190
|
* Removed cWebPlugin, WebAdmin uses cLuaState::cCallback.Mattes D2016-03-1711-606/+584
|
* Added cLuaState::cCallback for representing (resettable) Lua callbacks.Mattes D2016-03-172-7/+231
|
* HTTP: Added missing HasAuth flag initialization.Mattes D2016-03-111-1/+2
|
* HTTP: Fixed header parsing.Mattes D2016-03-031-0/+1
|
* WebAdmin: Finish HTTP responses.Mattes D2016-03-031-0/+1
|
* fixed horse bugtonibm192016-03-011-1/+4
| | | | horse could be "controlled" without a saddle or being tamed
* HTTP: Fixed typos and bad leftovers.Mattes D2016-03-013-3/+4
|
* Renamed HTTPResponse to HTTPOutgoingResponse.Mattes D2016-03-016-14/+13
|
* WebAdmin uses the new HTTP parser framework.Mattes D2016-03-0116-871/+575
|
* HTTP: Fixed response parser, unified API.Mattes D2016-03-014-16/+22
|
* Fixed HTTP parsing when in insecure mode.Mattes D2016-03-011-2/+6
| | | | | Parsing would ignore the size of data already buffered, resulting in bad_alloc exception. Fixes #2898.
* Renamed HTTPServer folder to HTTP.Mattes D2016-03-0131-140/+407
| | | | It contains client code as well.
* Added HTTPResponseParser.Mattes D2016-03-016-0/+508
|
* Moved cHTTPRequest to a separate file, renamed to cHTTPRequestParser.Mattes D2016-03-0113-325/+347
|
* Renamed the HTTP classes to indicate they're for server.Mattes D2016-03-019-77/+75
|
* Mobs no longer spawn at the top of the nether.tonibm192016-03-011-0/+5
| | | | | | | | | | | | | | | | | I don't really know if this is the right place for the check, but it works. Add bedrock check fix typo Using code provided by NiLSpace and fixed a horse's bug -Horses can no longer be "controlled" if they're not tamed and saddled removed unrelated horse code Fixed mobs spawning above bedrock
* Fixed LinearUpscale's bounds checking.Mattes D2016-02-241-4/+4
|
* Made ProtIntGen's max size compile-time-configurable.Mattes D2016-02-241-1/+13
|
* Removed old and wrong code from Globals.h.Mattes D2016-02-241-16/+1
|
* Fixed includes in IntGen.Mattes D2016-02-241-2/+2
|
* Fixed removing entities from parent chunksLogicParrot2016-02-221-1/+1
|
* LuaTCPLink: Report data received via SSL just before connection closed.Mattes D2016-02-211-2/+10
|
* Add check if entity is in chunk before changing tick statusMarvin Kopf2016-02-211-2/+8
|
* Fix #3030Alexander Harkness2016-02-201-9/+1
| | | | Logicparrot's instructions
* Merge pull request #3026 from iam10K/masterworktycho2016-02-191-4/+12
|\ | | | | Stop Tamed Wolf from following player when he is flying
| * Stop Wolf from following player when he is flyingTyler Encke2016-02-191-4/+12
| | | | | | | | | | | | Check to make sure player is not flying before allowing wolf to move to player. Fixed isFlying to IsFlying
* | Proper entity destruction in non-ticking chunksLogicParrot2016-02-1917-177/+263
|/
* Don't remove water after ice block has been destroyedLukas Pioch2016-02-181-1/+5
|
* Fix minecart entity collisionMarvin Kopf2016-02-162-27/+11
| | | | | * Minecarts no longer handle a collision if the entity is behind them. * Minecarts will leave the pushing after a collision on a straight rail to the entity.
* Fix unicode handling in StringUtils::TrimStringLogicParrot2016-02-161-2/+2
|
* Merge pull request #2985 from marvinkopf/poweredrailTiger Wang2016-02-092-1/+10
|\ | | | | Update RedstoneSimulator to delete unused cached PowerData
| * Update RedstoneSimulator to delete unused cached PowerDataMarvin Kopf2016-02-092-1/+10
| | | | | | | | When a new block was placed that has a corresponding RedstoneHandler the PowerData for the position was cached, but never deleted and remained unchanged when the block got destroyed. The RedstoneSimulator now erases all cached PowerData for positions where the block doesn't have a RedstoneHandler (i.e. Air).
* | Write to console when autofixing linkagesLogicParrot2016-02-091-0/+1
| |
* | Add forum link to linkage error messageLogicParrot2016-02-091-1/+1
| |
* | Improve world linkage error messageLogicParrot2016-02-081-2/+2
| |
* | Prevent player from falling when block breaking is deniedLogicParrot2016-02-081-0/+2
| |
* | Merge pull request #2990 from LogicParrot/defaultWorldLogicParrot2016-02-081-1/+2
|\ \ | | | | | | Add DefaultWorld to newly generated INI
| * | Add DefaultWorld to newly generated INILogicParrot2016-02-081-1/+2
| | |
* | | remove cWorld::createAndInitializeWorldLogicParrot2016-02-084-44/+14
|/ /
* | Merge pull request #2961 from LogicParrot/enforceLogicParrot2016-02-083-3/+50
|\ \ | | | | | | [PhantomWorlds - 4] Prevent server from starting if there's bad world linkage
| * | Prevent server from starting if there's bad world linkageLogicParrot2016-02-053-3/+50
| | |
* | | Merge pull request #2953 from LogicParrot/worldRebuildLogicParrot2016-02-082-3/+71
|\ \ \ | | | | | | | | [PhantomWorlds - 3] Regenerate worlds with proper dimension types and linkages
| * | | Proper world linkages and dimension types for newly created world.ini'sLogicParrot2016-02-062-3/+71
| | | |
* | | | Merge pull request #2969 from LogicParrot/iniLogicParrot2016-02-071-1/+1
|\ \ \ \ | |_|_|/ |/| | | Ignore trailing and leading spaces in INI values
| * | | Ignore trailing and leading spaces in INI values# Please enter the commit message for your changes. Lines startingLogicParrot2016-02-052-21/+21
| | |/ | |/|
* | | Merge pull request #2981 from Drahoslav7/masterTiger Wang2016-02-071-2/+3
|\ \ \ | | | | | | | | Fix Pickups of BlockFlower
| * | | Fix Pickups of BlockFlowerDrahoslav Bednář2016-02-061-2/+3
| | | | | | | | | | | | | | | | | | | | BlockMeta is handled correctly, when converting to pickups, so flowers now drops right flower type.
* | | | Style checker - Prevent whitespace-only linesLogicParrot2016-02-061-1/+1
|/ / /
* | | Merge pull request #2974 from LogicParrot/perlJulian Laubstein2016-02-06406-4497/+4497
|\ \ \ | | | | | | | | Bulk clearing of whitespace
| * | | Bulk clearing of whitespaceLogicParrot2016-02-05406-4497/+4497
| | |/ | |/|
* | | Merge pull request #2958 from LogicParrot/fenceLogicParrot2016-02-061-11/+15
|\ \ \ | |/ / |/| | Pathfinder now properly treats nonsolids above fence
| * | Pathfinder now properly treats nonsolids above fenceLogicParrot2016-02-041-11/+15
| | |
* | | Merge pull request #2972 from marvinkopf/PlayerAutoCompleteLogicParrot2016-02-051-1/+1
|\ \ \ | | | | | | | | Tab completion for player names now case insensitive.
| * | | Tab completion for player names now case insensitive.Marvin Kopf2016-02-051-1/+1
| | | |
* | | | Merge pull request #2954 from kevinr/implement-acacia-block-heightLogicParrot2016-02-051-1/+12
|\ \ \ \ | |/ / / |/| | | Implement acacia block height
| * | | implement height logic for Acacia blocksKevin Riggle2016-02-041-1/+12
| | | |
* | | | Correct typo in documentation.Alexander Harkness2016-02-051-1/+1
| |_|/ |/| |
* | | Merge pull request #2960 from LogicParrot/interspeciesJulian Laubstein2016-02-041-11/+25
|\ \ \ | | | | | | | | Prevent interspecies breeding
| * | | Prevent interspecies breedingLogicParrot2016-02-041-11/+25
| | |/ | |/|
* / | Fix unexpected world creation introduced by #2821LogicParrot2016-02-041-1/+1
|/ /
* / cMonster::m_Target safety across worldsLogicParrot2016-02-0317-83/+294
|/
* Merge pull request #2941 from LogicParrot/chunkBug2LogicParrot2016-02-034-8/+57
|\ | | | | [Attempt 2] Fixed cChunk::m_Entities corruption upon world travel
| * Fixed cChunk::m_Entities corruption upon world travelLogicParrot2016-02-024-8/+57
| |
* | Merge pull request #2903 from marvinkopf/FixTabAutoCompleteLogicParrot2016-02-021-1/+21
|\ \ | | | | | | Fix TabAutoComplete
| * | Fix TabAutoCompleteMarvin Kopf2016-02-021-1/+21
| |/ | | | | | | For tab on '/command s' the server now returns 'subcommand' instead of '/command subcommand'.
* / Fix cPawn pushingMarvin Kopf2016-02-023-0/+22
|/ | | | cPawn instances can no longer push an entity they are attached to. cEntity now has a IsAttachedTo method.
* Updated old forum linksMathias2016-01-3112-12/+12
|
* MCServer to CuberiteMathias2016-01-291-1/+1
|
* Front-end updateMathias2016-01-281-1/+0
|
* LuaTcpSsl: Disabled cert verification due to missing CA chain.Mattes D2016-01-241-2/+2
|
* Fixed HTTP parsing when in insecure mode.Mattes D2016-01-221-2/+6
| | | | | Parsing would ignore the size of data already buffered, resulting in bad_alloc exception. Fixes #2898.
* Improved tamed wolf pack cooperation and projectile reactionsLogicParrot2016-01-2212-82/+213
|
* Merge pull request #2894 from LogicParrot/spiderLogicParrot2016-01-2213-163/+221
|\ | | | | Spiders now friendly at daylight, new cChunk functions
| * Spiders now friendly at daylight, new cChunk functionsLogicParrot2016-01-2113-163/+221
| |
* | Fix running as a service.Anthony Birkett2016-01-212-10/+6
|/ | | | | | | | | | Two problems identified, both traced to commit 4315a11 (main.cpp) ParseArguments() was no longer being called before checking cRoot::m_RunAsService. This led to m_RunAsService never being set (we use -d on the command line to instigate a service start). (Root.cpp) Terminate events were being ignored when running as a service. We only need to ignore the cin.good() call, not terminate events as a whole.
* Fixed race conditionsLukas Pioch2016-01-172-2/+2
|
* Merge pull request #2887 from LogicParrot/waterLogicParrot2016-01-171-1/+1
|\ | | | | Use IsBlockWater in cPath
| * Use IsBlockWater in cPathLogicParrot2016-01-171-1/+1
| |
* | No second spawn broadcast necessaryWinfieldSteve2016-01-173-3/+0
|/
* Fixed wrong knockback direction after explosion damageLogicParrot2016-01-161-0/+4
|
* Merge pull request #2877 from LogicParrot/spawn2LogicParrot2016-01-162-183/+184
|\ | | | | Fixed non-natural spawning near player (egg, breeding, etc.)
| * Fixed non-natural spawning near player (egg, breeding, etc.)LogicParrot2016-01-162-183/+184
| |
* | Fix crash when tamed wolf is hit by arrowsLogicParrot2016-01-167-61/+79
|/
* Merge pull request #2875 from LogicParrot/fallDamageLogicParrot2016-01-161-1/+5
|\ | | | | Fix fall damage crash when tamed wolves neabry
| * Fix fall damage crash when tamed wolves neabryLogicParrot2016-01-161-1/+5
| |
* | Limited the username length to 16 characters.bibo382016-01-132-0/+8
|/ | | | | | This fixes a client crash, because Minecraft requires that a username is not longer than 16 characters. See also: http://minecraft.gamepedia.com/The_Player#Name Fixes #2545
* Do not spawn mobs too close to playerLogicParrot2016-01-121-54/+63
|
* Merge pull request #2862 from LogicParrot/creeperLogicParrot2016-01-121-2/+2
|\ | | | | Fixed creeper calling TargetIsInRange with null m_Target
| * Fixed creeper calling TargetIsInRange with null m_TargetLogicParrot2016-01-121-2/+2
| |
* | Fixed crash introduced by #2821LogicParrot2016-01-121-29/+31
|/
* Merge pull request #2859 from LogicParrot/attack2LogicParrot2016-01-127-24/+28
|\ | | | | Fix mob attack interval
| * Fix mob attack intervalLogicParrot2016-01-127-24/+28
| |
* | Friendly wolf attack safety checksLogicParrot2016-01-121-1/+14
|/
* Merge pull request #2857 from LogicParrot/wolfLogicParrot2016-01-1211-149/+292
|\ | | | | AI: Tamed wolf defends owner
| * Tamed wolf assists owner (attack / defence)LogicParrot2016-01-1211-149/+292
| |
* | Added detailed logging to cBlockArea::Read() bad Y coords.Mattes D2016-01-121-4/+12
| | | | | | | | Ref.: http://forum.mc-server.org/showthread.php?tid=2307
* | Exported GetSeed to lua and added file extension opendb to .gitignore.Lukas Pioch2016-01-121-0/+3
| |
* | Merge pull request #2821 from LogicParrot/world2LogicParrot2016-01-122-3/+49
|\ \ | | | | | | Fix pre - #2815 default world linkage configs
| * | Fix pre - #2815 default world linkage configsSafwat Halaby2015-12-252-3/+49
| | |
* | | Merge pull request #2855 from bibo38/mobheadsworktycho2016-01-126-17/+125
|\ \ \ | |_|/ |/| | Changed the format of the MobHead data
| * | Changed the format of the MobHead data to allow MobHeads working on MInecraft 1.8bibo382016-01-116-17/+125
| | | | | | | | | | | | | | | | | | The NBT format now carries the texture data and transmit it to the client. See: http://minecraft.gamepedia.com/Head#Block_entity Related to #2674
* | | Fixed issue #2218Austin Martin2016-01-111-3/+5
|/ /
* | Added "core.help" permission to Default rank.Mattes D2016-01-101-0/+1
| |
* | Fixed not working packet decompressionbibo382016-01-101-13/+18
| | | | | | | | | | | | | | A compressed packed contains always the uncompressed size, but in the code this size was threatened as the compressed data size. This created a failure, when the client compressed a packet. See: http://wiki.vg/Protocol#With_compression Fixes #2841 Fixes #2467
* | Fixed Clang warnings.Mattes D2016-01-066-33/+49
| |
* | Fixed typoMathias2016-01-031-1/+1
| |
* | More blocks that can't be mined with silktouchMathias2016-01-031-1/+28
| |
* | Fix typo (ammount)Arnaud Meuret2016-01-021-3/+3
| |
* | Renamed leftover strings to Cuberite / Server, as needed.Mattes D2016-01-0121-186/+46
| | | | | | | | Also upgraded the user setting file for MSVC to 2013.
* | Fixed default Nether generator params.Mattes D2015-12-301-1/+1
| | | | | | | | The prefab file is "NetherFort"
* | Fixed problems in cBlockingSslClientSocket.Mattes D2015-12-303-11/+24
| |
* | Fixed the monster burn code.Mattes D2015-12-301-3/+15
| | | | | | | | The old code failed when the monster was out of Y range.
* | Removed excessive logging in redstone simulator.Mattes D2015-12-281-7/+0
| |
* | Deleted cPath::BlockTypeIsFenceLogicParrot2015-12-273-34/+13
| |
* | Merge pull request #2814 from SafwatHalaby/chunk2Safwat Halaby2015-12-262-1/+112
|\ \ | | | | | | Freeze player until chunk is loaded
| * | Freeze player until chunk is loadedSafwat Halaby2015-12-252-1/+112
| |/
* | Merge pull request #2820 from cuberite/UrlParserworktycho2015-12-265-3/+424
|\ \ | | | | | | Added the cUrlParser class, exported to Lua API.
| * | Added the cUrlParser class, exported to Lua API.Mattes D2015-12-255-3/+424
| | |
* | | Update fences and gates listSafwat Halaby2015-12-251-2/+9
|/ / | | | | | | Update fences and gates list
* | Merge pull request #2795 from SafwatHalaby/doorsSafwat Halaby2015-12-2510-215/+396
|\ \ | |/ |/| "Special blocks" handling
| * PF - "Special blocks" handlingSafwat Halaby2015-12-2414-219/+400
| |
* | Nether and End in settings.ini by default, and created at startupSafwat Halaby2015-12-252-4/+18
| |
* | Merge pull request #2816 from SafwatHalaby/redstoneSafwat Halaby2015-12-2417-20/+20
|\ \ | | | | | | Silenced the Redstone Simulator console spam
| * | Silenced the Redstone Simulator console spamSafwat Halaby2015-12-2417-20/+20
| |/
* / Added a Json parser and serializer to Lua API.Mattes D2015-12-244-0/+351
|/
* Added IsBlockFence method to definesJulian Laubstein2015-12-241-0/+24
|
* Fixed builds on FreeBSD 32bitJulian Laubstein2015-12-231-0/+1
|
* Merge pull request #2806 from SafwatHalaby/gargraj-chickenSafwat Halaby2015-12-231-0/+5
|\ | | | | [Gargaj] - Baby chickens don't lay eggs
| * Chicken egg code early bailoutSafwat Halaby2015-12-231-19/+21
| |
| * Baby chickens don't lay eggsGargaj2015-12-231-16/+19
| |
* | Fixed return value description in doxycomment.Mattes D2015-12-231-1/+1
| |
* | add handling of water bottleGargaj2015-12-223-0/+98
|/
* Added GeoTrust Root Certificateworktycho2015-12-221-1/+24
|
* Ignore == if followed by \worktycho2015-12-221-1/+1
| | | | Ignore the space before == rule if immediately followed by a \. If it is imediatly followed by a \, then this is likely the base64 padding at the end of a certificate, which is followed by \n.
* Merge pull request #2788 from SafwatHalaby/jumpSafwat Halaby2015-12-223-81/+151
|\ | | | | PF - Improved mob jumping
| * PF - Improved mob jumpingSafwat Halaby2015-12-213-81/+151
| |
* | cTeam:GetName returning wrong namethen0rTh2015-12-211-1/+1
|/
* Revert "Changed cPath to have a reset method".Safwat Halaby2015-12-214-103/+38
|
* Fixed spawn point. Wrong number for divisions and wrong highest spawn point.Lukas Pioch2015-12-201-3/+4
|
* Fix race conditiontycho2015-12-202-2/+4
|
* Fixes for clang-3.7Lukas Pioch2015-12-195-7/+7
|
* Merge pull request #2542 from Haxi52/pinkstoneTiger Wang2015-12-1955-3122/+2337
|\ | | | | Reorganised the redstone simulator
| * Reorganised the redstone simulatorTiger Wang2015-12-1855-3122/+2337
| | | | | | | | | | | | -> Many thanks to @worktycho for the idea, and @Haxi52 for the implementation plan! * Uses classes and inheritance now * Speed should be improved
* | Use atomic bool for isthread terminatetycho2015-12-191-1/+2
| |
* | Added HTTPS links wherever they are supported.Alexander Harkness2015-12-1910-126/+89
| |
* | Fix off by two error in ReadStringworktycho2015-12-181-1/+1
| |
* | Check for invalid tags when reading a compound tagtycho2015-12-181-2/+6
| |
* | Revised the explosion-related Lua API and docs.Mattes D2015-12-186-108/+215
|/ | | | Fixes #2746.
* Removed unused class cChunkDataCollector.Mattes D2015-12-181-20/+0
|
* Fixed String Parsing crash bugtycho2015-12-181-5/+1
| | | | Check string length against actual remaining data, not an abitary constant
* PieceStructures generator: Fixed wrong merge conflict resolution.Mattes D2015-12-172-5/+5
| | | | | Also improved reporting messages. Ref.: http://forum.mc-server.org/showthread.php?tid=2256
* Moved variables into scope, removed unused variables and fixed variablesLukas Pioch2015-12-179-19/+10
|
* Merge pull request #2753 from cuberite/pathFixSafwat Halaby2015-12-164-37/+109
|\ | | | | Path fix
| * Changed cPath to have a reset method.tycho2015-12-164-38/+103
| | | | | | | | | | | | Also reverts "Changed raw cPath to an unique_ptr, fixes memory leak" This reverts commit 1515d37684b469f212bb9858cca6128d74e591b6.
| * Delete copy and move constructors from cPathtycho2015-12-151-0/+7
| | | | | | | | cPath is not safe to copy or move due to pointers into the std::map m_Map.
* | allow horse control (still quite buggy)Gargaj2015-12-153-2/+29
|/
* Fixed warning regarding an uninitialized valueJulian Laubstein2015-12-151-1/+1
|
* Fixed warning regarding an uninitialized valueJulian Laubstein2015-12-151-1/+1
|
* Changed raw cPath to an unique_ptr, fixes memory leakLukas Pioch2015-12-152-9/+9
|
* Merge pull request #2638 from Gargaj/masterworktycho2015-12-1414-128/+284
|\ | | | | Implement block heights + adapt ground checks
| * blockheight mechanismGargaj2015-12-1314-128/+284
| |
* | Strip meta from hopper on converting to pickupJulian Laubstein2015-12-131-0/+6
|/
* Set overgrown wart age to 3Safwat Halaby2015-12-131-1/+5
|
* allow use failures to propagate from the entity/block to the playerGargaj2015-12-1354-76/+118
|
* snow golems are "neutral"Gargaj2015-12-131-5/+5
|
* sheep color inheritanceGargaj2015-12-134-1/+64
|
* Remove stray "return"Safwat Halaby2015-12-131-1/+0
|
* Fixed mobs attacking Creative Mode playersSafwat Halaby2015-12-132-11/+15
|
* Decoupled cMonster and path recalc logic, re-implemented recalcSafwat Halaby2015-12-138-335/+486
|
* Stop pathfinding over cobble wallsGargaj2015-12-131-0/+1
| | | Also 1.5 blocks high, shouldn't pathfind over it.
* Nether wart only ages to 3Gargaj2015-12-121-2/+2
| | | See http://minecraft.gamepedia.com/Nether_Wart
* Test for correct coordinates when fishingGargaj2015-12-102-1/+2
| | | | Fun fact: this was able to actually deadlock the server depending on where you were standing :)
* Fixed opposite condition in OreNests finisher.Mattes D2015-12-091-2/+2
|
* stop creepers from exploding even if they just diedGargaj2015-12-081-1/+1
|
* Small spelling issues fixedJulian Laubstein2015-12-081-3/+3
|
* Tilling dirt should send block updateGargaj2015-12-061-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.
* Spawn chickens from eggs as babiesGargaj2015-12-051-5/+5
| | | This actually works now with the breeding patch (would also close https://github.com/cuberite/cuberite/pull/2366)
* fix wolf collarsGargaj2015-12-031-2/+2
| | | | I don't know why this had an inversion but it consistently made the wrong collar color (i.e. yellow dye made the collar blue)
* Merge pull request #2707 from Gargaj/rabbitstewMattes D2015-12-034-56/+25
|\ | | | | Merge cItemMushroomSoupHandler into cItemFoodHandler
| * Merge mushroom soup into generic food handlerGargaj2015-12-034-56/+25
| | | | | | | | ...and fix eating the bowl when eating rabbit stew
* | Use C++11 auto instead of per-platform types.Mattes D2015-12-031-8/+1
|/ | | | Closes #2686.
* Merge pull request #2699 from SafwatHalaby/breedDocsMattes D2015-12-032-5/+25
|\ | | | | Breeding documentation
| * Added documentation for breeding codeSafwat Halaby2015-11-302-5/+25
| |
* | Changed Nether defaults to use PieceStructures.Mattes D2015-12-011-1/+1
| |
* | Added more details to the cubeset format documentation.Mattes D2015-12-011-2/+2
| |
* | Added PieceStructures generator.Mattes D2015-12-0145-11822/+1952
|/
* implement breedingGargaj2015-11-2911-19/+209
|
* Normalized OrePockets generator config names.Mattes D2015-11-271-2/+2
| | | | All INI values use AllInitialCapsStyle, no underscores.
* OrePockets finisher is now configurable.Mattes D2015-11-254-26/+127
|
* Added OrePockets and DirtPockets finish gens.Mattes D2015-11-255-267/+548
|
* fix escaped characters in signs (fixes #1736, fixes #2170)Gargaj2015-11-241-1/+6
|
* Add enum for Sound and Particle EffectsDave Tucker2015-11-2431-56/+124
| | | | | | Fixes #2603 Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
* change from single followable item to multipleGargaj2015-11-2310-12/+65
|
* Fixed display of helpmessageJulian Laubstein2015-11-231-1/+1
|
* Changed static_cast to FloorCJulian Laubstein2015-11-231-1/+1
|
* Adjusted height validation using cChunkDef::IsValidHeight()Julian Laubstein2015-11-233-11/+11
|
* Added dash to helpstring outputJulian Laubstein2015-11-231-1/+1
|
* Removed dashes in help messages for consistencyJulian Laubstein2015-11-231-8/+8
|
* Added cChunkDef::IsValidWidth()Julian Laubstein2015-11-231-1/+6
|
* Revert "Changed description to "Cuberite - Minecraft in C++!""Safwat Halaby2015-11-221-1/+1
| | | | This reverts commit f4406c047e0d1d11631e350fa61ad04d92b950ba.
* Changed description to "Cuberite - Minecraft in C++!"Safwat Halaby2015-11-201-1/+1
|
* Include execinfo.h only on __GLIBC__Thomas Boerger2015-11-191-1/+3
|
* Define stacktrace functions only if __GLIBC__ is definedThomas Boerger2015-11-191-5/+7
|
* Check for __GLIBC__ to detect correct strerror_r versionThomas Boerger2015-11-191-1/+1
|
* changed mob age from char to intJulian Laubstein2015-11-164-41/+92
|
* Improved spawn location calculations.samoatesgames2015-11-133-72/+175
| | | | | | | | | | - Supports Overworld and Nether spawns. - Supports spawning under objects, but still above ground (e.g. under the leaves of a tree). - Protects against spawning in oceans. - Protects against spawning in water. - Uses a radial search about the origin, rather than a linear. - Correctly calculates Nether spawn on spawn world generation (fixes: cuberite#2548) - Fixes a bug in CheckPlayerSpawnPoint() where the X offset was used in both the X and Z coords (BLOCKTYPE BlockType = GetBlock(a_PosX + Coords[i].x, a_PosY, a_PosZ + Coords[i].x);)
* Blocks outside the world are never solidworktycho2015-11-131-0/+4
| | | Fixes #2539
* Avoid reading out of boundsGargaj2015-11-101-4/+14
| | | | as per https://github.com/cuberite/cuberite/pull/2630#discussion_r44377411
* Added cChunkDef::IsValidHeight()Julian Laubstein2015-11-101-0/+6
|
* Avoid division by zeroGargaj2015-11-101-1/+1
| | | | It won't do much because direction will still be a nullvector, but it at least avoids a CPU spike.
* fix shallow water + add future code for liquid fall dampeningGargaj2015-11-101-3/+11
|
* remove slab from inventory when using it on another slab (fixes #2610)Gargaj2015-11-091-3/+27
|
* idle/deflating creeper should be -1Gargaj2015-11-092-2/+2
| | | | according to http://wiki.vg/Entities#Creeper
* Add comment to Attack() return valuesGargaj2015-11-091-0/+4
|
* neutral mobs shouldn't chase the player unless aggro'dGargaj2015-11-083-1/+8
| | | | | | | | | | | | | | | | | code style neutral mobs shouldn't chase the player unless aggro'd neutral mobs shouldn't chase the player unless aggro'd Merge branch 'chilloutyo' of github.com:Gargaj/cuberite into chilloutyo Conflicts: src/Mobs/PassiveAggressiveMonster.h code style Merge branch 'chilloutyo' of github.com:Gargaj/cuberite into chilloutyo
* Fix memory leakworktycho2015-11-081-1/+1
| | | Fixes CID 132249
* Merge pull request #2615 from Gargaj/cavespider-attackworktycho2015-11-0816-27/+48
|\ | | | | Fix cavespider poisoning even if attack is in cooldown
| * fix cavespider poisoning even if attack is in cooldownGargaj2015-11-0816-27/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | make attack function more responsive fix cavespider poisoning even if attack is in cooldown make attack function more responsive Merge branch 'cavespider-attack' of github.com:Gargaj/cuberite into cavespider-attack code style fix cavespider poisoning even if attack is in cooldown make attack function more responsive fix cavespider poisoning even if attack is in cooldown make attack function more responsive Merge branch 'cavespider-attack' of github.com:Gargaj/cuberite into cavespider-attack code style Merge branch 'cavespider-attack' of github.com:Gargaj/cuberite into cavespider-attack Merge branch 'master' into cavespider-attack Merge branch 'master' into cavespider-attack fix cavespider poisoning even if attack is in cooldown make attack function more responsive fix cavespider poisoning even if attack is in cooldown make attack function more responsive Merge branch 'cavespider-attack' of github.com:Gargaj/cuberite into cavespider-attack code style fix cavespider poisoning even if attack is in cooldown make attack function more responsive fix cavespider poisoning even if attack is in cooldown make attack function more responsive Merge branch 'cavespider-attack' of github.com:Gargaj/cuberite into cavespider-attack code style Merge branch 'cavespider-attack' of github.com:Gargaj/cuberite into cavespider-attack Merge branch 'master' into cavespider-attack Merge branch 'master' into cavespider-attack Merge branch 'cavespider-attack' of github.com:Gargaj/cuberite into cavespider-attack
* | Fix chicken flyingGargaj2015-11-081-0/+2
| | | | | | | | | | | | | | | | | | | | The gravity might not be correct but my rough timing (with a stopwatch) seems to be close. Merge branch 'master' into patch-1 Merge branch 'master' into patch-1 Merge branch 'master' into patch-1
* | add sound to stone pressure platesGargaj2015-11-081-0/+9
|/ | | | add sound to stone pressure plates
* Only send creeper updates when there is a changeGargaj2015-11-071-3/+6
| | | Otherwise this keeps spamming the metadata packet for all the creepers on the server.
* Merge pull request #2609 from bibo38/slimeblockworktycho2015-11-076-129/+238
|\ | | | | Slimeblock implementation
| * Refactored code to use vectors in the cPistonHandler classbibo382015-11-073-52/+42
| |
| * Added some code improvementsbibo382015-11-072-22/+42
| |
| * Renamed GetDirectionVec into VectorFromMetaData to improve code readability.bibo382015-11-072-6/+6
| |
| * Commented the GetDirectionVec methodbibo382015-11-071-0/+3
| |
| * Fixed the style problems and added some commentsbibo382015-11-072-6/+18
| |
| * Removed unused CanPull methodbibo382015-11-071-11/+0
| |
| * Extracted block moving code into a seperate methodbibo382015-11-072-77/+52
| |
| * Replaced the usage of pistonMeta with a direction vector to allow better meta value abstractionbibo382015-11-072-73/+63
| |
| * Fixed pulling/pushing of breakable blocks, which are not required to be movedbibo382015-11-071-3/+20
| |
| * Implemented the basic slime block pullingbibo382015-11-071-17/+62
| |
| * Implemented the SlimeBlock into the CanPush method to allow slimeblocks to work correctly when pushedbibo382015-11-071-15/+26
| |
| * Piston extension now works with the new recursive CanPushBlock method.bibo382015-11-071-36/+41
| |
| * Added the CanPushBlock method for the piston push check.bibo382015-11-072-24/+41
| | | | | | | | This allows the recursive check for blocks to push, which is needed to implement the slime blocks into the piston system.
| * Implemented the slime block dropping behaviour.bibo382015-11-073-0/+35
| | | | | | | | Fixes #2530
* | fix pressure plate power levelsGargaj2015-11-071-4/+4
|/
* Merge pull request #2618 from Gargaj/deadmeansdeadworktycho2015-11-071-1/+1
|\ | | | | Fix mobs firing when already dead
| * don't attack if deadGargaj2015-11-071-1/+1
| |
* | code styleGargaj2015-11-071-3/+3
| |
* | implement pushing/shoving based on @NiLSPACE's suggestionGargaj2015-11-071-0/+36
|/
* chickens don't take fall damageGargaj2015-11-062-0/+6
|
* Merge pull request #2593 from cuberite/endereggJulian Laubstein2015-11-052-92/+103
|\ | | | | Destroy an ender crystal when hit by an egg.
| * Destroy an ender crystal, damage a dragon when hit by an egg.Alexander Harkness2015-11-052-92/+103
| |
* | MSVC: Reviewed warnings, disabled a useless one, re-enabled an old one.Mattes D2015-11-051-3/+1
| |
* | Fix being set on fire while directly being under lavaGargaj2015-11-041-1/+1
| | | | | | Right now you will be on fire if there is a block of lava right above you, even if it doesn't pour down.
* | Implemented brewingLukas Pioch2015-11-0334-9/+1523
| |
* | Use an unreserved qualifier for thread local storageCengiz Can2015-11-031-9/+11
| | | | | | | | Fixes #1906
* | Fixed failed assertationbibo382015-11-031-20/+23
| | | | | | | | | | This was caused by a monster with a negative Y-axis. Fixes #2336
* | Merge pull request #2591 from cuberite/chunkprepare-deadlockworktycho2015-11-031-1/+4
|\ \ | | | | | | Fix deadlock, resolves #2521
| * | Fix deadlock, resolves #2521Alexander Harkness2015-11-021-1/+4
| |/
* / Examined a fix for #2588Tiger Wang2015-11-021-0/+6
|/
* Implemented the Water Breathing Potion functionality.bibo382015-11-012-0/+16
| | | | Fixes #2556
* Implemented the FireResistence potion effects.bibo382015-10-315-6/+34
| | | | | This not only provides fire resistence, but also prevents blaze fireballs. See #2556
* Debug mode: Fixed assertion, if player below y < 0Lukas Pioch2015-10-311-3/+3
|
* Changed for-loop iterator in File.cpp to a reference type to reduce object copying and fix the clang build.bibo382015-10-301-1/+1
| | | | Fixes #2580
* Added cave spider to MobSpawnerLukas Pioch2015-10-291-0/+11
|
* Revert "Pressure plate fix"Mattes D2015-10-291-45/+14
|
* fixed pressure plate bugsSchwertspize2015-10-281-14/+45
|
* Fix wrong teleport permission. (solves #2369)Alexander Harkness2015-10-281-4/+4
|
* Update Loops required for JsonCPPLukas Pioch2015-10-264-12/+12
|
* Fixed a crash when sending messages too early after connection.Mattes D2015-10-211-1/+12
|
* ReTyped block idsJulian Laubstein2015-10-151-7/+12
|
* Removed unused typedefworktycho2015-10-121-1/+0
|
* Fixed a possible crash in HTTPS server.Mattes D2015-10-081-0/+2
|
* StyleCheck: Check spaces around ==, <=, >=Mattes D2015-10-082-5/+13
|
* Fixed bindings for cTCPLink:StartTLSClient().Mattes D2015-10-081-12/+2
| | | | The bindings used to enforce client cert, now it's optional.
* Merge pull request #2528 from OdnetninI/masterTiger Wang2015-10-051-0/+1
|\ | | | | Fixed flight in Spectator Mode
| * Spectator Mode doesn't fly[FIX]OdnetninI2015-10-051-0/+1
| |
* | Generator: Fixed missing hitbox assignment.Mattes D2015-10-052-0/+4
|/ | | | This had caused village houses to generate too close to each other.
* Improved the data structure for storing loaded chunkstycho2015-10-052-8/+8
| | | | Should significantly increase the performance of deciding which chunks to stream
* Fixed a race condition between chunk loader and generator.Mattes D2015-10-0410-65/+45
| | | | | | When using ChunkWorx to generate multiple chunks, the server would sometimes fail an assert because it would generate a chunk even when it was successfully loaded. This was caused by chunks queued in cWorld's m_SetChunkDataQueue and thus being marked as "InQueue" although they were already loaded. Solved by adding a new parameter to chunk coord callbacks specifying whether the operation succeeded or failed, and using that instead of the chunk presence flag to decide whether to generate or not.
* Improved types of utf 16 stringstycho2015-10-023-13/+13
|
* Remove a pair of unused broken functionstycho2015-10-022-38/+0
|
* The bottom layer cannot hold a valid spawn pointworktycho2015-10-011-0/+6
| | | | Fixes #2510
* Added LuaState tracker and memory stats logging.Mattes D2015-09-283-0/+118
|
* Made Lua API check strings strictly.Mattes D2015-09-281-1/+4
| | | | Previously nil was accepted as a string in cLuaState::CheckParamString(), now it's reported as an error.
* Merge pull request #2498 from cuberite/UnicodeOnWindowsTiger Wang2015-09-283-12/+12
|\ | | | | Enabled Unicode support for Windows
| * Added the _UNICODE flag on WindowsTiger Wang2015-09-263-12/+12
| |
* | Partial revert of #2446Safwat Halaby2015-09-282-7/+53
| |
* | Added weather intervals to world.ini settings.Mattes D2015-09-282-4/+49
| |
* | Disabled squids and Guardians pathfinding, #2460Safwat Halaby2015-09-272-2/+2
| |
* | Merge pull request #2465 from electromatter/masterworktycho2015-09-271-0/+14
|\ \ | | | | | | Added BungeeCord support for Protocol18x
| * \ Merge branch 'master' into masterelectromatter2015-09-2230-956/+324
| |\ \
| * | | added bungeecord support for protocol18xEric Chai2015-09-061-0/+14
| | | |
* | | | Extended and fixed the cFile API.Mattes D2015-09-265-99/+605
| | | |
* | | | Prepared ScheduleTask for threading refactorTiger Wang2015-09-254-298/+55
| |_|/ |/| | | | | | | | | | | * Llama-ified and condensed Schedule/QueueTask - Removed hackery done with piston animations
* | | Maked it compileable for clang-3.7Lukas Pioch2015-09-258-20/+20
| | |
* | | Lilypads drop when not on source water.Mattes D2015-09-251-0/+16
| | | | | | | | | | | | | | | Lilypad blocks now break and drop as items when the block below them changes to non-water or non-source water. Fixes #2404.
* | | Namechange to CuberiteMattes D2015-09-2521-38/+38
| | |
* | | fixed casttycho2015-09-241-1/+1
| | |
* | | Add new "ForEach" function: ForEachLoadedChunk.tycho2015-09-245-1/+98
| |/ |/|
* | Refactored cProtocol Chat handlingtycho2015-09-218-227/+32
| |
* | Ignore Sigpipetycho2015-09-191-0/+4
| |
* | Fixed wrong assumtion regarding RemoveClienttycho2015-09-192-4/+6
| | | | | | | | Remove client can be called with a client that is not present in the chunk
* | Fixed erasetycho2015-09-191-1/+1
| |
* | Removed a significant performance issue.tycho2015-09-182-82/+71
| | | | | | | | | | | | Iterating through the list of clients in chunks was taking up a significant amount of time with larger numbers of clients due to processor stalls. Changing the data structure to a vector fixed the issue.
* | Added CircleCI for stylechecking.Mattes D2015-09-1710-523/+57
| | | | | | | | This will allow us to remove the stylecheck from Travis builds, making them a bit faster, and having fast style checks
* | Increase robustness of the logging subsystemtycho2015-09-159-121/+155
| |
* | Fixed flint drop rates from 1/30 to 1/10 to match the wiki.David Erbelding2015-09-141-1/+1
| |
* | Fixed Lua output folders for Windows builds.Mattes D2015-09-081-2/+2
|/ | | | Fixes #2468.
* Renamed output directory to ServerMattes D2015-09-051-8/+8
|
* Fixes #2485Tiger Wang2015-09-021-1/+0
|
* Include signal.h jointly for POSIX systemsMatti Hanninen2015-08-271-5/+7
| | | | | Otherwise, for example, FreeBSD the build fails due to SIGKILL not being around.
* Merge pull request #2446 from cuberite/asyncpathfinderTiger Wang2015-08-274-101/+25
|\ | | | | Fixed a position bug in the pathfinder
| * Fixed a position bug in the pathfinderTiger Wang2015-08-224-101/+25
| |
* | Small fix for cEventTiger Wang2015-08-272-8/+13
| | | | | | | | | | Don't bother using atomics since a synchronisation primitive is already being used.
* | Merge pull request #2450 from nicodinh/patch-1Mattes D2015-08-251-1/+1
|\ \ | | | | | | Fixed false-positive error message in cRankManager::SetRankVisuals().
| * | Update cRankManager::SetRankVisualsAZARI Nicolas2015-08-251-1/+1
| | |
* | | Fix clang compile errorTheo Tosini2015-08-241-1/+1
|/ / | | | | | | Clang would previously fail on debug builds due to the use of an old-style cast.
* / Removed unused functionTiger Wang2015-08-222-23/+0
|/ | | | * Fixes #2444
* Cast UINT to WORD to appease warningTiger Wang2015-08-221-6/+5
| | | | * Additional minor cleanups
* Merge pull request #2427 from cuberite/fixesTiger Wang2015-08-225-195/+235
|\ | | | | Fixed and improved restarting
| * Fixed and improved restartingTiger Wang2015-08-205-195/+235
| | | | | | | | | | Restarts are now an actual, close-as-possible to application exit+reopen.
* | Namespace qualify std::abs, use explicit castMatti Hänninen2015-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | Without 'std' namespace qualification Clang (at least Apple Clang 6.1) seems to resolve 'abs' to the 'abs' function in 'cstdlib'. This in turn triggers the 'absolute-value' warning which in turn is promoted to error. Implicit casts trigger 'old-style-cast' warnings which are promoted to errors.
* | Merge pull request #2380 from cuberite/travisTiger Wang2015-08-203-4/+4
|\ \ | | | | | | Use container-based infrastructure
| * | Use container-based infrastructure for TravisTiger Wang2015-08-203-4/+4
| |/
* / Fixed food drain bugsTiger Wang2015-08-208-317/+162
|/
* * Logic for handling plant growth has been centralized into cBlockPlant, and all growable plants now inherit from it.Samuel Barney2015-08-1911-30/+256
| | | | * Blocks now have an effect upon plant growth, just like in vanilla.
* Some warning fixesJulian Laubstein2015-08-189-39/+70
|
* Fix old style casts and implicit conversionsMatti Hänninen2015-08-1218-145/+153
|
* Checked LeakFinder in MSVC2015, enabled support for it.Mattes D2015-08-102-6/+7
|
* MSVC: Ignore the deprecation warning in 3rd party StackWalker.Mattes D2015-08-091-0/+1
|
* Flush log file when a warning or error message is output.Mattes D2015-08-081-0/+7
| | | | Fixes #2419.
* Refactored code to use cLuaStateSamuel Barney2015-08-072-34/+29
| | | | Fixes #2377.
* Fixed Iron DoorNicholas W2015-08-011-1/+6
|
* Unified the doxy-comment format.Mattes D2015-07-31114-850/+869
|
* Chunks that fail to load are offloaded to extra files.Mattes D2015-07-312-61/+107
| | | | Ref.: #1970
* Added reason parameter to load failures.Mattes D2015-07-311-13/+13
|
* Moved AString reading hack to cFile.Mattes D2015-07-313-24/+49
|
* Silenced and fixed many warning messages across multiple files.Samuel Barney2015-07-29117-1119/+1103
|
* Merge pull request #2376 from mjhanninen/fix-freebsd-buildMattes D2015-07-291-0/+1
|\ | | | | Fix FreeBSD build
| * Fix FreeBSD build broken by strict compiler checkMatti Hänninen2015-07-201-0/+1
| | | | | | | | | | | | Downgrade tautological-compare to warning to let the build pass on FreeBSD 10.0. Note that I wasn't able to reproduce the problem on OS X Clang; probably due to Clang version differences.
* | Fixed custom recipes result clientside bug.Mattes D2015-07-261-0/+8
| | | | | | | | Fixes #2345.
* | Fixed cNetworkSingleton's HasTerminated flag.Mattes D2015-07-231-1/+4
|/ | | | Should fix random failures in Google-test.
* Merge pull request #2362 from scribblemaniac/fix-redstoneTiger Wang2015-07-181-2/+4
|\ | | | | Fixed redstone issue
| * Fixed redstone issuescribblemaniac2015-07-171-2/+4
| | | | | | | | | | Fixed issue where glowstone blocks would block power transmission in some situations.
* | Added documentation for GetLargeTreeAdjustmentSamuel Barney2015-07-171-0/+1
| |
* | Added Rabbit Metadata values.bibo382015-07-175-54/+109
| | | | | | | | | | Added the Rabbit Types and the MoreCarrotTicks value. Types are selected randomly on creation. Fixes #1867
* | Merge pull request #2363 from scribblemaniac/improve-spider-aiTiger Wang2015-07-163-1/+44
|\ \ | | | | | | Improved spider AI
| * | Improved spider AIscribblemaniac2015-07-163-1/+44
| |/ | | | | | | Fixes #2335
* | Merge pull request #2364 from hallucino/ageable-mobsTiger Wang2015-07-1613-17/+24
|\ \ | | | | | | Spawn baby mobs
| * | Spawn baby mobshallucino2015-07-1613-17/+24
| | |
* | | Merge pull request #2360 from bibo38/waterfixJulian Laubstein2015-07-161-3/+6
|\ \ \ | |/ / |/| | Now Water sources will also be created on top of existing water sources.
| * | Now Water sources will also be created on top of existing water sources.bibo382015-07-151-3/+6
| | | | | | | | | | | | | | | See also on http://minecraft.gamepedia.com/Water#Source_blocks Fixes #2097
* | | Merge pull request #2348 from bibo38/customnameTiger Wang2015-07-152-10/+27
|\ \ \ | | | | | | | | Added CustomName and Health to sended Metadata of Monsters.
| * | | Added CustomName and Health to sended Metadata of Monsters.bibo382015-07-152-10/+27
| |/ / | | | | | | | | | Fixes #2113
* | | Merge pull request #2353 from SamJBarney/DyedArmorJulian Laubstein2015-07-159-6/+382
|\ \ \ | |_|/ |/| | Implements Dyed Leather Armor
| * | Leather Armor can now be dyed.Samuel Barney2015-07-159-6/+382
| | | | | | | | | | | | * Created new color class to handle dye-related coloring
* | | Merge pull request #2350 from SamJBarney/PeonySnowFixJulian Laubstein2015-07-151-1/+7
|\ \ \ | | | | | | | | Fixed Tall Grass placement
| * | | Fixed tall grass trying to be placed in cold biomes.Samuel Barney2015-07-151-1/+7
| | | |
* | | | Merge pull request #2349 from cuberite/mapsTiger Wang2015-07-15103-925/+924
|\ \ \ \ | | | | | | | | | | Improved maps
| * | | | Improved mapsTiger Wang2015-07-14103-925/+924
| | | | |
* | | | | Merge pull request #2036 from cuberite/sign-metamirrorAlexander Harkness2015-07-151-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Should Fix sign flipping.
| * | | | | Fixed bad logic.Alexander Harkness2015-05-161-1/+1
| | | | | |
| * | | | | Should Fix sign flipping.Alexander Harkness2015-05-161-2/+2
| | | | | | | | | | | | | | | | | | Fixes #1118
* | | | | | Merge pull request #2340 from hallucino/ageable-mobsNiLSPACE2015-07-155-28/+156
|\ \ \ \ \ \ | | | | | | | | | | | | | | Support ageable mobs
| * | | | | | Support ageable mobsHallucino2015-07-145-28/+156
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | Move ageable stuff in Monster directly
* | | | | | Merge pull request #2356 from LO1ZB/ImproveHungerJulian Laubstein2015-07-141-11/+10
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | Fix food drain on movement.
| * | | | | Fix food drain on movement.LO1ZB2015-07-141-11/+10
| | | | | |
* | | | | | Merge pull request #2352 from mmdk95/masterTiger Wang2015-07-141-0/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix duping doors
| * | | | | | Fix duping doors (#1327)mmdk952015-07-141-0/+4
| | |_|_|/ / | |/| | | |
* | | | | | Merge pull request #2346 from SamJBarney/TreeGrowthUpdateJulian Laubstein2015-07-144-14/+246
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Sapling Growth Update
| * | | | | Sapling Growth UpdateSamuel Barney2015-07-134-14/+246
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Growth has been slowed down * Saplings do not grow if they do not have enough space to grow * Saplings do not grow unless the light level is 9 or above * Dark Oak doesn't grow unless it is in a 2x2 Jungle Trees now will grow into a large tree when 2x2 saplings are used.
* | | | / Torches can now be placed on top of upside down stairs.Samuel Barney2015-07-141-0/+16
| |_|_|/ |/| | |
* | | | Switched from using std::max(std::min()) to using ClampSamuel Barney2015-07-131-2/+2
|/ / /
* | | Merge pull request #2344 from bibo38/make_ptrJulian Laubstein2015-07-133-69/+69
|\ \ \ | | | | | | | | Changed allocation of smart pointers via make_xxx
| * | | Changing the shared_ptr/unique_ptr constructors to the make_shared/make_unique functionsbibo382015-07-123-69/+69
| |/ /
* / / Fixed DropSpenser sound #2333mmdk952015-07-121-2/+2
|/ /
* | Merge pull request #2330 from cuberite/libraryupdateJulian Laubstein2015-07-122-1/+3
|\ \ | | | | | | Library update
| * | Added JsonCPP library location to search pathsTiger Wang2015-07-121-2/+1
| | | | | | | | | | | | | | | * Fixed '-dirty' submodule changes Probably fixes an issue somewhere too?
| * | Updated and submodularised JsonCPPTiger Wang2015-07-102-1/+4
| | | | | | | | | | | | | | | Conflicts: lib/jsoncpp
* | | Fixed misplaced parensSamuel Barney2015-07-092-5/+5
| | |
* | | Fixes compilation failures on MacOSX 10.10Samuel Barney2015-07-097-88/+88
|/ / | | | | | | | | * Replace old c-style casts with c++ casts * Added `-Wno-error=old-style-cast` to Protocol18x.cpp
* | Network: Fixed ServerHandle's address formatting.Mattes D2015-07-071-2/+2
| |
* | (Ender) Chests are obstructed by opaque blocks.Nounours Heureux2015-07-072-15/+13
| |
* | Fixed warnings generated by 64-bit MSVC.Mattes D2015-07-078-32/+32
| |
* | Squashed Bonemeal Plant Growth UpdateSamuel Barney2015-07-061-13/+85
| | | | | | | | | | | | * Fixed Crops growing to maturity with only 1 bonemeal * Trees now go through growth stages with bonemeal, as they do in Vanilla Minecraft
* | Merge pull request #2224 from cuberite/ChunkQueueCollapsingworktycho2015-07-0415-330/+251
|\ \ | | | | | | Chunk queue collapsing: MK II
| * | Fixed minor errors in Tycho's codeTiger Wang2015-06-227-92/+83
| | | | | | | | | | | | Everything should work now :)
| * | Reinstate "Chunk queue collapsing"Tiger Wang2015-06-1011-261/+191
| | | | | | | | | | | | | | | This reinstates commit f36acb683594daff5af3971dcbe3c3a171628b78 and reverts commit adfbc42c021e1bcfcb355933c0fd784306ce0e18.
* | | Moved grabbing the light value to after the transparency check.Samuel Barney2015-07-031-3/+4
| | |
* | | Added missing parensSamuel Barney2015-07-031-1/+1
| | |
* | | Grass now only dies if it has an opaque block above it.Samuel Barney2015-07-031-4/+7
| | | | | | | | | | | | Grass only spreads to a dirt block if the light level is above 4 and the block above it is transparent.
* | | Farmland is now listed as an opaque block.Samuel Barney2015-07-031-2/+1
| | | | | | | | | | | | Changed spread light falloff for farmland to what it was originally.
* | | Added neighbor specification in the OnNeighborChanged() block callback.Mattes D2015-07-016-45/+64
| | | | | | | | | | | | | | | Fixes the OnNeighborChanged endless recursion with large melon / pumpkin fields. Fixes #2213.
* | | BlockArea: Fixed a crash with areas higher than chunk height.Mattes D2015-06-302-2/+8
| | |
* | | Added a size check for portals.STRWarrior2015-06-284-0/+48
| | | | | | | | | | | | | | | | | | Made the portal size configurable Alpha-sorted SetXYZNetherPortalXYZ functions
* | | use atomic for state, to avoid torn readstycho2015-06-271-2/+2
| | |
* | | Now Horses spawn with correct data values.bibo382015-06-261-3/+3
| | | | | | | | | | | | | | | | | | | | | The max-value of style is 4, of color is 6. See http://wiki.vg/Entities#Horse Also based on the if, the max value of HorseType is 7. Bugfix #2259
* | | Merge pull request #2241 from lkolbly/masterworktycho2015-06-266-21/+40
|\ \ \ | | | | | | | | Work on NetherPortalScanner. Setup portal scanner to reset PortalCool…
| * | | Work on NetherPortalScanner. Setup portal scanner to reset PortalCooldown. Changed where player is spawned. Added a_InitSpawn flag to CreateAndInitializeWorld.Lane Kolbly2015-06-136-21/+40
| | | |
* | | | Merge pull request #2282 from Haxi52/button-fixesworktycho2015-06-255-10/+58
|\ \ \ \ | | | | | | | | | | Button fixes
| * | | | Buttons no longer click on when already on. Buttons now play sound when clicking off.Hax522015-06-245-10/+58
| | | | |
* | | | | Merge pull request #2290 from bibo38/mousefixMattes D2015-06-252-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Fixed Middle-Click Button in the ClickWindow-Packet.
| * | | | | Fixed Middle-Click Button in the ClickWindow-Packet.bibo382015-06-252-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See http://wiki.vg/Protocol#Click_Window The MiddleClick has the button 2 and not 0. Now you can max an item in an inventory in Creative mode, without inventory desync. Bugfix #2260
* | | | | | Doors now get placed on the server-side.bibo382015-06-251-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
* | | | | | Merge pull request #2288 from cuberite/melonFixMattes D2015-06-241-0/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | Call Neighbour changed handlers when a melon is created
| * | | | | | Call Neighbour changed handlers when a melon is createdtycho2015-06-231-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Should prevent cascading farmland updates on breaking melons
* | | | | | | Added a forgotten break in cHangingEntity constructor.Mattes D2015-06-241-0/+1
| |/ / / / / |/| | | | | | | | | | | | | | | | | This had caused loading the cHangingEntity to fail in debug builds.
* | | | | | Merge pull request #2284 from cuberite/FixBiomeGenworktycho2015-06-232-3/+6
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Generate biomes when pregenerating heights through CompositedHeiGen.
| * | | | | Generate biomes when pregenerating heights through CompositedHeiGen.Mattes D2015-06-232-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #2283.
* | | | | | Fixed melon metadata when growing from stem.Mattes D2015-06-231-6/+9
| | | | | |
* | | | | | Fixed right-click with bonemeal.Mattes D2015-06-231-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).
* / / / / Rebased version of CodeSamuel Barney2015-06-228-55/+17
|/ / / /
* | | | Refactored block placement workflow.Mattes D2015-06-217-85/+156
| | | | | | | | | | | | | | | | Multi-blocks can now use the default OnPlayerPlaced() callback in cItemHandler.
* | | | Added basic support for loading village prefabs from files.Mattes D2015-06-2018-17244/+264
| | | |
* | | | Merge pull request #2255 from cuberite/LoadablePiecesworktycho2015-06-1913-71/+806
|\ \ \ \ | | | | | | | | | | Loadable pieces
| * | | | Externalized cPrefabPiecePool self-test.Mattes D2015-06-198-52/+37
| | | | |
| * | | | PrefabPiecePool: Added loading from cubeset file.Mattes D2015-06-184-3/+589
| | | | |
| * | | | LuaState: Added support for config-style usage.Mattes D2015-06-173-43/+207
| | | | | | | | | | | | | | | | | | | | | | | | | Globals and table values can be queried from the Lua state easily. Use perfect forwarding.
* | | | | Check the return value of InflateStringTiger Wang2015-06-181-2/+1
|/ / / / | | | | | | | | | | | | Fixes #2256
* | | | Fixes #2245Tiger Wang2015-06-171-1/+1
| | | | | | | | | | | | | | | | Whoops :/
* | | | Removed version 29 serilizationtycho2015-06-162-62/+0
| | | | | | | | | | | | | | | | This has been unused since support for <1.7 has been dropped.
* | | | Fixed overridetycho2015-06-151-1/+1
| | | | | | | | | | | | | | | | This was causing a compile error in clang 3.6
* | | | Merge pull request #2244 from martindev2/#2092-TNT-FireTiger Wang2015-06-141-0/+5
|\ \ \ \ | | | | | | | | | | Fix block placement over fire
| * | | | implemented DoesIgnoreBuildCollision on BlockFire to allow blocks to be placed on topMartin McArthur2015-06-141-0/+5
| | | | |
* | | | | Fixed tigers format stringworktycho2015-06-141-2/+2
|/ / / /
* / / / Fixed log files' timestampsTiger Wang2015-06-143-12/+12
|/ / / | | | | | | | | | | | | Also made Release mode log less technical information about the world storage threads.
* | | Merge pull request #2237 from lkolbly/masterworktycho2015-06-131-1/+1
|\ \ \ | | | | | | | | Fixing how village doors are generated in 1.8.
| * | | Fixed typo in BlockDoor.hLane Kolbly2015-06-131-1/+1
| | | |
* | | | Merge pull request #2240 from cuberite/UpdatedPrefabsNiLSPACE2015-06-136-488/+465
|\ \ \ \ | | | | | | | | | | Updated prefabs from the Gallery server.
| * | | | Updated prefabs from the Gallery server.Mattes D2015-06-136-488/+465
| | | | |
* | | | | Added HOOK_KILLEDNounours Heureux2015-06-137-6/+73
|/ / / /
* / / / NetherPortalScanner: Fixed type conversion warnings.Mattes D2015-06-131-2/+2
|/ / /
* | | If defined, not just if.Alexander Harkness2015-06-121-1/+1
| | |
* | | Fixed build error on LinuxAlexander Harkness2015-06-121-1/+1
| | |
* | | SelfTests are registered and executed after logging framework init.Mattes D2015-06-1111-33/+198
|/ / | | | | | | Fixes #2228.
* | Merge pull request #2162 from lkolbly/masterMattes D2015-06-108-20/+431
|\ \ | | | | | | Nether Portal Jumping & Creation Code
| * | Implemented nether portal scanning code.Lane Kolbly2015-06-108-20/+431
| | |
* | | Merge pull request #2144 from mc-server/comparatorsAlexander Harkness2015-06-0910-662/+806
|\ \ \ | |/ / |/| | Redstone improvements [SEE DESC]
| * | Added moar commentsTiger Wang2015-06-072-13/+13
| | |
| * | Vector hasher is now a separate classTiger Wang2015-06-073-12/+30
| | |
| * | Use emplace to construct structuresTiger Wang2015-06-062-54/+61
| | |
| * | Improved link unpowering speedTiger Wang2015-06-061-48/+41
| | | | | | | | | | | | Also fixed compile errors
| * | Changed appropriate containers to unordered_mapTiger Wang2015-06-065-203/+92
| | | | | | | | | | | | | | | | | | Thanks to @worktycho for guidance! * Potential speed improvements
| * | Improved link power behaviourTiger Wang2015-06-062-163/+119
| | |
| * | Improved wires and repeatersTiger Wang2015-06-062-73/+152
| | | | | | | | | | | | | | | * Fixed repeater cross-chunk power detection + Re-implemented horizontal wire cut-off checking
| * | Fixed wire consuming much resourcesTiger Wang2015-06-061-7/+17
| | |
| * | Redstone wire and trapdoor fixesTiger Wang2015-06-064-311/+323
| | | | | | | | | | | | | | | | | | * Fixes #1887 * Fixes #1763 * Fixes #1083
| * | Provides improvements to redstone wireTiger Wang2015-06-062-94/+70
| | | | | | | | | | | | Intermediary commit that fixes #1763.
| * | ComparatorsTiger Wang2015-06-067-83/+287
| | |
* | | cBlockArea: Added CountSpecificBlocks() API function.Mattes D2015-06-082-0/+68
| | |
* | | Revert "Chunk queue collapsing"worktycho2015-06-0711-191/+261
| | |
* | | Merge pull request #2210 from nounoursheureux/bucket-craftAlexander Harkness2015-06-071-1/+8
|\ \ \ | | | | | | | | Cake crafting now give back the bucket
| * | | Fixed styleNounours Heureux2015-06-071-1/+1
| | | |
| * | | Cake crafting now give back the bucketNounours Heureux2015-06-071-1/+8
| | | |
* | | | Merge pull request #2211 from jan64/masterAlexander Harkness2015-06-071-2/+2
|\ \ \ \ | |/ / / |/| | | Fix incorrent experience sending for 1.7 clients
| * | | Fix incorrent experience sending for 1.7 clientsjan642015-06-071-2/+2
| | | |
* | | | Merge pull request #2179 from mc-server/ChunkQueueCollapsingTiger Wang2015-06-0611-261/+191
|\ \ \ \ | | | | | | | | | | Chunk queue collapsing
| * | | | Fix iteratingtycho2015-06-051-3/+1
| | | | |
| * | | | Made the list of chunks to stream an unordered_settycho2015-06-054-25/+22
| | | | | | | | | | | | | | | | | | | | This should increase performance of chunk streaming
| * | | | Rewrote ChunkSending queue for significantly improved performancetycho2015-06-054-189/+102
| | | | |
| * | | | Moved Chunk Broadcasts over to the regular queuetycho2015-06-058-116/+138
| | | | |
* | | | | Merge pull request #2205 from birkett/masterworktycho2015-06-055-15/+56
|\ \ \ \ \ | |/ / / / |/| | | | Daemon support on Linux
| * | | | Daemon support on Linux.Anthony Birkett2015-06-055-15/+56
| | | | | | | | | | | | | | | | | | | | Added null console log listener, avoid printf() when stdout is closed.
* | | | | Merge pull request #2206 from mc-server/APIDumpTimeStampworktycho2015-06-052-4/+55
|\ \ \ \ \ | | | | | | | | | | | | APIDump time stamp
| * | | | | Added Build info to the cRoot API.Mattes D2015-06-051-4/+54
| | | | | |
| * | | | | Provide some BuildInfo even for non-CI builds.Mattes D2015-06-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Ref.: #2204
* | | | | | Fixed overshoot in cLineBlockTracer.Mattes D2015-06-051-6/+13
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #2161.
* | | | | | Merge pull request #2069 from HaoTNN/masterMattes D2015-06-053-15/+40
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Fixes lit furnace issue in #2051
| * | | | | Merge remote-tracking branch 'upstream/master'HaoTNN2015-06-0312-106/+359
| |\| | | |
| * | | | | Fixes multiple furnace issues, including from loading world storageHaoTNN2015-06-033-16/+40
| | | | | |
| * | | | | Merge branch 'master' of https://github.com/mc-server/MCServerHaoTNN2015-06-03216-1238/+2165
| |\ \ \ \ \
| * \ \ \ \ \ Merge remote-tracking branch 'upstream/master'HaoTNN2015-05-2338-131/+217
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge remote-tracking branch 'upstream/master'HaoTNN2015-05-1932-134/+1147
| |\ \ \ \ \ \ \
| * | | | | | | | Fixes lit furnace issue in #2051haotnn2015-05-191-0/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #2203 from jan64/masterworktycho2015-06-041-1/+11
|\ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / | |/| | | | | | | Change SendChatType behavior for < 1.8 clients, update docs
| * | | | | | | | Changed SendAboveActionBarMessage / SendSystemMessage to be a noop for < 1.8 clientsjan642015-06-031-1/+11
| | | | | | | | |
* | | | | | | | | Skip unknown cflag for Apple clang & remove cSemaphoreCengiz Can2015-06-045-129/+2
| |_|_|_|_|/ / / |/| | | | | | |
* | | | | | | | Merge pull request #2199 from jan64/masterMattes D2015-06-0311-12/+282
|\| | | | | | | | | | | | | | | | | | | | | | | Added system and above action bar chat messages
| * | | | | | | Added system and above action bar chat messagesjan642015-06-0211-12/+282
| | |_|_|/ / / | |/| | | | |
* / | | | | | Added cmdline params for crashdump detailness.Mattes D2015-06-021-94/+77
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Win32-only, also fixed the call scripts. Fixes #2184.
* | | | | | Merge pull request #2182 from birkett/masterMattes D2015-06-021-10/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | Use the new style command line parameters for Windows Service support.
| * | | | | | Use the new style command line parameters for Windows Service support.Anthony Birkett2015-06-011-10/+9
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | Ignore invalid or malformed command line parameters, prevent unhandled exceptions. NOTE: Users will need to reinstall the service, now uses "-d" instead of "/service" in the start parameters.
* / | | | | Fixed warnings in MSVC.Mattes D2015-06-0213-4/+92
|/ / / / / | | | | | | | | | | | | | | | It complained about undefined return values or using uninitialized variables.
* | | | | Merge pull request #2172 from mc-server/LightingCallbacksMattes D2015-06-0111-53/+61
|\ \ \ \ \ | | | | | | | | | | | | Made cLightingThread own its callbacks
| * | | | | Made cLightingThread own its callbackstycho2015-05-3011-53/+61
| | | | | |
* | | | | | Fixed crafting recipe matching.Mattes D2015-05-311-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #2096.
* | | | | | ManualBindings: Fixed DoWithXYZ and ForEachInChunk signatures.Mattes D2015-05-311-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | Fixes forum report http://forum.mc-server.org/showthread.php?tid=1993
* | | | | | Merge branch 'master' of github.com:mc-server/MCServertycho2015-05-301-1/+1
|\ \ \ \ \ \
| * | | | | | Fixed wrong indent.Alexander Harkness2015-05-301-1/+1
| | | | | | |
* | | | | | | Fixed minor cast warningtycho2015-05-301-1/+1
|/ / / / / /
* | | | | | Merge pull request #2171 from SafwatHalaby/fenceAlexander Harkness2015-05-301-1/+7
|\ \ \ \ \ \ | | | | | | | | | | | | | | PF - Handle all fencetypes
| * | | | | | PF - Handle all fencetypesSafwatHalaby2015-05-301-1/+7
| | | | | | |
* | | | | | | Merge pull request #2163 from mc-server/SimplifySpawnworktycho2015-05-304-136/+156
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | | Clean up Spawn Prepare
| * | | | | | Clean up Spawn Preparetycho2015-05-304-136/+156
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Made cSpawnPrepare execute on the same thread since it is a syncronous operation, and most of the code happens on the lighting thread. Also moved cSpawnPrepare into its own file
* | | | | | | Merge pull request #2169 from linnemannr/masterworktycho2015-05-303-2/+19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix FreeBSD/clang errors caused by -Werror
| * | | | | | | Fix FreeBSD/clang errors caused by -Werrorlinnemannr2015-05-303-2/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With FreeBSD/clang, -Werror combined with the configured warning flags yields some fatal errors, specifically related to signed conversion, 64 to 32 bit conversion, and tautological compares. CONTRIBUTORS Add myself to the contributor list src/Generating/FinishGen.cpp In cFinishGenPassiveMobs::GetRandomMob(), change the type of RandMob from size_t to the difference_type of the ListOfSpawnables iterator MobIter. Using size_t triggers a 64 bit to 32 bit conversion if the difference_type of the iterator class is 64 bit Also explicitly cast the noise expression to unsigned long so we don't get a signed conversion warning from the modulo against ListOfSpawnables.size() src/OSSupport/StackTrace.cpp FreeBSD 10 and above includes a non glibc implementation of benchmark() for which size_t, not int, is the return type. To account for this and prevent a signed conversion warning, abstract the type for numItems with a macro btsize src/StringUtils.h In StringToInteger(), correct a tautological compare warning for unsigned types with the template. If T is unsigned, comparing std::numeric_limits<T>::min() to the unsigned result is always false. That control can enter this branch in an evaluated template with an unsigned type T may also permit a signed number to be parsed and erroneously stripped of its signedness at runtime. To guard against this and avoid the warning in the case that the number parsed from the string is non-positive, return false and don't try to parse if T is unsigned and control enters the non-positive branch
* | | | | | | | Merge pull request #2167 from SafwatHalaby/diagsworktycho2015-05-301-5/+12
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | PF - Fixed diagonal cutting
| * | | | | | | PF - Fixed diagonal cuttingSafwatHalaby2015-05-301-5/+12
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #2166 from SafwatHalaby/squidSafwat Halaby2015-05-302-2/+4
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Disabled squid and Guardian Pathfinding
| * | | | | | | Disabled squid and Guardian PathfindingSafwatHalaby2015-05-302-2/+4
| |/ / / / / /
* / / / / / / Fixed creeper explosionsSafwatHalaby2015-05-301-1/+1
|/ / / / / /
* / / / / / Fix Destroy() calling behaviourTiger Wang2015-05-301-1/+2
|/ / / / / | | | | | | | | | | | | | | | * Fixes Core/#142
* | | | | Fixed reversed logic in StringToDimension.Lane Kolbly2015-05-301-1/+1
| | | | |
* | | | | Merge pull request #2070 from mc-server/PreventNewWarningsJulian Laubstein2015-05-29189-768/+1044
|\ \ \ \ \ | | | | | | | | | | | | Fixed a lot of warnings
| * \ \ \ \ Merge branch 'master' into PreventNewWarningstycho2015-05-296-19/+29
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Entities/ArrowEntity.cpp
| * | | | | | Fix commentstycho2015-05-2819-63/+82
| | | | | | |
| * | | | | | Merge branch 'master' into PreventNewWarningstycho2015-05-2824-84/+442
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Inventory.cpp
| * | | | | | | Fix warnings in cPathtycho2015-05-241-9/+9
| | | | | | | |
| * | | | | | | Merge branch 'master' into PreventNewWarningstycho2015-05-247-175/+283
| |\ \ \ \ \ \ \
| * | | | | | | | Fix bearbins commentstycho2015-05-241-14/+10
| | | | | | | | |
| * | | | | | | | Fix commentstycho2015-05-246-63/+73
| | | | | | | | |
| * | | | | | | | Disable -Werror for warnings in tests.tycho2015-05-242-2/+4
| | | | | | | | |
| * | | | | | | | Made -Weverything an error.tycho2015-05-24109-269/+375
| | | | | | | | |
| * | | | | | | | Merge branch 'master' into PreventNewWarningstycho2015-05-2318-42/+42
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge branch 'master' into PreventNewWarningstycho2015-05-233-30/+35
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | Fix teststycho2015-05-232-0/+6
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'master' into PreventNewWarningstycho2015-05-2318-57/+138
| |\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge branch 'master' into PreventNewWarningstycho2015-05-191-0/+1
| |\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Make -Werror disabling file onlytycho2015-05-1962-85/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ad fix a load of warnings
| * | | | | | | | | | | | Added LuaState support for all integral typestycho2015-05-198-69/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All so added error handling for out of range values
| * | | | | | | | | | | | Fixed some more warningstycho2015-05-194-37/+37
| | | | | | | | | | | | |
| * | | | | | | | | | | | Finish fixing windowstycho2015-05-191-2/+2
| | | | | | | | | | | | |
| * | | | | | | | | | | | More fixed warningstycho2015-05-196-28/+40
| | | | | | | | | | | | |
| * | | | | | | | | | | | Properly fix cFile Warningstycho2015-05-192-11/+11
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed compile and a few more warningstycho2015-05-199-15/+33
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'master' into PreventNewWarningstycho2015-05-1930-133/+1145
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Blocks/BlockLeaves.h
| * | | | | | | | | | | | | Fixed a lot of warningstycho2015-05-1930-273/+286
| | |_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | Fix for the way connecting clients receive player lists and broadcast chatb33duck2015-05-293-5/+26
| |_|_|_|_|_|_|_|/ / / / |/| | | | | | | | | | |
* | | | | | | | | | | | AI - Sane SkeletonSafwatHalaby2015-05-285-19/+32
| | | | | | | | | | | |
* | | | | | | | | | | | Potential crash fixesTiger Wang2015-05-281-6/+3
| |_|_|_|_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Potentially addresses my comment in #1969 * Probably fixes #2145
* | | | | | | | | | | AI - Tweaked wolf speed and teleport thresholdSafwatHalaby2015-05-281-1/+2
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #2148 from SafwatHalaby/easyworktycho2015-05-271-2/+11
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | AI - Saner Livestock
| * | | | | | | | | | | AI - Saner LivestockSafwatHalaby2015-05-271-2/+11
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #2061 from mc-server/fixesAlexander Harkness2015-05-278-28/+43
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | Fixes
| * | | | | | | | | | | Fixes #2041Tiger Wang2015-05-241-3/+3
| | | | | | | | | | | |
| * | | | | | | | | | | Fixes #2003Tiger Wang2015-05-182-9/+7
| | | | | | | | | | | |
| * | | | | | | | | | | Fixes #2052Tiger Wang2015-05-186-16/+33
| |/ / / / / / / / / /
* | | | | | | | | | | Fixed ClientHandle not getting properly removed from the worldtycho2015-05-261-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when socket is closed whilst the client is being added to the world Fixes #1969
* | | | | | | | | | | Merge pull request #1848 from scottwillmoore/ImplementTitleCommandMattes D2015-05-269-0/+317
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Implement backend for /title command
| * | | | | | | | | | | Implement backend for /title commandScott Moore2015-04-139-0/+317
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #2138 from Seadragon91/server_uptimeMattes D2015-05-262-48/+53
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Added method to get the uptime of the server in seconds.
| * | | | | | | | | | | | Added method to get the uptime of the server in seconds. Implements #1650.Lukas Pioch2015-05-262-48/+53
| | | | | | | | | | | | |
* | | | | | | | | | | | | Only add default plugins if there are not any pluginsworktycho2015-05-251-1/+1
|/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Fixes #2082
* | | | | | | | | | | | Merge pull request #2135 from linnemannr/masterAlexander Harkness2015-05-252-1/+6
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ / / / |/| | | | | | | | | | | Support building on FreeBSD
| * | | | | | | | | | | Support building on FreeBSDlinnemannr2015-05-252-1/+6
| | |_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SetFlags.cmake Add -lexecinfo to linker flags for FreeBSD to resolve backtrace() lib/sqlite/CMakeLists.txt Define _XOPEN_SOURCE to 600 instead of __POSIX_VISIBLE to 200112 for POSIX 1-2001 support. For POSIX standards, the _XOPEN_SOURCE define controls the eventual value of __POSIX_VISIBLE. _XOPEN_SOURCE is defined to 500 in sqlite.c if not already defined, which sets up _POSIX_C_SOURCE and __POSIX_VISIBLE to the 199506 for POSIX.1c lib/tolua++/CMakeLists.txt src/CMakeLists.txt Add /usr/local/lib to the library search path for FreeBSD builds src/OSSupport/Errors.cpp Correct the strerror_r() implementation determination to check whether _GNU_SOURCE is defined, not what it evaluates to
* | | | | | | | | | | Merge pull request #2091 from Rakete1111/masterworktycho2015-05-241-0/+14
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Placing buckets up to 25 blocks away #2059
| * | | | | | | | | | | Fixes #2059Blitz Rakete2015-05-211-0/+14
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #2122 from SafwatHalaby/boundingworktycho2015-05-243-26/+114
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Pathfinder - Bounding boxes and some tweaks
| * | | | | | | | | | | | Pathfinder - Bounding boxes and some tweaksSafwatHalaby2015-05-233-26/+114
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #2118 from mc-server/login-gamemodeSafwat Halaby2015-05-242-148/+154
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix gamemode not changing properly.
| * | | | | | | | | | | | | Fix gamemode not changing properly.Alexander Harkness2015-05-232-148/+154
| | |_|/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Should fix #604
* | | | | | | | | | | | | Wolves don't spawn in rivers.Alexander Harkness2015-05-241-1/+1
| |_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #2107 from mc-server/cow-waterspawnSafwat Halaby2015-05-231-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | Cows no longer spawn over water.
| * | | | | | | | | | | Cows and rabbits no longer spawn over water.Alexander Harkness2015-05-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #2080
* | | | | | | | | | | | Merge pull request #2117 from Seadragon91/clang_errorsworktycho2015-05-2318-42/+42
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / / |/| | | | | | | | | | | Fixed missing overrides and added a ignore flag for reserved macro for clang version 3.6 and higher.
| * | | | | | | | | | | Fixed missing overrides and added a ignore flag for reserved macro for clang version 3.6 and higher.Lukas Pioch2015-05-2318-42/+42
| | |_|_|_|_|_|_|/ / / | |/| | | | | | | | |
* | | | | | | | | | | Merge pull request #2065 from mc-server/OldArgsMattes D2015-05-231-29/+25
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Move some of the old arguments over to TCLAP
| * | | | | | | | | | | Moved no buffering command line argument to tclaptycho2015-05-201-5/+8
| | | | | | | | | | | |
| * | | | | | | | | | | Move commlog arguments over to TCLAPtycho2015-05-201-25/+18
| | |_|_|_|_|_|_|_|/ / | |/| | | | | | | | |
* | | | | | | | | | | Merge pull request #2103 from beeduck/Issue1980Alexander Harkness2015-05-231-0/+9
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fixed players head visible when in spectator mode
| * | | | | | | | | | | Fixed players head visible when in spectator modeb33duck2015-05-221-0/+9
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed wrong copy/pasteworktycho2015-05-231-1/+1
| |_|/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 110962
* | | | | | | | | | | TryGetHeight returns a boolAlexander Harkness2015-05-231-1/+1
| |_|/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | should fix #2099
* | | | | | | | | | Merge pull request #2101 from mc-server/EquifaxCertsAlexander Harkness2015-05-232-1/+5
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Close Ssl Socket on destroy
| * | | | | | | | | | Close Ssl Socket on destroyTiger Wang2015-05-232-1/+5
| | |_|/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #2072
* | | | | | | | | | Merge pull request #2104 from beeduck/Issue2053Alexander Harkness2015-05-231-0/+7
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Fix for players falling through world when loading in as spectator
| * | | | | | | | | | Added a fix for players falling through the world when connecting in spectator modeb33duck2015-05-231-0/+7
| | |/ / / / / / / / | |/| | | | | | | |
* | | | | | | | | | Fixed creeper not exploding when 1 block higher than playerSafwatHalaby2015-05-231-2/+4
| |/ / / / / / / / |/| | | | | | | |
* | | | | | | | | Merge pull request #2086 from Seadragon91/masterMattes D2015-05-217-15/+16
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Renamed hook HOOK_ENTITY_CHANGE_WORLD
| * | | | | | | | | Renamed hook HOOK_ENTITY_CHANGE_WORLDLukas Pioch2015-05-217-15/+16
| | |_|/ / / / / / | |/| | | | | | |
* | | | | | | | | Added Equifax root CA.Mattes D2015-05-213-7/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #2076. Closes #2081. Ref.: #2072.
* | | | | | | | | Merge pull request #2030 from beeduck/masterworktycho2015-05-212-3/+18
|\ \ \ \ \ \ \ \ \ | | |/ / / / / / / | |/| | | | | | | Issue #1868 and Issue #1984
| * | | | | | | | Added open/close and sound effects for all door typesb33duck2015-05-211-3/+17
| | | | | | | | |
| * | | | | | | | Added thunder sound effect to CastThunderbolt()b33duck2015-05-211-0/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #2084 from mc-server/patch-2050Alexander Harkness2015-05-211-0/+5
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Added missing fencetypes to torchhandler
| * | | | | | | | | Added missing fencetypes to torchhandlerJulian Laubstein2015-05-201-0/+5
| | |/ / / / / / / | |/| | | | | | |
* / | | | | | | | Path recalculation improvementsSafwatHalaby2015-05-203-10/+17
|/ / / / / / / /
* | | | | | | | Merge pull request #2074 from SafwatHalaby/rmUniqueworktycho2015-05-202-19/+26
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | Removed UniquePTR from PathFinder
| * | | | | | | newlinesSafwatHalaby2015-05-191-0/+9
| | | | | | | |
| * | | | | | | Removed UniquePTR from PathFinderSafwatHalaby2015-05-192-19/+17
| | | | | | | |
* | | | | | | | Don't verify certificateworktycho2015-05-191-1/+1
| |_|_|_|_|/ / |/| | | | | | | | | | | | | Temporary Hot-fix for #2072
* | | | | | | Merge pull request #2057 from Seadragon91/masterAlexander Harkness2015-05-191-0/+1
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | Fix the health of animals
| * | | | | | Fix the health of animalsLukas Pioch2015-05-181-0/+1
| | | | | | |
* | | | | | | Merge pull request #2019 from mc-server/OverrideArgsAlexander Harkness2015-05-1923-124/+1009
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Initial Implementation of command line arguments
| * | | | | | | Add support for setting ports through command linetycho2015-05-182-2/+24
| | | | | | | |
| * | | | | | | Fix max slots logic to only override if acctually present.tycho2015-05-181-4/+9
| | | | | | | |
| * | | | | | | Added deoxy commentstycho2015-05-161-1/+16
| | | | | | | |
| * | | | | | | Fix service Mainworktycho2015-05-161-1/+1
| | | | | | | |
| * | | | | | | Move make_unique into a namespace to avoid ADL issuestycho2015-05-164-11/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this prevents VS finding std::make_unique for constructors that take types from std
| * | | | | | | Initial implementation of IniFile overloadingtycho2015-05-1622-116/+955
| | | | | | | |
* | | | | | | | Merge pull request #2060 from mc-server/more-leafimproveAlexander Harkness2015-05-191-8/+20
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Improved leaves a bit more.
| * | | | | | | | Improved leaves a bit more.Alexander Harkness2015-05-181-8/+20
| | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | Should fix #2058.
* | | | | | | | Manual merge of #2066Alexander Harkness2015-05-191-1/+1
| | | | | | | |
* | | | | | | | Merge pull request #2064 from Seadragon91/hook_entity_change_worldAlexander Harkness2015-05-197-0/+115
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Added hooks HOOK_ENTITY_CHANGE_WORLD and HOOK_ENTITY_CHANGED_WORLD
| * | | | | | | Added hooks HOOK_ENTITY_CHANGE_WORLD and HOOK_ENTITY_CHANGED_WORLDLukas Pioch2015-05-187-0/+115
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | Fixes #1435.
* | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerSTRWarrior2015-05-1812-164/+303
|\ \ \ \ \ \ \ | | |_|/ / / / | |/| | | | |
| * | | | | | Merge pull request #2049 from mc-server/sapling-probabilitySafwat Halaby2015-05-181-1/+1
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Fix sapling probability.
| | * | | | | Fix sapling probability.Alexander Harkness2015-05-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Probability is 5% of leaves drop a sapling. This should really be different for jungle leaves (2.5%) and the Fortune enchantment should increase the probability.
| * | | | | | Merge pull request #2037 from SafwatHalaby/aproxSafwat Halaby2015-05-175-55/+193
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Pathfinder - approximated paths when original destination unreachable
| | * | | | | | Pathfinder - approximated paths when original destination unreachableSafwatHalaby2015-05-175-55/+193
| | | | | | | |
| * | | | | | | properly this time?Alexander Harkness2015-05-171-1/+1
| | | | | | | |
| * | | | | | | Fixed typo.Alexander Harkness2015-05-171-1/+1
| | |/ / / / / | |/| | | | |
| * | | | | | Fix FastRandom seedingworktycho2015-05-171-5/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1815 Fixes #2021
| * | | | | | Fixed inventory handling.Mattes D2015-05-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #2035.
| * | | | | | Merge pull request #2033 from mc-server/BreakIntoDebuggerSafwat Halaby2015-05-162-0/+29
| |\ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | Lua: Break into ZBS debugger on API errors.
| | * | | | | Lua: Break into ZBS debugger on API errors.Mattes D2015-05-162-0/+29
| | |/ / / /
| * | | | | Merge pull request #2029 from mc-server/bedPatchMattes D2015-05-161-2/+2
| |\ \ \ \ \ | | |/ / / / | |/| | | | Bed uses bottom two bits for direction not three
| | * | | | Bed uses bottom two bits for direction not threeworktycho2015-05-161-2/+2
| | | |/ / | | |/| |
| * / | | PathFinder uses UniquePtr for cell map.SafwatHalaby2015-05-162-8/+3
| |/ / /
| * | | Revert "PathFinder - smart pointers"worktycho2015-05-152-3/+8
| | | |
| * | | uniquePTRSafwatHalaby2015-05-152-8/+3
| |/ /
| * | Fixed cPluginManager:ForEachCommand() and ForEachConsoleCommand()Mattes D2015-05-141-93/+54
| | | | | | | | | | | | | | | The functions would leak one value on the Lua stack for each enumerated command. Fixes #2017.
* | | Updated the defaults for the overworld world generatorSTRWarrior2015-05-171-1/+1
|/ /
* | Merge pull request #2018 from mc-server/ProbDifMattes D2015-05-141-0/+1
|\ \ | | | | | | Fixed possible crash in cProbabDistrib
| * | Fixed possible crash in cProbabDistribSTRWarrior2015-05-141-0/+1
| | | | | | | | | | | | It could divide through 0 which causes a crash
* | | Merge pull request #2010 from TwiddleStick/patch-2Mattes D2015-05-141-2/+2
|\ \ \ | | | | | | | | Update World.cpp
| * | | Update World.cppMartin Fahy2015-05-141-2/+2
| | | | | | | | | | | | Fixed minor typos in comments, simply trying to understand the code base to fix issue regarding no sound when lighting is produced, no change to actual code.
* | | | Merge pull request #2006 from mc-server/ManualBindingsWorldMattes D2015-05-147-1217/+1253
|\ \ \ \ | |/ / / |/| | | Moved cWorld manual bindings out into a separate file.
| * | | Moved cWorld manual bindings out into a separate file.Mattes D2015-05-137-1217/+1253
| | | |
* | | | Fixed chat message manipulation by plugins.Mattes D2015-05-131-1/+1
| | | | | | | | | | | | | | | | Plugins, in their OnChat hook, can change the chat message sent by a player.
* | | | All in-game commands go through the OnExecuteCommand hook.Mattes D2015-05-131-0/+7
|/ / / | | | | | | | | | Everything that has a slash at the beginning, doesn't matter if it is a registered command or not.
* | | Merge pull request #2001 from mc-server/BindingsCleanupMattes D2015-05-1211-972/+195
|\ \ \ | | | | | | | | Bindings cleanup
| * | | ToLua now generates cLuaState::Push() and GetStackValue()Mattes D2015-05-1211-498/+195
| | | | | | | | | | | | | | | | | | | | For classes exported through ToLua it generates the cLuaState::Push() and cLuaState::GetStackValue() functions, as well as the supporting forward declarations and typedefs. Renamed virtual_method_hooks.lua to BindingsProcessor.lua since it no longer provides virtual method hooks and instead does additional processing when generating the bindings.
| * | | AllToLua: Removed unneeded virtual method hooks.Mattes D2015-05-111-481/+7
| | | |
* | | | Fixed creative click-outsideTiger Wang2015-05-121-1/+1
| | | | | | | | | | | | | | | | * Fixes #1995
* | | | Improved hoppersTiger Wang2015-05-112-27/+16
|/ / / | | | | | | | | | * Fixes #1994
* | | OnExecuteCommand hook can override the command result (crXXX).Mattes D2015-05-107-17/+35
| | |
* | | Exported cPluginManager:ExecuteConsoleCommand() to Lua API.Mattes D2015-05-104-16/+76
| | | | | | | | | | | | Fixes #1999.
* | | Call HOOK_EXECUTE_COMMAND even for unknown console commands.Mattes D2015-05-101-0/+2
| | | | | | | | | | | | This allows plugins such as Aliases to intercept even unknown commands.
* | | StringUtils: Fixed StringSplitWithQuotes().Mattes D2015-05-101-0/+7
| | | | | | | | | | | | The function would crash when given a string that started with the delimiter.
* | | Added the EntireCommand parameter to HOOK_EXECUTE_COMMAND.Mattes D2015-05-105-9/+9
| | | | | | | | | | | | Fixes #1996.
* | | Merge remote-tracking branch 'origin/master' into warningsTiger Wang2015-05-10119-304/+359
|\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/Mobs/Monster.cpp src/Vector3.h
| * | | PF - Less calcs per tickwiseoldman952015-05-101-1/+1
| | | |
| * | | Added check against "Type const &" and "Type const *".Mattes D2015-05-091-0/+4
| | | |
| * | | CheckBasicStyle: checks spaces around * and &.Mattes D2015-05-0942-104/+115
| | | |
| * | | More style checking.Mattes D2015-05-0978-186/+207
| | | | | | | | | | | | | | | | Spaces around some operators are checked.
| * | | Rabbit and cooked rabbit now stackablejammet2015-05-091-1/+3
| | | | | | | | | | | | | | | | And corrected the alphabetical ordering.
| * | | Merge pull request #1956 from Tri125/masterMattes D2015-05-095-6/+20
| |\ \ \ | | | | | | | | | | Fixed Magma cube sound and spawn size
| | * | | GetSizeName of cSlime and cMagmaCube is now staticTristan2015-05-094-4/+4
| | | | |
| | * | | Big Magma Cube can now spawnTri1252015-05-072-2/+2
| | | | | | | | | | | | | | | | | | | | Following the same method as the Slime, Magma Cube can now spawn with the size of 1, 2 or 4.
| | * | | Fixed the sound issue with the MagmaCubeTri1252015-05-072-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -Name of the sound is correctly capitalized -Get the appropriate sound depending on its size
| * | | | Fixed remaing pragmasworktycho2015-05-091-3/+3
| | | | |
| * | | | clang diagnostic not diagnosticsworktycho2015-05-091-3/+3
| | | | | | | | | | | | | | | fixed clang pragmas
| * | | | Merge pull request #1973 from Tri125/QuartzStackAlexander Harkness2015-05-091-0/+1
| |\ \ \ \ | | | | | | | | | | | | Fixed #1893 : Quartz can now stack
| | * | | | Fixed #1893Tri1252015-05-071-0/+1
| | |/ / / | | | | | | | | | | | | | | | Quartz ore now stack properly
| * | | | Merge pull request #1972 from Woazboat/CodeCleanup_refactoredworktycho2015-05-091-4/+4
| |\ \ \ \ | | | | | | | | | | | | Fixed compiler warning overrides in Vector3.h
| | * | | | Fixed compiler warning overrides in Vector3.hWoazboat2015-05-091-4/+4
| | | | | |
| * | | | | Move chunk position accesses after the chunk validity checksworktycho2015-05-091-2/+4
| | | | | |
* | | | | | Fixed some warnings and logic errors in Monster.cppTiger Wang2015-05-101-5/+7
| | | | | |
* | | | | | Fixed some Visual Studio warningsTiger Wang2015-05-098-25/+38
|/ / / / /
* | | | | Merge pull request #1945 from Woazboat/CodeCleanup_refactoredMattes D2015-05-084-43/+88
|\| | | | | | | | | | | | | | Small code cleanup - clean version
| * | | | Added float comparison warning overrides to Vector3::hasNonZeroLengthWoazboat2015-05-081-7/+16
| | | | |
| * | | | Ignoring Clang warnings for strict float comparison in Vector::Equals()Woazboat2015-05-081-1/+11
| | | | |
| * | | | Changed Vector3 Equals function to avoid using memcmpWoazboat2015-05-081-5/+1
| | | | |
| * | | | Tracer::signum function now returns intWoazboat2015-05-083-25/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | convert c style casts to c++ static casts Changed fabs() to std::abs()
| * | | | Check for zero length vector in TraceWoazboat2015-05-082-4/+15
| | | | | | | | | | | | | | | | | | | | Added hasNonZeroLength member function to Vector3
| * | | | Changed Tracer::m_NormalTable to static arrayWoazboat2015-05-082-8/+23
| | | | | | | | | | | | | | | | | | | | Was previously instantiated for every trace
| * | | | Removed redundant temp iterator. std::list.erase already returnsWoazboat2015-04-271-4/+1
| | | | | | | | | | | | | | | | | | | | iterator to next valid list element
* | | | | Spaces in cPathwiseoldman952015-05-082-0/+2
| | | | |
* | | | | Fixed inter-plugin calls.Mattes D2015-05-072-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | When an inter-plugin call failed due to function not found, the server would maul the LuaState and "yield". Fixes #1959.
* | | | | Merge pull request #1949 from SafwatHalaby/burnworktycho2015-05-073-35/+93
|\ \ \ \ \ | | | | | | | | | | | | AI - Better shade cover
| * | | | | AI - Safer WouldBurnAt()wiseoldman952015-05-061-3/+8
| | | | | |
| * | | | | AI - Better shade coverwiseoldman952015-05-061-1/+9
| | | | | |
| * | | | | (duplicate) AI - Livestock escape fixed, water jumping fixedwiseoldman952015-05-063-34/+79
| | |_|/ / | |/| | |
* | | | | Merge pull request #1951 from mc-server/BroadcastRefactorMattes D2015-05-0722-19/+310
|\ \ \ \ \ | |_|_|/ / |/| | | | Added support for sending additional data in the ParticleEffect packet
| * | | | Added support for additional data in the ParticleEffect Packettycho2015-05-0722-19/+310
| |/ / / | | | | | | | | | | | | Also started refactoring how broadcasts are handled
* / / / Actually empty the open listworktycho2015-05-061-1/+1
|/ / /
* | | PF - Swimming bugfixwiseoldman952015-05-061-3/+3
| | |
* | | PF - Fixed mobs not reaching leaning playerwiseoldman952015-05-062-3/+10
| | |
* | | Merge pull request #1939 from SafwatHalaby/Polisingworktycho2015-05-052-26/+47
|\ \ \ | | | | | | | | AI - More conservative use of ResetPathFinding, some polishing
| * | | AI - More conservative use of ResetPathFinding, fixed minor swimming / jumping bugwiseoldman952015-05-052-26/+47
| | | |
* | | | Chmod +x CheckBasicStyle.luawiseoldman952015-05-051-0/+0
|/ / /
* | | Merge pull request #1938 from jan64/masterMattes D2015-05-042-3/+3
|\ \ \ | | | | | | | | Change visual protocol name to include MCServer
| * | | Change visual protocol name to include MCServerjan642015-05-042-3/+3
| | | |
* | | | Merge pull request #1935 from mc-server/fixesAlexander Harkness2015-05-048-265/+224
|\ \ \ \ | |/ / / |/| | | Entity improvements
| * | | Entity improvementsTiger Wang2015-05-048-265/+224
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | •Pathfinder improvements •Fixes #1217 •Fixes #1933 Merge remote-tracking branch 'SafwatHalaby/water2' into fixes
* | | | Print Build info as part of the crash informationworktycho2015-05-041-0/+9
| | | |
* | | | Merge pull request #1934 from SafwatHalaby/p_IsSolidChunksTiger Wang2015-05-031-1/+1
|\ \ \ \ | |/ / / |/| | | PathFinder - Fixed nullptr chunk bug
| * | | PathFinder - Fixed nullptr chunk bugwiseoldman952015-05-031-1/+1
| | | |
* | | | Merge pull request #1930 from SafwatHalaby/AI_JumpTiger Wang2015-05-032-5/+16
|\ \ \ \ | | | | | | | | | | AI - Improved Mob Jumping
| * | | | AI - Improved Mob Jumpingwiseoldman952015-05-032-5/+16
| |/ / /
* | | | Merge pull request #1932 from SafwatHalaby/F_AssertFixMattes D2015-05-033-10/+8
|\ \ \ \ | | | | | | | | | | PathFinder - Fixed Howaner's bug
| * | | | PathFinder - Crash fix, chunks in parameters are now referenceswiseoldman952015-05-033-10/+8
| |/ / /
* | | | Merge pull request #1880 from mc-server/submodulesMattes D2015-05-033-3/+3
|\ \ \ \ | |/ / / |/| | | Update submodules
| * | | Update submodulesTiger Wang2015-05-023-3/+3
| | | |
* | | | Merge pull request #1925 from SafwatHalaby/PathFinder_OptimzeTiger Wang2015-05-024-66/+38
|\ \ \ \ | | | | | | | | | | Pathfinder optimization
| * | | | PathFinding - Chunk querying optimization and improve cPath::IsSolidwiseoldman952015-05-024-66/+38
| | | | |
* | | | | Merge pull request #1927 from SafwatHalaby/AI_BetterDayLightHandlingTiger Wang2015-05-026-63/+22
|\ \ \ \ \ | | | | | | | | | | | | AI - Much better burning/daylight behavior
| * | | | | AI - Better daylight handlingwiseoldman952015-05-026-63/+22
| |/ / / /
* | | | | Merge pull request #1919 from mathias-github/patch-1Tiger Wang2015-05-021-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | Added Guardian and Rabbit to DefaultMonsters in Overworld
| * | | | Added Guardian and Rabbit to DefaultMonsters in OverworldMathias2015-04-291-1/+1
| | | | |
* | | | | CheckBasicStyle: Can check individual files or git commits.Mattes D2015-05-021-2/+101
| |/ / / |/| | |
* | | | A* Pathfinding and better monster AIwiseoldman952015-05-0113-175/+736
| | | |
* | | | Added cBlockArea:CountNonAirBlocks API function.Mattes D2015-04-302-1/+36
| | | |
* | | | Fixed bindings for cFile:ReadWholeFile().Mattes D2015-04-302-8/+44
| | | | | | | | | | | | | | | | Fixes #1914
* | | | Merge pull request #1922 from mc-server/BlockAreaExtMattes D2015-04-305-2/+200
|\ \ \ \ | |/ / / |/| | | cBlockArea extensions
| * | | Added cBlockArea::msSimpleCompare merge strategy.Mattes D2015-04-292-1/+54
| | | |
| * | | Added cBlockArea:GetNonAirCropRelCoords() API function.Mattes D2015-04-295-1/+146
| | | | | | | | | | | | | | | | Fixes #1915.
* | | | Clay blocks are handled with the OreHandlerjammet2015-04-291-0/+1
| | | |
* | | | Updated MC versions in ProtocolRecognizer.hwiseoldman952015-04-281-1/+1
| | | |
* | | | Merge pull request #1909 from Woazboat/CodeCleanupworktycho2015-04-274-10/+12
|\ \ \ \ | |/ / / |/| / / | |/ / cSetChunkData constructor explicitly requires std::move()
| * | cSetChunkData constructor explicitly requires std::move() instead ofWoazboat2015-04-274-10/+12
| | | | | | | | | | | | unsafely stealing data
* | | Fix explosions trying to write to unread blockareaTiger Wang2015-04-261-3/+5
| | |
* | | Merge pull request #1897 from mc-server/RestrictionsMattes D2015-04-256-43/+772
|\ \ \ | | | | | | | | Restrictions
| * | | cPlayer now checks restrictions.Mattes D2015-04-253-7/+68
| | | | | | | | | | | | | | | | Fixes #1331.
| * | | Added player restrictions to the DB and API.Mattes D2015-04-253-36/+704
| | | |
* | | | Merge pull request #1896 from mc-server/FindAndDoWithPlayerRaceMattes D2015-04-251-4/+4
|\ \ \ \ | |/ / / |/| | | Eliminate race condition in cRoot::FindAndDoWithPlayer
| * | | Eliminate race condition in cRoot::FindAndDoWithPlayerworktycho2015-04-241-4/+4
| |/ / | | | | | | Avoid a race condition where a player gets deleted during the FindAndDoWithPlayer callback by moving the callback into DoWithPlayer.
* / / Plugin removes its command registrations and webtabs when unloaded.Mattes D2015-04-251-0/+5
|/ / | | | | | | Fixes #1890.
* | Refactored ManualBindings' callbacks using templates.Mattes D2015-04-233-365/+259
| | | | | | | | | | This is a bit easier to read, has better error reporting and fixes a few subtle bugs. Fixes #1889.
* | Digging up a clay block spawns 4 clay items.jammet2015-04-231-0/+5
| | | | | | | | | | Fixes #1884. Closes #1891.
* | Merge pull request #1892 from mc-server/DoWithPluginMattes D2015-04-233-170/+294
|\ \ | | | | | | Implemented cPluginManager:DoWithPlugin(), fixed ForEachPlugin().
| * | Implemented cPluginManager:DoWithPlugin(), fixed ForEachPlugin().Mattes D2015-04-233-170/+294
| | | | | | | | | | | | Both functions are exported as static.
* | | Nether Quartz is handled in the Ore handler.jammet2015-04-231-0/+5
| | | | | | | | | | | | Fixes #1885, Closes #1888
* | | Merge pull request #1851 from wraith11/DoorFixMattes D2015-04-232-6/+21
|\ \ \ | | | | | | | | Fix door placing in connection with slabs
| * | | Fix door placing in connection with slabswraith112015-04-212-6/+21
| | | | | | | | | | | | | | | | Except top-half slabs as transparent blocks for doors.
* | | | Merge pull request #1852 from wraith11/SlabPlacingMattes D2015-04-231-0/+23
|\ \ \ \ | |_|/ / |/| | | Fix slab placing
| * | | Fix slab placingwraith112015-04-221-0/+23
| |/ /
* | | Narrowed WindowID to use only 7 bits.Mattes D2015-04-212-3/+7
| | | | | | | | | | | | Ref.: http://forum.mc-server.org/showthread.php?tid=1876
* | | Hotfixed some chunk presence issues when generating.Mattes D2015-04-211-0/+2
| | |
* | | Merge pull request #1879 from mc-server/DynamicThresholdMattes D2015-04-212-7/+6
|\ \ \ | | | | | | | | Changed Nether composition to change the threshold from a cubic noise
| * | | Changed default MaxThreshold valueSTRWarrior2015-04-211-1/+1
| | | | | | | | | | | | | | | | There is now really a difference between open and dense parts
| * | | Calculate threshold for each column in a chunk instead for the whole chunkSTRWarrior2015-04-211-2/+1
| | | |
| * | | Changed Nether composition to change the threshold from a cubic noiseSTRWarrior2015-04-202-7/+7
| | | |
* | | | Network: fixed excessive debug logging.Mattes D2015-04-212-7/+1
| | | |
* | | | Added URL member to the HTTPRequest API class.Mattes D2015-04-212-1/+11
| | | |
* | | | ItemHandler type fixes.Mattes D2015-04-201-2/+2
| | | |
* | | | Protocol 1.8: Limit the amount of displayed data on NBT parse failure.Mattes D2015-04-201-1/+1
| | | |
* | | | ItemHandler: Using automatic array bounds.Mattes D2015-04-201-1/+1
| | | |
* | | | HangingEntity: Fixed a needless clang warning.Mattes D2015-04-191-2/+5
| | | |
* | | | Fixed typo in NetherForts initializationSTRWarrior2015-04-191-1/+1
| | | | | | | | | | | | | | | | The S in NetherForts was missing
* | | | Merge pull request #1877 from mc-server/GlowStoneNiLSPACE2015-04-194-2/+140
|\| | | | | | | | | | | Added GlowStone finisher
| * | | GlowStone: Changed order of initialization of member variablesSTRWarrior2015-04-191-2/+2
| | | |
| * | | Fixed styleSTRWarrior2015-04-191-2/+2
| | | |
| * | | Added GlowStone finisherSTRWarrior2015-04-194-2/+140
| |/ /
* | | Merge pull request #1875 from mc-server/PluginFoldersMattes D2015-04-1911-489/+668
|\ \ \ | | | | | | | | Split the plugin names and plugin folders to avoid confusing them.
| * | | Refresh plugin list before trying to load.Mattes D2015-04-191-0/+1
| | | |
| * | | Added cPluginManager:IsPluginLoaded() API, better load error msgs.Mattes D2015-04-192-5/+42
| | | |
| * | | Refactored cWebPlugin for C++11 style and proper WebTab clearing.Mattes D2015-04-196-103/+149
| | | |
| * | | Split the plugin names and plugin folders to avoid confusing them.Mattes D2015-04-199-387/+482
| | | | | | | | | | | | | | | | Ref.: http://forum.mc-server.org/showthread.php?tid=1877
* | | | ClientHandle: Fixed re-sending refused right-clicks.Mattes D2015-04-191-1/+8
| | | | | | | | | | | | | | | | | | | | The coords weren't checked against Y boundary and -1 coords weren't sent. This fixes mc-server/Gallery#45.
* | | | HTTP: Error message is sent as the payload as well.Mattes D2015-04-192-2/+5
| | | | | | | | | | | | | | | | This shows the error message in the browsers. Before, the browsers would display just a blank page.
* | | | Merge pull request #1864 from mc-server/StrictRecipeMatchingMattes D2015-04-191-2/+2
|\ \ \ \ | | | | | | | | | | Recipes match zero DamageValue strictly.
| * | | | Recipes match zero DamageValue strictly.Mattes D2015-04-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | To match any DamageValue for the ingredient, an explicit "-1" as the DamageValue must be specified. Fixes #1859.
* | | | | Update IronGolem.cppmathias-gh2015-04-171-1/+1
| |/ / / |/| | |
* | | | Added MobTypeName for Giantmathias-gh2015-04-171-0/+1
| | | |
* | | | Fixed arm swing animationTiger Wang2015-04-171-1/+1
|/ / / | | | | | | * Fixes #1861
* | | Fixed PolishedGranite et al crafting recipes.Mattes D2015-04-163-3/+4
| | | | | | | | | | | | Fixes #1774. Ref.: #1859
* | | Merge pull request #1858 from mc-server/BucketPluginCallsMattes D2015-04-1522-59/+219
|\ \ \ | | | | | | | | Bucket plugin calls
| * | | Scooping up fluid calls the player placement hooks.Mattes D2015-04-141-4/+12
| | | | | | | | | | | | | | | | Ref.: #1857.
| * | | Placing a fluid from bucket calls plugin hooks.Mattes D2015-04-1421-53/+204
| | | | | | | | | | | | | | | | Ref.: #1857.
| * | | Removed HOOK_MAX and HOOK_NUM_HOOKS from Lua API.Mattes D2015-04-131-2/+3
| | | |
* | | | Merge pull request #1844 from DevToaster/masterMattes D2015-04-1416-16/+61
|\ \ \ \ | |/ / / |/| | | Modified physics for more vanilla-like behavior
| * | | Changed air drag for pickupsDevToaster2015-03-311-1/+1
| | | |
| * | | Changed air drag units to 'interpolated ticks' per secondDevToaster2015-03-3111-14/+18
| | | |
| * | | Adjusted projectile physicsDevToaster2015-03-311-4/+6
| | | |
| * | | Modified physics for more vanilla-like behaviorDevToaster2015-03-3115-12/+51
| | | |
* | | | Merge pull request #1854 from mc-server/FileOpsMattes D2015-04-123-5/+343
|\ \ \ \ | |_|/ / |/| | | File ops
| * | | cFile:ChangeFileExt now accepts extensions with leading dot, too.Mattes D2015-04-111-2/+14
| | | |
| * | | Added more cFile API functions.Mattes D2015-04-112-2/+66
| | | | | | | | | | | | | | | | GetLastModificationTime, GetPathSeparator() and GetExecutableExt()
| * | | Fixed plugin hook calls when unloading plugins.Mattes D2015-04-101-1/+248
| | | | | | | | | | | | | | | | If a plugin installs any hooks in its Initialize method and then causes the Lua runtime to abort, the server asserted because the hooks were called while the plugin was being unloaded.
| * | | Added proper implementation of cFile::ChangeFileExt().Mattes D2015-04-101-2/+17
| | | |
* | | | Added extra divide operator to Vector3.STRWarrior2015-04-071-0/+9
|/ / / | | | | | | | | | The multiply operator had one for both a different vector and a number, but the divide operator didn't.
* | | Fixed MSVC warnings, improved comments.Mattes D2015-04-061-5/+5
| | |
* | | Added cFile:ChangeFileExt() function.Mattes D2015-04-062-0/+27
| | |
* | | Fixed crash on exit introduced with Windows Service capability.Mattes D2015-04-053-31/+29
| | | | | | | | | | | | Ref.: #1845
* | | Merge pull request #1846 from mc-server/WorldChangingMattes D2015-04-041-0/+6
|\ \ \ | |_|/ |/| | Fixed player switching world bug
| * | Fixed players not appearing/disappearing when traveling to a new world.STRWarrior2015-04-031-0/+6
| | |
* | | Fixed the nether and end getting snow if they were generated in the overworld.STRWarrior2015-04-031-0/+7
| | |
* | | Merge pull request #1799 from SnappingTurtles/BlockButtonMattes D2015-04-031-1/+5
|\ \ \ | | | | | | | | Buttons can be placed on the top and on the bottom face of a block
| * | | Removed 0x6, 0x7 from BlockButton.Alexandre Guertin2015-03-251-5/+3
| | | |
| * | | Buttons can be placed on the top and on the bottom face of a blockAlexandre Guertin2015-03-091-1/+7
| | | |
* | | | Working as a Windows service. Starts and stops correctly.Anthony Birkett2015-04-014-35/+234
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | Added "/service" switch, to prompt the binary to attempt starting as a service. Added service* methods, to control service startup. Split up main() into universalMain(), which contains the startup code for both service and normal start. Added cRoot::m_RunningAsService bool, Added cRoot::SetStopping(bool) to allow a stop request to be sent by the service controller. Added cBlockIDMap::init() to avoid loading items.ini before the working directory has been set.
* | | Fixed placing bottom half-slabs by clicking a top half-slab.Mattes D2015-03-281-2/+2
| |/ |/| | | | | Ref.: #1837
* | Merge pull request #1826 from mc-server/UnifyPacketizerMattes D2015-03-2443-1679/+2026
|\ \ | | | | | | Unify packetizer
| * | Added VarInt64, normalized cPacketizer datatype names.Mattes D2015-03-227-688/+744
| | |
| * | Unified cPacketizer across all protocols.Mattes D2015-03-2214-769/+873
| | |
| * | ProtoProxy: Fixed connection and logging.Mattes D2015-03-221-0/+1
| | |
| * | Fixed signedness warnings in Protocol.Mattes D2015-03-2111-14/+14
| | |
| * | Creeper: Fixed skeleton check.Mattes D2015-03-211-11/+10
| | |
| * | Fixed signedness issues in protocols.Mattes D2015-03-216-62/+76
| | |
| * | Changed cEntity::m_UniqueID to UInt32.Mattes D2015-03-2122-169/+224
| | |
| * | Unified cByteBuffer types.Mattes D2015-03-2112-253/+371
| | | | | | | | | | | | cByteBuffer now reads and writes any of the [U]Int<N> types.
* | | Merge pull request #1775 from tommysanterre/terrainheightfixMattes D2015-03-2318-22/+31
|\ \ \ | | | | | | | | Correct all world height validations.
| * | | Correct world height validations.Tommy Santerre2015-03-2018-22/+31
| |/ / | | | | | | | | | | | | 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
* | | Merge pull request #1786 from mc-server/pipelineSyntaxworktycho2015-03-213-22/+88
|\ \ \ | | | | | | | | Added pipelining syntax for generators
| * | | Style fixesworktycho2015-03-211-15/+15
| | | |
| * | | Fixed alignmentworktycho2015-03-211-2/+2
| | | |
| * | | Changed pipeline character from >> to |tycho2015-03-112-15/+15
| | | |
| * | | Fixed style and removed false positivestycho2015-03-112-7/+12
| | | | | | | | | | | | | | | | Relaxed the rules for < followed by an && and removed rule for < following an &&
| * | | Fixed Sequence Generator for IntGenTycho2015-03-102-12/+24
| | | |
| * | | Fixed StyleTycho2015-03-012-13/+15
| | | | | | | | | | | | | | | | Still fails CheckBasicStyle.lua dua to issue with rvalue references and templates
| * | | Added pipelining syntax for generatorsTycho2015-03-012-16/+63
| | | |
* | | | Changed linked world name variables and setters / getters.Mattes D2015-03-213-30/+31
| | | | | | | | | | | | | | | | | | | | Ref.: #1792 Ref.: https://github.com/mc-server/MCServer/pull/1792#discussion_r25946707
* | | | Fixed trailing whitespace.Mattes D2015-03-211-1/+1
| | | |
* | | | Improved arrow in-flight and block-hit appearanceTiger Wang2015-03-202-19/+3
| | | | | | | | | | | | | | | | * Fixes #1495
* | | | cPluginLua:cResettable no longer shares CS with plugin.Mattes D2015-03-202-10/+13
| | | | | | | | | | | | | | | | This fixes locking the resettable while the plugin is already gone. Hopefully no deadlocks.
* | | | Merge pull request #1822 from mc-server/ResettableLuaCallbackMattes D2015-03-206-79/+150
|\ \ \ \ | | | | | | | | | | Added cPluginLua::cResettable interface, used for scheduled tasks.
| * | | | Added cPluginLua::cResettable interface, used for scheduled tasks.Mattes D2015-03-206-79/+150
| | |/ / | |/| | | | | | | | | | | | | | This allows plugins to register objects that can "survive" the plugin unloading - they will simply bail out if the plugin is already unloaded, instead of referencing bad plugin data. Fixes #1556.
* | | | Merge pull request #1821 from bibo38/bugfix1765Mattes D2015-03-202-0/+12
|\ \ \ \ | |/ / / |/| | | Removed Metavalue from Piston drops.
| * | | Removed Metavalue from Piston drops. Bugfix #1765bibo382015-03-202-0/+12
| | | |
* | | | Removed unwanted base classes from Lua API.Mattes D2015-03-194-2/+10
| | | |
* | | | AllToLua: Fixed cMonster inheritance.Mattes D2015-03-191-2/+2
| | | |
* | | | Improved DoWithID bindings.Mattes D2015-03-192-3/+8
| | | |
* | | | Removed wrong else clause, which caused that the following if-Statement got only executed in rare cases. This has blocked the creation of new Fluid-Sources. Bugfix #1783bibo382015-03-191-1/+2
|/ / /
* | | Fixed a clang warning, improved comments.Mattes D2015-03-191-7/+4
| | |
* | | AllToLua: Removed an unneeded class declaration.Mattes D2015-03-192-8/+2
| | | | | | | | | | | | It's perfectly possible to declare a class in ManualBindings without the need for declaration in AllToLua.pkg.
* | | AllToLua: Fixed the parse order for bindings generation.Mattes D2015-03-191-26/+45
| | | | | | | | | | | | Fixes #1789.
* | | Added cNetwork initialization to program start.Mattes D2015-03-181-0/+4
| | | | | | | | | | | | Otherwise the server could crash because MSVC doesn't implement magic statics yet.
* | | World:DoWithEntityByID() checks the entities-to-add as well.Mattes D2015-03-181-0/+14
| | | | | | | | | | | | This allows plugins to create entities and immediately act on them using that call. This will most likely need to be added to most of the DoWith<> and ForEach<> calls.
* | | Network: Close the UDP endpoint in destructor.Mattes D2015-03-182-0/+11
| | |
* | | Changed Variable types of Endianness.h to uniform UInt* types from Globals.hbibo382015-03-171-4/+4
| | |
* | | Fixed double underscore identifiers in the Endianess.h file, which are reserved for implementation use. Bug #1715bibo382015-03-171-8/+8
| | |
* | | Merge pull request #1810 from mc-server/paintingsMattes D2015-03-1513-190/+157
|\ \ \ | | | | | | | | Paintings
| * | | Fixed style violationsTiger Wang2015-03-141-2/+2
| | | |
| * | | cPainting saving implementedTiger Wang2015-03-1413-72/+83
| | | | | | | | | | | | | | | | Additionally, it now inherits from cHangingEntity.
| * | | Fixed confusion over Item Frame directionsTiger Wang2015-03-134-120/+76
| | | |
* | | | Merge pull request #1811 from mc-server/grassworktycho2015-03-155-43/+16
|\ \ \ \ | | | | | | | | | | Fixed grass spread, closes #1743
| * | | | Use thread_local in cFastRandomTiger Wang2015-03-141-2/+8
| | | | |
| * | | | Fixed grass spread, closes #1743Tiger Wang2015-03-145-41/+8
| |/ / / | | | | | | | | | | | | | | | | - Removed the salt parameter in cFastRandom functions, it wasn't doing what we thought it was following the move to C++11
* | | | Merge pull request #1734 from mc-server/pistonsMattes D2015-03-147-57/+46
|\ \ \ \ | | | | | | | | | | Handle client 'leave bed' request
| * | | | Reverted non-functional changesTiger Wang2015-03-055-53/+11
| | | | |
| * | | | Handle client 'leave bed' requestTiger Wang2015-02-089-61/+92
| | | | | | | | | | | | | | | | | | | | * Fixes #1728
* | | | | Merge pull request #1808 from tumultenrx/masterMattes D2015-03-146-11/+72
|\ \ \ \ \ | |_|/ / / |/| | | | Monsters will now attack. Additional checks have been added when generating spawn.
| * | | | Fixed a small bugtumultenrx2015-03-141-1/+1
| | | | |
| * | | | Monsters will now attack. Additional checks have been added when generating spawn.tumultenrx2015-03-136-11/+72
| | | | | | | | | | | | | | | | | | | | Monsters will now attack. Additional checks have been added when generating spawn.
* | | | | Merge pull request #1809 from flx5/masterNiLSPACE2015-03-131-3/+3
|\ \ \ \ \ | |/ / / / |/| | | | Performance improvements for #1807
| * | | | Performance improvements for #1807flx52015-03-121-3/+3
| | | | |
* | | | | Merge pull request #1761 from mc-server/NetworkIPEnumMattes D2015-03-124-5/+219
|\ \ \ \ \ | | | | | | | | | | | | cNetwork: Added EnumLocalIPAddresses() function.
| * | | | | Use std::memcpy to fix alignmentTiger Wang2015-03-101-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | As suggested by @madmaxoft
| * | | | | Potential Linux implementationTiger Wang2015-03-081-4/+54
| | | | | |
| * | | | | Network: Replaced magic number with named constant.Mattes D2015-02-221-1/+1
| | | | | |
| * | | | | cNetwork: Added EnumLocalIPAddresses() function.Mattes D2015-02-224-5/+163
| | | | | |
* | | | | | Merge pull request #1807 from flx5/masterMattes D2015-03-119-24/+96
|\ \ \ \ \ \ | | |/ / / / | |/| | | | Fixes #493 and #490
| * | | | | Fixed coding conventions for Pull Request #1807flx52015-03-115-24/+32
| | | | | |
| * | | | | Fixed issue with quotes not appearing in pairsflx52015-03-111-4/+5
| | | | | |
| * | | | | Fixed some markup issuesflx52015-03-111-3/+4
| | | | | |
| * | | | | Fixed some markup issuesflx52015-03-111-3/+5
| | | | | |
| * | | | | Fixes #493 and #490flx52015-03-119-13/+73
| | | | | |
* | | | | | Merge pull request #1665 from mc-server/InventoryMattes D2015-03-1143-701/+1392
|\ \ \ \ \ \ | | | | | | | | | | | | | | Own classes for all windows and implemented vanilla-like shift click.
| * | | | | | Moved window code into cpp filesHowaner2015-03-1023-519/+839
| | | | | | |
| * | | | | | Merge branch 'master' into InventoryHowaner2015-03-0957-259/+4828
| |\| | | | |
| * | | | | | Readded old commentHowaner2015-02-061-0/+2
| | | | | | |
| * | | | | | Merge branch 'master' into InventoryHowaner2015-02-0643-2076/+1185
| |\ \ \ \ \ \
| * | | | | | | Readded old DistributeStackToAreas() comment.Howaner2015-01-251-2/+5
| | | | | | | |
| * | | | | | | Merge branch 'master' into InventoryHowaner2015-01-25202-1316/+4458
| |\ \ \ \ \ \ \
| * | | | | | | | C++11 and function rename.Howaner2014-12-1716-50/+71
| | | | | | | | |
| * | | | | | | | Merge branch 'master' into InventoryHowaner2014-12-1730-2705/+2838
| |\ \ \ \ \ \ \ \
| * | | | | | | | | Implemented vanilla-like shift click.Howaner2014-12-1317-105/+400
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes many visual bugs.
| * | | | | | | | | Own classes for all windows.Howaner2014-12-1328-597/+647
| | | | | | | | | |
* | | | | | | | | | Fixed Bug in cChunkData.worktycho2015-03-101-1/+1
| |_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | FIxed a bug where if the index was not aligned with the sections empty sections would not be set in the correct location.
* | | | | | | | | Fixed client kick/crash if many block changes happendHowaner2015-03-091-3/+15
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Added parenthesis around the comparisonsSTRWarrior2015-03-081-2/+2
| | | | | | | |
* | | | | | | | Added proper trees to Mesa biomesSTRWarrior2015-03-081-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mesa only has small apple trees.
* | | | | | | | Added grass/course dirt layer on MesaPlateauF(M)STRWarrior2015-03-081-0/+14
| | | | | | | |
* | | | | | | | Merge pull request #1784 from mc-server/SteppyHeiGenTiger Wang2015-03-063-1/+409
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Added Steppy height generator.
| * | | | | | | | Steppy HeiGen: Fixed Linux compilation.Mattes D2015-03-011-1/+1
| | | | | | | | |
| * | | | | | | | Added Steppy height generator.Mattes D2015-03-013-1/+409
| | | | | | | | |
* | | | | | | | | Grass checks for sufficient light before spreadingAlexander Harkness2015-03-051-1/+13
| | | | | | | | |
* | | | | | | | | Added OnTeleportEntity hook for plugins.joshi072015-03-057-12/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plugins may or may not allow teleport to the new position. Updated the HookNotify plugin with it.
* | | | | | | | | Lua API: Fixed md5 and sha1 hex formatting.Mattes D2015-03-031-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | std::setw() is only valid for one output operation and needs to be set again in each loop repetition.
* | | | | | | | | Merge pull request #1781 from mc-server/VinesMattes D2015-03-013-0/+122
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ |/| | | | | | | | Vines in caves
| * | | | | | | | Removed trailing whitespaceSTRWarrior2015-03-011-1/+1
| | | | | | | | |
| * | | | | | | | Replaced IntNoiseXX with IntNoiseXXIntSTRWarrior2015-03-011-2/+2
| | | | | | | | |
| * | | | | | | | Replaced cFinishGenPtr with std::make_sharedSTRWarrior2015-03-011-1/+1
| | | | | | | | |
| * | | | | | | | Made the minimum vine level configurableSTRWarrior2015-02-283-4/+7
| | | | | | | | |
| * | | | | | | | Implemented a vines finisher that creates vines in jungle biomesSTRWarrior2015-02-283-0/+119
| |/ / / / / / /
* | | | | | | | Merge pull request #1780 from DevToaster/masterMattes D2015-03-012-53/+53
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Modified Player class to use int data type for experience
| * | | | | | | Changed C-styled casts to static_cast and removed unneeded castsDevToaster2015-02-281-34/+34
| | | | | | | |
| * | | | | | | Replaced short int with int for Player experienceDevToaster2015-02-281-1/+1
| | | | | | | |
| * | | | | | | modified: src/Entities/Player.cppDevToaster2015-02-282-27/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | modified: src/Entities/Player.h
* | | | | | | | Merge pull request #1769 from mc-server/snowweatherNiLSPACE2015-02-284-114/+220
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Snow weather
| * | | | | | | | GetSnowStartHeight returns an intSTRWarrior2015-02-282-2/+2
| | | | | | | | |
| * | | | | | | | changed int to unsignedSTRWarrior2015-02-262-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | And return 0 instead of -1
| * | | | | | | | Ice finisher uses GetSnowStartHeight instead of specific biomesSTRWarrior2015-02-251-26/+19
| | | | | | | | |
| * | | | | | | | Snow finisher uses GetSnowStartHeight instead of specific biomesSTRWarrior2015-02-251-22/+14
| | | | | | | | |
| * | | | | | | | Weather: Snow starts forming when the top block is at the right height or higherSTRWarrior2015-02-251-66/+57
| | | | | | | | |
| * | | | | | | | Added GetSnowStartHeightSTRWarrior2015-02-252-0/+130
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | returns the height of a biome where it starts snowing
* | | | | | | | | Fixed door placement.Mattes D2015-02-281-4/+17
| |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | Doors now have hinges on the correct side, based on what the surroundings are when placing them.
* | | | | | | | Added experience drops when mining oresSTRWarrior2015-02-281-0/+59
| | | | | | | |
* | | | | | | | use DoSetSpeed in AddSpeed* in Entity.cppRaekye2015-02-261-10/+4
|/ / / / / / /
* | | | | | | Fixed flowing water turning into ice when snowingSTRWarrior2015-02-251-1/+1
| | | | | | |
* | | | | | | Merge pull request #1762 from mc-server/LuaStringCompressMattes D2015-02-251-0/+151
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Lua string compress
| * | | | | | | Fixed operatorsSTRWarrior2015-02-231-6/+6
| | | | | | | |
| * | | | | | | Added forgotten indentSTRWarrior2015-02-231-2/+2
| | | | | | | |
| * | | | | | | Replaced lua_isXYZ with cLuaState::CheckParamXYZSTRWarrior2015-02-231-12/+13
| | | | | | | |
| * | | | | | | Exported all compression functions in a new class.STRWarrior2015-02-231-16/+129
| | | | | | | |
| * | | | | | | Exported CompressString and UncompressString to LuaSTRWarrior2015-02-221-0/+37
| | |_|_|_|/ / | |/| | | | |
* | | | | | | 1.8 Protocol: Fixed a possible race condition.Mattes D2015-02-241-5/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1759.
* | | | | | | Fixed race condition for TCP link deleting.Mattes D2015-02-221-2/+6
|/ / / / / / | | | | | | | | | | | | | | | | | | This could have caused crashes when a client disconnected from the server.
* | | | | | Door handler: Removed needless check.Mattes D2015-02-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The Y coord has already been checked above.
* | | | | | Fix door placement checkFreddie Wang2015-02-211-7/+3
| | | | | |
* | | | | | Merge pull request #1758 from mc-server/CryptoHashAPIMattes D2015-02-211-2/+107
|\ \ \ \ \ \ | | | | | | | | | | | | | | Added cCryptoHash namespace to Lua API
| * | | | | | Added cCryptoHash namespace to Lua API.Mattes D2015-02-211-2/+107
| | | | | | |
* | | | | | | Merge pull request #1755 from mc-server/NetworkUDPMattes D2015-02-2111-32/+1400
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | cNetwork: Added UDP API.
| * | | | | | UDPEndpointImpl: Fixed clang warnings.Mattes D2015-02-201-3/+3
| | | | | | |
| * | | | | | cNetwork: Added UDP API.Mattes D2015-02-2011-32/+1400
| | | | | | |
* | | | | | | Fixed monster spawn randomness.Mattes D2015-02-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1699.
* | | | | | | Fixed crash when logging nil values.Matyas Dolak2015-02-201-0/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: http://forum.mc-server.org/showthread.php?tid=1798
* | | | | | | Flower pots: In 1.8 items are saved with the name and not the id.Howaner2015-02-181-5/+12
|/ / / / / /
* | | | | | NetworkSingleton: LibEvent thread is joined properly on server exit.Mattes D2015-02-182-7/+5
| | | | | |
* | | | | | Network: Fixed two-socket servers.Mattes D2015-02-181-1/+1
| | | | | |
* | | | | | Fixed TCP link shutdown.Mattes D2015-02-142-9/+68
| | | | | | | | | | | | | | | | | | | | | | | | The shutdown is postponed until there's no more outgoing data in the LibEvent buffers.
* | | | | | SslContext: Turned debug messages off.Mattes D2015-02-141-1/+1
| | | | | |
* | | | | | Fixed Linux compilation.Mattes D2015-02-142-2/+2
| | | | | |
* | | | | | Exported TLS server start on cTCPLink to Lua API.Mattes D2015-02-133-7/+188
| | | | | |
* | | | | | Exported cTCPLink:Close and :Shutdown() to Lua API.Mattes D2015-02-131-13/+83
| | | | | |
* | | | | | PolarSSL++: Fixed debugging output.Mattes D2015-02-121-0/+3
| | | | | |
* | | | | | Fixed Linux compilation.Mattes D2015-02-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | std::make_unique is not available in C++11.
* | | | | | LuaAPI: Added client TLS support for TCP links.Mattes D2015-02-129-7/+335
| |_|_|_|/ |/| | | |
* | | | | Protocol 1.7: Fixed Coverity issues.Mattes D2015-02-081-4/+7
| | | | | | | | | | | | | | | | | | | | Fixes CID 66411, CID 103166 and CID 103167.
* | | | | ServerHandle: Fixed socket reuse.Mattes D2015-02-081-10/+30
| | | | | | | | | | | | | | | | | | | | Fixes CID 104670, CID 104670 and CID 103724.
* | | | | WSSAnvil: Fixed chunk data padding.Mattes D2015-02-081-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | When the chunk data fit perfectly into the old space, an extra 4 KiB of padding zeroes were written, overwriting the next chunk. Fixes #1730.
* | | | | Merge pull request #1729 from mc-server/ReuseFlagMattes D2015-02-081-1/+14
|\ \ \ \ \ | | | | | | | | | | | | Set reuse flag to sockets
| * | | | | Use evutil_make_listen_socket_reuseableHowaner2015-02-071-16/+6
| | | | | |
| * | | | | Set reuse flag to socketsHowaner2015-02-071-1/+24
| | |_|_|/ | |/| | | | | | | | Should fix #1726
* | | | | Merge pull request #1718 from mc-server/LuaNetworkAPIMattes D2015-02-0715-3/+1427
|\ \ \ \ \ | | | | | | | | | | | | Lua Network API
| * | | | | APIDump: Added cNetwork documentation.Mattes D2015-02-061-1/+1
| | | | | |
| * | | | | LuaServerHandle: Removed debugging output.Mattes D2015-02-041-4/+0
| | | | | |
| * | | | | Exported cServerHandle and cNetwork:Listen to Lua.Mattes D2015-02-0411-14/+613
| | | | | | | | | | | | | | | | | | | | | | | | Also added an example to the NetworkTest plugin.
| * | | | | cNetwork: Exported lookup functions to Lua API.Mattes D2015-02-045-3/+219
| | | | | | | | | | | | | | | | | | | | | | | | Also added an example in the NetworkTest plugin.
| * | | | | cTCPLink: Fixed missing addresses on link connection.Mattes D2015-02-041-2/+2
| | | | | |
| * | | | | cNetwork: Exported the Connect() method and cTCPLink class to Lua.Mattes D2015-02-048-1/+614
| |/ / / /
* | | | | SpacingHowaner2015-02-071-1/+1
| | | | |
* | | | | cPlayer should override IsOnGround()Howaner2015-02-072-3/+3
| | | | |
* | | | | Added IsOnGround() to cEntityHowaner2015-02-072-6/+9
|/ / / /
* | | | Switched LuaState to use sizeof...tycho2015-01-311-15/+1
| | | |
* | | | Merge pull request #1713 from mc-server/UseLibeventMattes D2015-01-3040-2054/+1170
|\ \ \ \ | | | | | | | | | | Use libevent
| * | | | Fixed listening ports not closed on cServerHandle::Close.Mattes D2015-01-271-0/+3
| | | | |
| * | | | Fixed server failure to open any port not aborting the server.Mattes D2015-01-271-29/+35
| | | | |
| * | | | Fixed a deadlock in cClientHandle network sending.Mattes D2015-01-272-5/+28
| | | | |
| * | | | Added network termination called at app exit.Mattes D2015-01-273-14/+52
| | | | | | | | | | | | | | | | | | | | This fixes a crash in MSVC runtime caused by joining a thread in a global var's destructor.
| * | | | cTCPLinkImpl: Added the BEV_OPT_THREADSAFE flag.Mattes D2015-01-271-2/+8
| | | | |
| * | | | ServerHandleImpl: Removed needless diagnostic output.Mattes D2015-01-271-4/+0
| | | | |
| * | | | Client: Only decode protocol when there's actual data incoming.Mattes D2015-01-271-2/+8
| | | | |
| * | | | Fix clang compile errorworktycho2015-01-271-1/+1
| | | | |
| * | | | Removed cFile::ReplaceFileNameInvalidChars().Mattes D2015-01-273-27/+3
| | | | | | | | | | | | | | | | | | | | Its only usage in cProtocol18 has been changed to a simple string replace - only the IPv6's colons were causing problems.
| * | | | Fixed enchant packet handling.Mattes D2015-01-271-3/+3
| | | | |
| * | | | RCONServer: Changed variables to UInt32.Mattes D2015-01-272-32/+29
| | | | |
| * | | | Replaced atoi() with StringToInteger().Mattes D2015-01-275-9/+11
| | | | |
| * | | | Removed ListenThread and SocketThreads.Mattes D2015-01-275-1225/+0
| | | | | | | | | | | | | | | | | | | | | | | | | They have been replaced by the cNetwork API. Socket.cpp is still used by RCONClient.
| * | | | BlockingSslClientSocket: Migrated to cNetwork API.Mattes D2015-01-273-15/+198
| | | | |
| * | | | Converted cServer to use the cNetwork API.Mattes D2015-01-278-413/+330
| | | | |
| * | | | cNetwork: Fixed IP address reading for incoming connections.Mattes D2015-01-271-1/+2
| | | | |
| * | | | Protocol18: Fixed failure with invalig logfile names.Mattes D2015-01-271-8/+15
| | | | |
| * | | | cFile: Added ReplaceFileNameInvalidChars().Mattes D2015-01-272-0/+26
| | | | |
| * | | | StringUtils: Fixed bad predicate in MergeStringVectors().Mattes D2015-01-271-1/+1
| | | | | | | | | | | | | | | | | | | | Instead of preventing duplicates it was allowing only duplicates.
| * | | | RCON server: fixed compilation.Mattes D2015-01-271-1/+1
| | | | |
| * | | | Migrated RCON server to cNetwork API.Mattes D2015-01-272-100/+116
| | | | |
| * | | | Fixed a crash in RCON server.Mattes D2015-01-271-1/+0
| | | | |
| * | | | Fixed missing LibEvent reference in OSSupport.Mattes D2015-01-271-1/+1
| | | | |
| * | | | WebAdmin uses the new cNetwork API.Mattes D2015-01-278-203/+237
| | | | |
| * | | | IniFile: Added common code to migrate ports.Mattes D2015-01-272-4/+56
| | | | | | | | | | | | | | | | | | | | Old settings have IPv4 and IPv6 ports as separate values, new settings have a single value for the ports.
| * | | | StringUtils: Added string vector manipulation.Mattes D2015-01-272-1/+54
| | | | |
* | | | | CheckBasicStyle: Fixed a forgotten file close.Mattes D2015-01-291-0/+1
| | | | |
* | | | | Fixed missing LibEvent reference in OSSupport.Mattes D2015-01-291-1/+1
|/ / / /
* | | | fix logic bug in cChunk::FastSetBlock filtering out leaves meta changesRaekye2015-01-261-7/+9
| | | | | | | | | | | | | | | | - send update if it's not a leaves block and (the original checks)
* | | | filter out leaves meta changes from being sent to the clientRaekye2015-01-261-0/+4
| |_|/ |/| |
* | | Merge pull request #1701 from mc-server/libeventMattes D2015-01-2415-7/+1882
|\ \ \ | | | | | | | | LibEvent-based socket API
| * | | cNetwork: Added self pointers to keep objects alive for callbacks.Mattes D2015-01-235-17/+39
| | | | | | | | | | | | | | | | Ref.: http://forum.mc-server.org/showthread.php?tid=1700&pid=17947#pid17947
| * | | cNetwork: Renamed callback to OnConnected()Mattes D2015-01-222-3/+6
| | | |
| * | | cNetwork: Added link creation callback.Mattes D2015-01-224-15/+42
| | | | | | | | | | | | | | | | This allows the callback classes to store the link inside them and use it internally later on, mainly for sending data.
| * | | cNetwork: Changed listening API.Mattes D2015-01-224-29/+51
| | | | | | | | | | | | | | | | The link-callbacks for each new accepted link are now received from the OnIncomingConnection listen-callback.
| * | | cNetwork: Added error message to error callbacks.Mattes D2015-01-225-13/+20
| | | |
| * | | cTCPLinkImpl: Fixed type conversion warning.Mattes D2015-01-223-5/+5
| | | |
| * | | cNetwork: Fixed race conditions with lookups; proper shutdown.Mattes D2015-01-226-82/+123
| | | |
| * | | cNetwork: Split the main cpp file into several files.Mattes D2015-01-2213-1050/+1148
| | | |
| * | | cNetwork: Fixed WinXP dualstack listening.Mattes D2015-01-221-21/+42
| | | |
| * | | cNetwork: Split cNetworkSingleton to a separate file.Mattes D2015-01-224-325/+430
| | | |
| * | | cNetwork: Fixed WSAStartup()-not-called error in Listen().Mattes D2015-01-221-0/+3
| | | |
| * | | cNetwork: Handle WSA initialization failures.Mattes D2015-01-221-1/+7
| | | |
| * | | cNetwork: Added an OnError callback for listening servers.Mattes D2015-01-222-0/+8
| | | | | | | | | | | | | | | | The callback receives the error details.
| * | | cNetwork: Rewritten server listen into a factory method.Mattes D2015-01-221-88/+102
| | | |
| * | | cNetwork: Removed unneeded dependency.Mattes D2015-01-221-1/+0
| | | |
| * | | cNetwork: Refactored cTCPLinkImpl::Connect into a factory.Mattes D2015-01-221-41/+48
| | | |
| * | | cNetwork: Cosmetics.Mattes D2015-01-221-6/+10
| | | |
| * | | cNetwork: Fixed compilation.Mattes D2015-01-221-9/+8
| | | |
| * | | Wrap debug variable in ifdef worktycho2015-01-221-0/+2
| | | | | | | | | | | | avoidss unused variable error in clang
| * | | cNetwork: Added error logging to server socket creation.Mattes D2015-01-221-6/+24
| | | | | | | | | | | | | | | | This is mainly for WinXP and RasPi testing.
| * | | cNetwork: Added multithreading protection.Mattes D2015-01-222-3/+28
| | | |
| * | | cNetwork: Implemented connection shutdown and close.Mattes D2015-01-222-17/+59
| | | |
| * | | cNetwork: Fixed Linux compilation.Mattes D2015-01-221-5/+23
| | | |
| * | | cNetwork: Implemented link address getting.Mattes D2015-01-221-57/+117
| | | |
| * | | cNetwork: Implemented basic server functionality.Mattes D2015-01-221-122/+215
| | | |
| * | | cNetwork: Implemented IP-to-hostname lookup.Mattes D2015-01-221-8/+114
| | | |
| * | | cNetwork: Implemented HostnameToIP lookups.Mattes D2015-01-222-6/+141
| | | |
| * | | Added newline to logged messages in the tests.Mattes D2015-01-221-8/+12
| | | |
| * | | Extracted Google connection testTycho2015-01-222-74/+13
| | | |
| * | | cNetwork: Linux compilation fix.Mattes D2015-01-222-4/+23
| | | |
| * | | Implemented LibEvent-based client connections.Mattes D2015-01-224-0/+1028
| | | |
| * | | Added the libevent library.Mattes D2015-01-221-1/+1
| | | |
* | | | Fixed defect #43662 in Coverity list.Kirill Kirilenko2015-01-231-1/+17
| | | |
* | | | Fixed defect #43665 in Coverity list.Kirill Kirilenko2015-01-231-0/+11
| | | |
* | | | Fixed defect #73101 in Coverity list.Kirill Kirilenko2015-01-231-1/+13
| | | |
* | | | Fixed defect #43671 in Coverity list.Kirill Kirilenko2015-01-231-0/+4
| | | |
* | | | Fixed defect #43661 in Coverity list.Kirill Kirilenko2015-01-231-1/+2
| | | |
* | | | Fixed defect #71781 in Coverity list.Kirill Kirilenko2015-01-231-0/+5
| | | |
* | | | Fixed negative return values in SchematicFileSerializer.Matyas Dolak2015-01-231-1/+3
|/ / / | | | | | | | | | Fixes CID 103165.
* | | Fixed warnings in StringUtils.Mattes D2015-01-212-49/+59
| | |
* | | ByteBuffer: Added support for reading unsigned shorts and ints.Matyas Dolak2015-01-212-1/+33
| | |
* | | Fixed warnings in FastNBT.cpp.Mattes D2015-01-201-39/+40
| | |
* | | Fixed warnings in 1.7 protocol.Mattes D2015-01-183-110/+131
| | |
* | | Fixed various warnings.Mattes D2015-01-183-8/+8
| | |
* | | cWorld: Fixed a type warning.Mattes D2015-01-181-1/+1
| | |
* | | Fixed type conversion warnings.Mattes D2015-01-182-4/+4
| | |
* | | Merge pull request #1702 from mc-server/chronoMattes D2015-01-18117-260/+262
|\ \ \ | | | | | | | | Started to convert more of MCServer to std::chrono
| * | | Fixed type-conversion warnings.Mattes D2015-01-184-8/+8
| | | |
| * | | correct comment to say millisecondsworktycho2015-01-171-1/+1
| | | |
| * | | Converted Monster to std::chronoTycho2015-01-164-18/+18
| | | |
| * | | Converted cPickupEntity to std::chronoTycho2015-01-162-12/+12
| | | |
| * | | Converted MinecartEntity to std::chronoTycho2015-01-162-8/+8
| | | |
| * | | Converted cExpOrbEntity to std::chronoTycho2015-01-162-7/+7
| | | |
| * | | Converted ArrowEntityTiers to std::chronoTycho2015-01-162-7/+7
| | | |
| * | | Fix trailing whitespaceTycho2015-01-111-1/+1
| | | |
| * | | Initial convertion of a_Dt to std::chronoTycho2015-01-11117-221/+221
| | | | | | | | | | | | | | | | also refactored cWorld::m_WorldAge and cWorld::m_TimeOfDay
| * | | Created new type cTickTime and rewrote cWorld::TickThread to use itTycho2015-01-112-6/+8
| | | |
* | | | Fixed CppCheck: (performance) Prefer prefix ++/-- operators for non-primitive types.Kirill Kirilenko2015-01-172-2/+2
| | | |
* | | | Fixed CppCheck: (performance) Possible inefficient checking for emptiness.Kirill Kirilenko2015-01-174-5/+5
| | | |
* | | | Fixed CppCheck: (performance) Function parameter should be passed by reference.Kirill Kirilenko2015-01-172-4/+4
|/ / /
* | | Fixed Linux compilation.Mattes D2015-01-032-2/+2
| | |
* | | Protocols: Ignore garbage data at the end of PluginMessage packets.Mattes D2015-01-032-0/+21
| | | | | | | | | | | | Fixes #1692.
* | | cByteBuffer: Improved SingleThreadAccessChecker performance.Mattes D2015-01-031-1/+6
| | | | | | | | | | | | But it's still poor and unusable for regular testing.
* | | MobHead: Fixed wither spawning.Mattes D2014-12-251-13/+40
| | |
* | | MobHeads: fixed regular head placement.Mattes D2014-12-251-2/+22
| | |
* | | Fixed door placement.Mattes D2014-12-252-3/+4
| | |
* | | Fixed forgotten big flower handler.Mattes D2014-12-251-1/+2
| | |
* | | Fixed basic style.Mattes D2014-12-254-23/+71
| | |
* | | cIsThread: Fixed a race condition on thread start.Mattes D2014-12-252-7/+30
| | |
* | | Merge pull request #1686 from mc-server/PlaceBlockRefactorMattes D2014-12-2545-776/+1477
|\ \ \ | | | | | | | | Place block refactor
| * | | APIDump: Updated the player block placement documentation.Mattes D2014-12-241-1/+2
| | | | | | | | | | | | | | | | The hooks now have fewer parameters but are called on all player-placed blocks (#1618).
| * | | Fixed redstone dust placement on upside-down slabs.Mattes D2014-12-241-1/+36
| | | |
| * | | Replaced a std::hash specialization with explicit type.Mattes D2014-12-242-8/+4
| | | | | | | | | | | | | | | | std::hash is problematic in gcc / clang, one has a class, the other a struct.
| * | | gcc compilation fix.Mattes D2014-12-241-1/+6
| | | |
| * | | Refactored all player block placing to go through hooks.Mattes D2014-12-2443-775/+1423
| | | | | | | | | | | | | | | | Fixes #1618.
| * | | Added Vector3::TurnCW() and Vector3::TurnCCW()Mattes D2014-12-241-0/+16
| | | |
* | | | ByteBuffer: SingleThreadAccessChecker is request-only.Mattes D2014-12-241-1/+10
|/ / / | | | | | | | | | It slows the server down way too much, so it can't be turned on by default.
* | | Init Mojang API pointerworktycho2014-12-231-0/+1
| | | | | | | | | Fixes CID 90583
* | | Fix compile error on OS X introduced by commit ecf778bbec2794562bf5e5b8645e2171f7cd081cJonathan Fabian2014-12-221-1/+1
| | | | | | | | | | | | The following error occurs on OS X with the order reversed: `MCServer/src/World.cpp:282:2: error: field 'm_LastSave' will be initialized after field 'm_LastUnload' [-Werror,-Wreorder] m_LastSave(0),`. Reversing the order of initialization fixes this.
* | | Added Depth Strider enchantmentJonathan Fabian2014-12-222-0/+16
| | |
* | | WSSAnvil: Added clamping to entity coords.Mattes D2014-12-211-3/+3
| | | | | | | | | | | | Fixes CID 72854.
* | | FastNBT: Added a sanity check for number of list items.Mattes D2014-12-211-1/+8
| | | | | | | | | | | | Fixes CID 55812.
* | | cChunk: Fixed missing initialization.Mattes D2014-12-211-0/+2
| | | | | | | | | | | | Fixes CID 72670.
* | | cWorld: Moved initialization into constructor.Mattes D2014-12-211-3/+2
| | | | | | | | | | | | Fixes CID 71781.
* | | cEndGen: Fixed unitialized member variables.Mattes D2014-12-211-1/+3
| | | | | | | | | | | | Fixes CID 43671.
* | | cNoise3DComposable: Fixed unitialized member variables.Mattes D2014-12-211-1/+3
| | | | | | | | | | | | Fixes CID 43665.
* | | Fixed coverity issues in protocols.Mattes D2014-12-212-4/+11
| | | | | | | | | | | | Fixes CID 73099, CID 66411.
* | | Fixed a possible division by zero.Mattes D2014-12-213-6/+16
| | |
* | | Fixed crash on restartTiger Wang2014-12-212-5/+14
| | |
* | | Merge pull request #1682 from Masy98/entitiesMattes D2014-12-2112-0/+97
|\ \ \ | | | | | | | | Added Rabbits
| * | | Fixed damn empty line with no useMasy982014-12-202-5/+1
| | | |
| * | | Added Rabbit.h and Rabbit.cpp to the CMakeListMasy982014-12-201-0/+2
| | | |
| * | | Fixed Rabbit sizeMasy982014-12-201-1/+1
| | | |
| * | | Added RabbitsMasy982014-12-2011-0/+99
| | | |
* | | | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-12-2113-1/+140
|\| | |
| * | | Fixed Guardians size and healthMasy982014-12-191-1/+1
| | | |
| * | | Guardian can now spawn if wanted!?Masy982014-12-182-2/+2
| | | |
| * | | Merge branch 'master' into entitiesMasy982014-12-1830-2702/+2817
| |\ \ \
| * | | | Added Entity GuardianMasy982014-12-1814-2/+141
| | | | |
* | | | | Fix repeater unpoweringTiger Wang2014-12-181-2/+4
| |/ / / |/| | |
* | | | derpHowaner2014-12-171-1/+1
| | | |
* | | | Added comment.Howaner2014-12-171-1/+1
| | | |
* | | | Fixed eMonsterType lua bugs.Howaner2014-12-171-0/+1
| |_|/ |/| |
* | | Merge pull request #1674 from gushromp/masterMattes D2014-12-171-8/+7
|\ \ \ | | | | | | | | Fix for water spreading on bottom of the world
| * | | Removed unneeded newlinesIvan Đorđević2014-12-171-6/+0
| | | |
| * | | Merge branch 'master' of https://github.com/gushromp/MCServergushromp2014-12-161-0/+1
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/Simulator/FloodyFluidSimulator.cpp
| | * | | Fixed water from spreading on bottom of worldgushromp2014-12-161-5/+8
| | | | |
| * | | | Fixed water from spreading on bottom of worldgushromp2014-12-161-7/+11
| |/ / /
* | | | Merge pull request #1581 from mc-server/redstoneMattes D2014-12-1722-2689/+2645
|\ \ \ \ | |/ / / |/| | | Resplit redstone .inc file and provided improvements
| * | | NULL -> nullptrTiger Wang2014-12-175-18/+22
| | | |
| * | | Merge branch 'master' into redstoneTiger Wang2014-12-13178-4115/+9711
| |\ \ \ | | | |/ | | |/|
| * | | Improved redstone simulatorTiger Wang2014-10-292-818/+808
| | | | | | | | | | | | | | | | | | | | | | | | * Fixed style inconsistencies * Used more C++11 features * Improved speed perhaps
| * | | Cleaned up simulatorsTiger Wang2014-10-2517-2681/+2644
| | | |
| * | | Fixed some block checksTiger Wang2014-10-252-4/+3
| | | | | | | | | | | | | | | | * Fixes #1330
* | | | Added braces to 'if' according to the code guidelinesgushromp2014-12-151-0/+2
| | | |
* | | | Updated cPlayer::DoMoveToWorld to send target world's weather info to Playerblashyrk2014-12-151-0/+4
| | | |
* | | | Fixed mob invisibilityHowaner2014-12-141-1/+0
| | | |
* | | | Merge branch 'master' into CocoaHowaner2014-12-141-3/+22
|\ \ \ \ | | |_|/ | |/| |
| * | | WormNestCaves occasionally generates sandstone around the caveSTRWarrior2014-12-131-3/+22
| | |/ | |/| | | | | | | Only when the block around the cave is sand.
* | | "& 0x0f" isn't neededHowaner2014-12-142-3/+3
| | |
* | | FixesHowaner2014-12-134-5/+22
| | |
* | | Merge branch 'master' into CocoaHowaner2014-12-1391-1681/+1827
|\| |
| * | Merge pull request #1660 from Seadragon91/masterMattes D2014-12-121-1/+1
| |\ \ | | | | | | | | Fixed print of milliseconds from chrono
| | * | Fixed print of milliseconds from chronoLukas Pioch2014-12-121-1/+1
| | | |
| * | | LightingThread: Fixed a memory leak.Mattes D2014-12-121-2/+2
| | | |
| * | | Exported cWorld:PrepareChunk to Lua API, test in Debuggers.Mattes D2014-12-121-0/+67
| |/ /
| * | Merge pull request #1657 from mc-server/PrepareChunkMattes D2014-12-1111-51/+293
| |\ \ | | | | | | | | Prepare chunk
| | * | Added a cWorld:PrepareChunk function.Mattes D2014-12-109-51/+260
| | | | | | | | | | | | | | | | | | | | It prepares the chunk - loads or generates it and lights it. The spawn prepare process uses this function.
| | * | Lighting thread: skip chunks that are already lit.Mattes D2014-12-101-0/+10
| | | |
| | * | Added a RemoveIf() function to cQueueMattes D2014-12-091-0/+23
| | | |
| * | | Cosmetic touchups.Mattes D2014-12-115-10/+11
| | | | | | | | | | | | | | | | Removed trailing whitespace, added cast to remove warning, added file seeking in case of corrupt files.
| * | | Merge remote-tracking branch 'planetx/master'Mattes D2014-12-112-5/+33
| |\ \ \
| | * | | Check to see if header write out is requiredplanetx2014-12-081-17/+15
| | | | |
| | * | | Added timestamp to merged files WSSAnvilplanetx2014-12-081-1/+1
| | | | |
| | * | | Added timestamp to merged files WSSAnvilplanetx2014-12-081-62/+62
| | | | |
| | * | | Added timestamp to new files WSSAnvilplanetx2014-12-082-79/+149
| | | | |
| | * | | Added Timestamp info to chunks in WSSAnvilplanetx2014-12-072-87/+47
| | | | |
| * | | | Fixed DungeonRooms edges not generating sometimes.Mattes D2014-12-111-2/+2
| | | | |
| * | | | Merge pull request #1655 from tonibm19/patch-2Mattes D2014-12-101-1/+1
| |\ \ \ \ | | | | | | | | | | | | Added NetherOreNests to default nether generator.
| | * | | | Moved NetherOreNeststonibm192014-12-101-1/+1
| | | | | |
| | * | | | Added NetherOreNests to nether default generator.tonibm192014-12-081-1/+1
| | | | | | | | | | | | | | | | | | Now there's quartz in the nether
| * | | | | Merge pull request #1623 from p-mcgowan/issue_1253Mattes D2014-12-108-3/+94
| |\ \ \ \ \ | | | | | | | | | | | | | | Prevent multiple logins with same username, unless allowed in settings
| | * | | | | Changed method call to DoesAllowMultiLogin() instead of IsAllowMultiLogin()Vincent2014-12-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Compiles correctly.
| | * | | | | Fixed return value in CheckMultiLogin()Vincent2014-12-091-1/+2
| | | | | | |
| | * | | | | Fixed indent problems and added return definitions to CheckMultiLogin().Vincent2014-12-093-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed from IsAllowMultiLogin() to DoesAllowMultiLogin(). Fixed CheckMultiLogin() to not run to the end without returning a value.
| | * | | | | Changed DoWithPlayer to auto instead of using iterator.Vincent2014-12-091-2/+2
| | | | | | |
| | * | | | | Changed CheckMultiLogin() to not have main body wrapped in an if statement.Vincent2014-12-084-21/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added in indent to cPlayerListCallBack in cCallback class inside CheckMultiLogin(). Added doxy-comment for DoWithPlayer(). Changed comments on IsPlayerInQueue() and IsAllowMultiLogin() to doxy-comments.
| | * | | | | created callback in Root and changed CheckMultiLogin() to use the DoWithPlayer function at Root instead of World.Vincent2014-12-082-2/+9
| | | | | | |
| | * | | | | Fixed compile errorsVincent2014-12-086-18/+14
| | | | | | |
| | * | | | | removed last space in handlehandshakeVincent2014-12-081-1/+0
| | | | | | |
| | * | | | | Changed HandleHandshake to return the result of CheckMultiLogin instead of just true since it already returns true if it finds and kicks the current player.Vincent2014-12-081-24/+23
| | | | | | |
| | * | | | | Moved the check into a new function and just calls that function and a blank FindAndDoWithPlayer added.Vincent2014-12-084-23/+52
| | | | | | |
| | * | | | | Merge branch 'issue_1253' of https://github.com/p-mcgowan/MCServer into issue_1253Vincent2014-12-071-5/+5
| | |\ \ \ \ \
| | | * | | | | Changed Kick messagevincentleung12014-11-301-2/+2
| | | | | | | |
| | | * | | | | removed extra space and fixed some formatting in cCallbackvincentleung12014-11-301-3/+3
| | | | | | | |
| | * | | | | | changed from using iterator to auto for server and clienthandleVincent2014-12-072-4/+4
| | |/ / / / /
| | * | | | | removed GetUsernames() from WorldVincent2014-11-302-18/+0
| | | | | | |
| | * | | | | Uses callback for players already in World.Vincent2014-11-301-5/+12
| | | | | | |
| | * | | | | fixed naming of strings and changed from i to IVincent2014-11-295-13/+18
| | | | | | |
| | * | | | | issue 1253 - prevent multiple logins with same usernameVincent2014-11-295-0/+58
| | | | | | |
| * | | | | | Fixed compiling.Howaner2014-12-091-1/+1
| | | | | | |
| * | | | | | Moved NaturalPatches in front of PreSimulator and Animals.Mattes D2014-12-081-1/+1
| | |/ / / / | |/| | | |
| * | | | | Added NaturalPatches to finisherstonibm192014-12-081-1/+1
| | |_|/ / | |/| | |
| * | | | cMojangAPI: Fixed a possible problem with thread termination order.Mattes D2014-12-071-5/+17
| | | | |
| * | | | Fixed integer overflow problems.Mattes D2014-12-072-4/+4
| | | | | | | | | | | | | | | | | | | | The event would overflow when requesting a 60 minute timeout.
| * | | | Merge remote-tracking branch 'origin/master' into c++11EventsMattes D2014-12-07157-3812/+5672
| |\ \ \ \
| | * | | | Fixed format warning.Mattes D2014-12-071-2/+2
| | | | | |
| | * | | | Fixed crash on server stop.Mattes D2014-12-071-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The entity destructors called through chunkmap destructor and chunk destructor were accessing the world which was in an already invalid state (half-destroyed). Fixed by destroying chunkmap explicitly and providing a nullptr check in the HasEntity() function.
| | * | | | Fixed c++11 branch issues.Mattes D2014-12-077-44/+57
| | | | | |
| | * | | | Merge pull request #1555 from mc-server/c++11Mattes D2014-12-0742-1213/+329
| | |\ \ \ \ | | | | | | | | | | | | | | C++11
| | | * \ \ \ Merge remote-tracking branch 'origin/master' into c++11Tiger Wang2014-12-0635-148/+682
| | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/OSSupport/Thread.cpp
| | | * | | | | CheckBasicStyle: Doesn't report false positives ending in a keyword.Mattes D2014-12-041-5/+5
| | | | | | | |
| | | * | | | | Fixed trailing whitespace.Mattes D2014-12-042-6/+6
| | | | | | | |
| | | * | | | | Merged branch 'origin/master' into c++11.Mattes D2014-12-0466-322/+961
| | | |\ \ \ \ \
| | | * | | | | | Fixed indent.Mattes D2014-12-031-2/+2
| | | | | | | | |
| | | * | | | | | Server: Fixed a MSVC warning.Mattes D2014-12-031-1/+1
| | | | | | | | |
| | | * | | | | | ByteBuffer: Re-added Single-thread access checker.Mattes D2014-12-032-0/+90
| | | | | | | | |
| | | * | | | | | Merge remote-tracking branch 'origin-master' into c++11Tiger Wang2014-11-2632-1653/+1688
| | | | | | | | |
| | | * | | | | | Removed unnecessary #includesTiger Wang2014-11-232-2/+0
| | | | | | | | |
| | | * | | | | | Merge remote-tracking branch 'origin/master' into c++11Tiger Wang2014-11-2360-776/+5654
| | | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Noise/Noise.h src/World.h
| | | * | | | | | | Compilation fixesTiger Wang2014-11-233-10/+8
| | | | | | | | | |
| | | * | | | | | | Merged branch 'master' into c++11.Mattes D2014-10-2441-151/+1412
| | | |\ \ \ \ \ \ \ | | | | | |_|_|_|_|/ | | | | |/| | | | |
| | | * | | | | | | SuggestionsTiger Wang2014-10-247-10/+50
| | | | | | | | | |
| | | * | | | | | | Added FastRandom.* back to CMakeLists.txt.Mattes D2014-10-231-0/+2
| | | | | | | | | |
| | | * | | | | | | Merged branch 'master' into c++11.Mattes D2014-10-2346-517/+755
| | | |\ \ \ \ \ \ \
| | | * | | | | | | | Missing EOL.Alexander Harkness2014-10-211-1/+1
| | | | | | | | | | |
| | | * | | | | | | | Alignment.Alexander Harkness2014-10-211-6/+6
| | | | | | | | | | |
| | | * | | | | | | | Missing space.Alexander Harkness2014-10-211-1/+1
| | | | | | | | | | |
| | | * | | | | | | | Missing space fix.Alexander Harkness2014-10-211-1/+1
| | | | | | | | | | |
| | | * | | | | | | | Compile fix?Tiger Wang2014-10-212-4/+2
| | | | | | | | | | |
| | | * | | | | | | | Windows close handlers handles more closesTiger Wang2014-10-211-5/+2
| | | | | | | | | | |
| | | * | | | | | | | Replace &*[0] accesses with .data()Tiger Wang2014-10-213-8/+8
| | | | | | | | | | |
| | | * | | | | | | | En masse NULL -> nullptr replaceTiger Wang2014-10-20211-1439/+1439
| | | | | | | | | | |
| | | * | | | | | | | Use std::recusive_mutexTiger Wang2014-10-203-52/+9
| | | | | | | | | | |
| | | * | | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-10-2032-226/+272
| | | |\ \ \ \ \ \ \ \
| | | * | | | | | | | | Migrated cSleep and cTimer to std::chronoTiger Wang2014-10-2018-168/+45
| | | | | | | | | | | |
| | | * | | | | | | | | Migrated random generators to std::randomTiger Wang2014-10-1916-556/+102
| | | | | | | | | | | |
| | | * | | | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-10-1939-496/+260
| | | |\ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | Use std::threadTiger Wang2014-10-1913-432/+59
| | | | | | | | | | | | |
| | * | | | | | | | | | | Reduced river heightSTRWarrior2014-12-071-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rivers would exceed the water height quite often
| | * | | | | | | | | | | Fixed error message in cFinishGenPassiveMobsSTRWarrior2014-12-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It would send an error message when trying to spawn mobs in a desert
| | * | | | | | | | | | | Replaced most auto_ptr with unique_ptr.Mattes D2014-12-062-62/+62
| | | |_|_|_|_|_|_|/ / / | | |/| | | | | | | | |
| | * | | | | | | | | | Merge pull request #1647 from mc-server/SocketThreadsFixMattes D2014-12-061-3/+11
| | |\ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|/ | | |/| | | | | | | | | Fixes socket leak in HTTP server.
| | | * | | | | | | | | Fixes socket leak in HTTP server.Mattes D2014-12-031-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1643.
| | * | | | | | | | | | FinishGenPassiveMobs: Cosmetic changes.Mattes D2014-12-052-30/+33
| | | | | | | | | | | |
| | * | | | | | | | | | formatting and default spawn percentagep-mcgowan2014-12-051-1/+2
| | | | | | | | | | | |
| | * | | | | | | | | | Merge branch 'master' of github.com:p-mcgowan/MCServer into animalTerrainFinisherp-mcgowan2014-12-0537-183/+484
| | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | update
| | | * | | | | | | | | | CheckBasicStyle: Check missing braces for control statements.Mattes D2014-12-051-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only single-line control statements are checked.
| | | * | | | | | | | | | BasicStyle: Added missing braces to control statements.Mattes D2014-12-0517-54/+241
| | | | | | | | | | | | |
| | | * | | | | | | | | | CheckBasicStyle: Added a check for parentheses around comparisons.Mattes D2014-12-051-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The check is only rudimentary and tends to fall towards missed positived rather than false positives.
| | | * | | | | | | | | | Fixed reported parentheses around comparisons.Mattes D2014-12-0514-83/+99
| | | | | | | | | | | | |
| | | * | | | | | | | | | Merge pull request #1648 from mc-server/CraftingLuaFixMattes D2014-12-046-6/+6
| | | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed the CRAFTING_NO_RECIPE hook call.
| | | | * | | | | | | | | | Fixed the CRAFTING_NO_RECIPE hook call.Mattes D2014-12-046-6/+6
| | | | |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It used a pointer-to-pointer-to-cCraftingRecipe, which the Lua bindings didn't know how to handle, and emitted a warning message at runtime. Fixes #1641.
| | | * | | | | | | | | | conflict resolutionp-mcgowan2014-12-048-40/+79
| | | |\ \ \ \ \ \ \ \ \ \ | | | | | |_|_|_|_|_|_|/ / | | | | |/| | | | | | | |
| | | | * | | | | | | | | Merge pull request #1645 from jonfabe/SpectatorModeFixesMattes D2014-12-042-7/+12
| | | | |\ \ \ \ \ \ \ \ \ | | | | | |/ / / / / / / / | | | | |/| | | | | | | | Spectator mode fixes
| | | | | * | | | | | | | Updated whitespace in comment, changed conditional to logical equivalent due to popular demandJonathan Fabian2014-12-041-2/+2
| | | | | | | | | | | | |
| | | | | * | | | | | | | Fix Spaces to TabsJonathan Fabian2014-12-031-5/+5
| | | | | | | | | | | | |
| | | | | * | | | | | | | Add missing IsSpectatorMode() checks in Player.cpp, make sure that player is flying when spawned otherwise it will fall through the world.Jonathan Fabian2014-12-031-6/+11
| | | | | | | | | | | | |
| | | | | * | | | | | | | Allow Spectator Gamemode as a world default.Jonathan Fabian2014-12-031-1/+1
| | | | | | | | | | | | |
| | | | * | | | | | | | | Merge pull request #1646 from p-mcgowan/luaCheckstyleWarningsMattes D2014-12-034-34/+34
| | | | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | clearing CheckBasicStyle.lua messages
| | | | | * | | | | | | | | clearing CheckBasicStyle.lua messagesp-mcgowan2014-12-034-34/+34
| | | | | |/ / / / / / / /
| | | | * | | | | | | | | Merge pull request #1640 from p-mcgowan/mooshroomMobSpawnerRuleMattes D2014-12-031-0/+13
| | | | |\ \ \ \ \ \ \ \ \ | | | | | |/ / / / / / / / | | | | |/| | | | | | | | added spawning rule to mooshroom
| | | | | * | | | | | | | updated mooshroom check for myceliump-mcgowan2014-12-021-1/+1
| | | | | | | | | | | | |
| | | | | * | | | | | | | extra formatting parenthesesp-mcgowan2014-12-021-2/+2
| | | | | | | | | | | | |
| | | | | * | | | | | | | added spawning rule to mooshroomp-mcgowan2014-12-021-0/+13
| | | | | | | | | | | | |
| | | | * | | | | | | | | Merge pull request #1634 from mc-server/DungeonSpawnersMattes D2014-12-021-1/+22
| | | | |\ \ \ \ \ \ \ \ \ | | | | | |/ / / / / / / / | | | | |/| | | | | | | | Dungeons spawners now spawn mobs
| | | | | * | | | | | | | Fixed forgotten semicolonSTRWarrior2014-12-021-1/+1
| | | | | | | | | | | | |
| | | | | * | | | | | | | Using IntNoise3DInt instead of IntNoise3DSTRWarrior2014-12-021-1/+1
| | | | | | | | | | | | |
| | | | | * | | | | | | | Suggestions by xoftSTRWarrior2014-12-021-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using IntNoise3D to prevent needless floating point math
| | | | | * | | | | | | | Using static cast for Dungeon spawnersSTRWarrior2014-12-011-1/+1
| | | | | | | | | | | | |
| | | | | * | | | | | | | Dungeons spawners now spawn mobsSTRWarrior2014-12-011-1/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 25% for a spider, 25% for a skeleton and 50% for a zombie spawner.
| | | * | | | | | | | | | reformat for lua and CIp-mcgowan2014-12-022-6/+9
| | | | | | | | | | | | |
| | | * | | | | | | | | | formatting and commenting fixesp-mcgowan2014-12-022-6/+6
| | | | | | | | | | | | |
| | | * | | | | | | | | | cacti no longer spawn outside of desert variantsp-mcgowan2014-12-012-1/+16
| | | |/ / / / / / / / /
| | * | | | | | | | | | reformatp-mcgowan2014-12-051-9/+5
| | | | | | | | | | | |
| | * | | | | | | | | | restructure, with logic this timep-mcgowan2014-12-051-5/+13
| | | | | | | | | | | |
| | * | | | | | | | | | restructured random animals, added check for desert (update as per wiki)p-mcgowan2014-12-051-19/+17
| | | | | | | | | | | |
| | * | | | | | | | | | handle non-vanilla dimensionsp-mcgowan2014-12-051-2/+2
| | | | | | | | | | | |
| | * | | | | | | | | | handle non-vanilla dimensionsp-mcgowan2014-12-051-2/+3
| | | | | | | | | | | |
| | * | | | | | | | | | formatting fixesp-mcgowan2014-12-051-4/+11
| | | | | | | | | | | |
| | * | | | | | | | | | format blocks and randomizingp-mcgowan2014-12-042-9/+9
| | | | | | | | | | | |
| | * | | | | | | | | | last doxy fixp-mcgowan2014-12-041-3/+3
| | | | | | | | | | | |
| | * | | | | | | | | | awful comment fixing, randomizer fixp-mcgowan2014-12-042-19/+32
| | | | | | | | | | | |
| | * | | | | | | | | | class description and doxy-commentingp-mcgowan2014-12-032-5/+8
| | | | | | | | | | | |
| | * | | | | | | | | | doxy-commentingp-mcgowan2014-12-031-3/+3
| | | | | | | | | | | |
| | * | | | | | | | | | forgot generation defaul initp-mcgowan2014-12-031-1/+1
| | | | | | | | | | | |
| | * | | | | | | | | | forgot initializerp-mcgowan2014-12-031-1/+5
| | | | | | | | | | | |
| | * | | | | | | | | | typos and oversights for lua and CIp-mcgowan2014-12-021-1/+5
| | | | | | | | | | | |
| | * | | | | | | | | | fastRandom unusedp-mcgowan2014-12-021-1/+0
| | | | | | | | | | | |
| | * | | | | | | | | | indentation, repeatable random, small correctionsp-mcgowan2014-12-021-98/+93
| | | | | | | | | | | |
| | * | | | | | | | | | fix comments after replacing spaces with tabsp-mcgowan2014-12-021-4/+4
| | | | | | | | | | | |
| | * | | | | | | | | | animal terrain finisherp-mcgowan2014-12-022-187/+187
| | | | | | | | | | | |
| | * | | | | | | | | | animal terrain finisherp-mcgowan2014-12-022-0/+241
| | |/ / / / / / / / /
| | * | | | | | | | | Using static cast for MineShaft spawnersSTRWarrior2014-12-011-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Mineshaft spawners now spawn cave spidersSTRWarrior2014-12-011-1/+4
| | |/ / / / / / / /
| | * | | | | | | | Simplefied SoulsandRimsSTRWarrior2014-12-011-36/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced two for loops with a single if
| | * | | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerSTRWarrior2014-12-0128-168/+586
| | |\ \ \ \ \ \ \ \
| | * | | | | | | | | Added better soulsand rimsSTRWarrior2014-12-015-12/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As a finisher called SoulsandRims
| * | | | | | | | | | cEvent: Changed chrono duration resolution.Mattes D2014-11-041-1/+1
| | | | | | | | | | |
| * | | | | | | | | | cEvent: Changed steady_clock to system_clock.Mattes D2014-11-041-2/+2
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'master' into c++11EventsMattes D2014-11-0419-114/+3492
| |\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Moved the chrono include into Globals.Mattes D2014-10-242-1/+2
| | | | | | | | | | | |
| * | | | | | | | | | | Added a missing chrono include.Mattes D2014-10-241-0/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Merge branch 'master' into c++11EventsMattes D2014-10-2439-148/+1407
| |\ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|/ / / | | |/| | | | | | | | |
| * | | | | | | | | | | Reimplemented cEvent using C++11 primitives.Mattes D2014-10-232-136/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1523.
* | | | | | | | | | | | Added cocoa pod.Howaner2014-12-015-2/+139
| |_|_|_|/ / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | MobSpawner fixes.Howaner2014-12-016-5/+13
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' into MobSpawnerHowaner2014-12-015-20/+44
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: MCServer/Plugins/APIDump/APIDesc.lua
| * | | | | | | | | | Merge pull request #1624 from mc-server/LuaDeprecatingMattes D2014-12-013-19/+39
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Mark StringToMobType() as deprecated. Use cMonster:StringToMobType() instead
| | * | | | | | | | | | Removed old StringToMobType() function from Monster.cppHowaner2014-11-301-10/+0
| | | | | | | | | | | |
| | * | | | | | | | | | Mark StringToMobType() as deprecated. Use cMonster:StringToMobType() insteadHowaner2014-11-292-9/+39
| | | |_|_|_|_|_|_|_|/ | | |/| | | | | | | |
| * | | | | | | | | | DistortedHeightmap: Added missing initialization.Mattes D2014-12-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was probably the original cause for the "empty chunks". Fixes #1433.
| * | | | | | | | | | Noise3D: Fixed missing initialization.Mattes D2014-12-011-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should fix terrain being at Y=0 or Y=255 for the spawn chunk. Fixes #1433.
* | | | | | | | | | | Merge branch 'master' into MobSpawnerHowaner2014-11-3010-9/+80
|\| | | | | | | | | |
| * | | | | | | | | | Hopefully fixed random build failsSTRWarrior2014-11-301-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Fixed a crash in cSpawnPrepare.Mattes D2014-11-301-0/+2
| | | | | | | | | | |
| * | | | | | | | | | Fixed nether ceilingSTRWarrior2014-11-301-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Fixed compiling on linux.Howaner2014-11-301-0/+1
| | | | | | | | | | |
| * | | | | | | | | | Improved comments for cWorld::DoWithPlayer().Mattes D2014-11-302-2/+3
| | | | | | | | | | |
| * | | | | | | | | | Removed unneeded include.Mattes D2014-11-291-1/+0
| | | | | | | | | | |
| * | | | | | | | | | Fixed QtBiomeVisualiser compilation.Mattes D2014-11-291-1/+0
| | | | | | | | | | |
| * | | | | | | | | | Added a basic stacktracing for assert and signal failures.Mattes D2014-11-295-4/+73
| |/ / / / / / / / /
* | | | | | | | | | Removed unused imports.Howaner2014-11-292-2/+0
| | | | | | | | | |
* | | | | | | | | | Many api fixes, add vanilla names to mob type -> string functions and mob spawner fixes.Howaner2014-11-2911-116/+86
| | | | | | | | | |
* | | | | | | | | | Merge branch 'master' into MobSpawnerHowaner2014-11-2982-2253/+3203
|\| | | | | | | | |
| * | | | | | | | | Chunk: Fixed same-name iterators.Mattes D2014-11-271-5/+5
| | | | | | | | | |
| * | | | | | | | | OctavedNoise: Another unshadowed local variable.Mattes D2014-11-271-9/+11
| | | | | | | | | |
| * | | | | | | | | Minecart.h: Fixed integral conversion warning.Mattes D2014-11-271-1/+1
| | | | | | | | | |
| * | | | | | | | | RidgedNoise: Replaced fabs with std::abs().Mattes D2014-11-271-2/+2
| | | | | | | | | |
| * | | | | | | | | OctavedNoise: Unshadowed a local variable.Mattes D2014-11-271-10/+12
| | | | | | | | | |
| * | | | | | | | | BlockEntities: Removed the extra semicolon.Mattes D2014-11-2716-24/+25
| | | | | | | | | |
| * | | | | | | | | Replaced auto_ptr with unique_ptr.Mattes D2014-11-272-6/+6
| | | | | | | | | |
| * | | | | | | | | CompoGenBiomal: Fixed signed vs unsigned comparison.Mattes D2014-11-271-1/+1
| | | | | | | | | |
| * | | | | | | | | Fixed BlockStringToType return value.Mattes D2014-11-273-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -1 was not a valid BLOCKTYPE and would not be recognized by the callers, ever.
| * | | | | | | | | CMake: Fixed linux builds.Mattes D2014-11-261-5/+4
| | | | | | | | | |
| * | | | | | | | | cRoot: Fixed a memory leak with cRankManager.Mattes D2014-11-262-3/+5
| | | | | | | | | |
| * | | | | | | | | Windows: Fixed builds with LeakFinder enabled.Mattes D2014-11-262-2/+4
| | | | | | | | | |
| * | | | | | | | | WSSAnvil: Fixed bad code in arrow loading.Mattes D2014-11-261-2/+8
| | | | | | | | | |
| * | | | | | | | | ClientHandle: Fixed max block place distance check.Mattes D2014-11-251-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1492
| * | | | | | | | | Merge pull request #1604 from mc-server/GeneratorShapeRefactorMattes D2014-11-2430-1532/+1578
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Generator shape refactor
| | * | | | | | | | | Added TwoHeights shape generator.Mattes D2014-11-235-8/+162
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a faster shape generator that can generate overhangs and has biome awareness.
| | * | | | | | | | | Noise3D generator: Enlarged averaging to avoid steep beach slopes.Mattes D2014-11-232-4/+4
| | | | | | | | | | |
| | * | | | | | | | | Merge remote-tracking branch 'origin/master' into GeneratorShapeRefactorMattes D2014-11-236-2/+155
| | |\ \ \ \ \ \ \ \ \ | | | | |_|_|_|_|_|_|/ | | | |/| | | | | | |
| | * | | | | | | | | cWorld: Changed generator defaults.Mattes D2014-11-201-13/+17
| | | | | | | | | | |
| | * | | | | | | | | BiomalNoise3D generator: finished all biomes.Mattes D2014-11-201-66/+74
| | | | | | | | | | |
| | * | | | | | | | | CompoGenBiomal: Fixed sealevel offset.Mattes D2014-11-201-1/+1
| | | | | | | | | | |
| | * | | | | | | | | CompoGenBiomal: Fixed sealevel not generating properly.Mattes D2014-11-201-1/+2
| | | | | | | | | | |
| | * | | | | | | | | Generators: Unified SeaLevel into a single variable.Mattes D2014-11-203-70/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is shared between shape generators and composition generators and there's no sense in having two different values for those.
| | * | | | | | | | | Noise3D generators: Changed noise generator to InterpolNoise.Mattes D2014-11-202-10/+10
| | | | | | | | | | |
| | * | | | | | | | | Merge remote-tracking branch 'origin/master' into GeneratorShapeRefactorMattes D2014-11-2037-590/+1479
| | |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | | Mobs: Fixed crash with terrain too high.Mattes D2014-11-152-5/+7
| | | | | | | | | | | |
| | * | | | | | | | | | Generator: Fixed crash with trees too high.Mattes D2014-11-151-2/+7
| | | | | | | | | | | |
| | * | | | | | | | | | Snow generator: Fixed failure at top of the world.Mattes D2014-11-151-1/+1
| | | | | | | | | | | |
| | * | | | | | | | | | ChunkDesc: Fixed comment about indexing.Mattes D2014-11-151-1/+1
| | | | | | | | | | | |
| | * | | | | | | | | | DungeonRooms: Changed to work with the new shape generators.Mattes D2014-11-151-10/+15
| | | | | | | | | | | |
| | * | | | | | | | | | Gen refactor: Implemented CompositedHeiGen.Mattes D2014-11-139-217/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes crashes in the Village generator due to the missing generator.
| | * | | | | | | | | | Generator: Shape initial refactoring.Mattes D2014-11-1223-1346/+1356
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code compiles, but several structure generators are broken, crash on start.
| * | | | | | | | | | | Merge pull request #1611 from mc-server/SpawnPrepareMattes D2014-11-242-120/+113
| |\ \ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / / | |/| | | | | | | | | | cWorld: Rewritten spawn preparation.
| | * | | | | | | | | | Changed back capitalization.Mattes D2014-11-241-3/+3
| | | | | | | | | | | |
| | * | | | | | | | | | cWorld: Rewritten spawn preparation.Mattes D2014-11-222-120/+113
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It now supports pregeneration distance of any size and runs in two threads in parallel (generator / lighting). Fixes #1597.
| * | | | | | | | | | | formatting - newline at EOF inserted: Pig.cppp-mcgowan2014-11-231-1/+5
| | | | | | | | | | | |
| * | | | | | | | | | | pigs turn into pigmen on lightningp-mcgowan2014-11-232-0/+19
| | | | | | | | | | | |
| * | | | | | | | | | | formatter errorp-mcgowan2014-11-221-3/+3
| | | | | | | | | | | |
| * | | | | | | | | | | villagers turn into witches on lightningp-mcgowan2014-11-221-2/+4
| | | | | | | | | | | |
| * | | | | | | | | | | villagers turn into witches when struck by lightningp-mcgowan2014-11-221-0/+5
| |/ / / / / / / / / /
| * | | | | | | | | | Merge pull request #1594 from mc-server/LargeOakTreeMattes D2014-11-203-2/+125
| |\ \ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / / | |/| | | | | | | | | Large Oak Tree
| | * | | | | | | | | Changed commentSTRWarrior2014-11-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Suggestion by xoft
| | * | | | | | | | | First implementation for the LargeOakTreeSTRWarrior2014-11-133-2/+125
| | |/ / / / / / / /
| * | | | | | | | | Merge pull request #1603 from mc-server/ImprovedNoiseMattes D2014-11-2028-544/+1282
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Improved noise
| | * | | | | | | | | cInterpolNoise: Implemented optimized 2D generating.Mattes D2014-11-193-32/+219
| | | | | | | | | | |
| | * | | | | | | | | cOctavedNoise: Removed misleading comment, fixed assert texts.Mattes D2014-11-191-3/+3
| | | | | | | | | | |
| | * | | | | | | | | cOctavedNoise: Added a forgotten comment.Mattes D2014-11-181-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Added a cInterpolNoise template for faster noise generator.Mattes D2014-11-183-4/+439
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used an instance of it in the Noise3D generator.
| | * | | | | | | | | Moved all Noise-related files into a separate folder.Mattes D2014-11-1826-80/+56
| | | | | | | | | | |
| | * | | | | | | | | Refactored cRidgedNoise into a separate template.Mattes D2014-11-185-243/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows us to make the ridges out of any noise and to combine the cRidgedNoise with cOctavedNoise.
| | * | | | | | | | | OctavedNoise: linux compilation fixes.Mattes D2014-11-182-2/+3
| | | | | | | | | | |
| | * | | | | | | | | Added cOctavedNoise template.Mattes D2014-11-173-258/+206
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows us to use any noise generator in the combination of octaves.
| | * | | | | | | | | Fixed include path.Mattes D2014-11-171-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Added cImprovedNoise implementation.Mattes D2014-11-174-46/+376
| | | | | | | | | | |
* | | | | | | | | | | Finished mob spawner implementation.Howaner2014-11-1818-124/+78
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' into MobSpawnerHowaner2014-11-18344-10264/+10441
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: MCServer/Plugins/Core
| * | | | | | | | | | Merge pull request #1598 from mc-server/SignEditorMattes D2014-11-186-19/+83
| |\ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / | |/| | | | | | | | | Fixed a security problem with signs.
| | * | | | | | | | | Use cLuaState's stack trace.Howaner2014-11-171-48/+27
| | | | | | | | | | |
| | * | | | | | | | | Added UpdateSign() method to DeprecatedBindings.cppHowaner2014-11-172-3/+88
| | | | | | | | | | |
| | * | | | | | | | | Use LastPlacedSign instead of LastPlacedBlock.Howaner2014-11-152-8/+6
| | | | | | | | | | |
| | * | | | | | | | | Fixed a security problem with signs.Howaner2014-11-155-16/+18
| | | | | | | | | | |
| * | | | | | | | | | Fixed a wrong assert in cClientHandle::SetViewDistance().Mattes D2014-11-171-4/+8
| | | | | | | | | | |
| * | | | | | | | | | BiomalNoise3D: Added more biomes.Mattes D2014-11-161-13/+65
| | | | | | | | | | |
| * | | | | | | | | | Renamed m_UsedViewDistance to m_CurrentViewDistanceHowaner2014-11-152-11/+11
| | | | | | | | | | |
| * | | | | | | | | | Renamed m_SetViewDistance to m_RequestedViewDistanceHowaner2014-11-152-7/+7
| | | | | | | | | | |
| * | | | | | | | | | Renamed GetSettedViewDistance() to GetRequestedViewDistance()Howaner2014-11-152-3/+3
| | | | | | | | | | |
| * | | | | | | | | | Use m_UsedViewDistance and m_SetViewDistance.Howaner2014-11-143-15/+26
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'master' into ViewDistanceHowaner2014-11-1419-174/+3951
| |\| | | | | | | | |
| | * | | | | | | | | Noise3D: Added jungles.Mattes D2014-11-141-0/+2
| | | | | | | | | | |
| | * | | | | | | | | Noise3D: Added oceans.Mattes D2014-11-131-0/+3
| | | | | | | | | | |
| | * | | | | | | | | Fixed trailing whitespace.Mattes D2014-11-123-3/+3
| | |/ / / / / / / /
| | * | | | | | | | BiomalNoise3D: Added a few biomes.Mattes D2014-11-101-5/+8
| | | | | | | | | |
| | * | | | | | | | TallGrassGenerator: Fixed crash when too highSTRWarrior2014-11-101-0/+5
| | | | | | | | | |
| | * | | | | | | | Added BiomalNoise3D shape generator.Mattes D2014-11-104-29/+369
| | | | | | | | | |
| | * | | | | | | | Noise3d Generator: Fixed unused function error.Mattes D2014-11-091-1/+1
| | | | | | | | | |
| | * | | | | | | | Noise3D generator: rewritten from scratch.Mattes D2014-11-092-78/+145
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now it uses three 3D and one 2D perlin noises to generate the terrain, and is highly parametrizable.
| | * | | | | | | | Noise3D CompoGen: Fixed missing initialization.Mattes D2014-11-061-0/+2
| | | | | | | | | |
| | * | | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerMattes D2014-11-063-76/+331
| | |\ \ \ \ \ \ \ \ | | | | |_|/ / / / / | | | |/| | | | | |
| | | * | | | | | | MinMax heigen: Reduced the number of octaves.Mattes D2014-11-041-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They didn't affect the terrain that much anyway.
| | | * | | | | | | Added MinMax height generator.Mattes D2014-11-041-0/+207
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1578.
| | | * | | | | | | Fixed a missing endline.Mattes D2014-11-031-1/+5
| | | | | | | | | |
| | | * | | | | | | Added a (disabled) perf test for biome generators.Mattes D2014-11-031-0/+46
| | | | | | | | | |
| | | * | | | | | | HeiGen: Moved construction to the end of file.Mattes D2014-11-031-75/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will allow us to define generators in the cpp file instead of needing them in the header, thus speeding up compilation on changes.
| | * | | | | | | | renamed FindAndDoWithUUID to DoWithPlayerByUUID, fixed style and comments, added description to APIDumpLukas Pioch2014-11-055-10/+11
| | | | | | | | | |
| | * | | | | | | | Simplified FindAndDoWithUUID, formatted lineLukas Pioch2014-11-022-8/+2
| | | | | | | | | |
| | * | | | | | | | Added FindAndDoWithUUIDLukas Pioch2014-11-025-0/+46
| | |/ / / / / / /
| | * | | | | | | Grown biomes: fixed Linux build.Mattes D2014-11-021-3/+3
| | | | | | | | |
| | * | | | | | | Grown biomes: Unified with GrownProt biomes.Mattes D2014-11-023-159/+595
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also fixed a Zoom filter randomness.
| | * | | | | | | GrownProt: Added the rest of rare and M biomes.Mattes D2014-11-012-14/+91
| | | | | | | | |
| | * | | | | | | GrownProt biome gen: Added biome edges.Mattes D2014-11-012-2/+162
| | | | | | | | |
| | * | | | | | | Merge branch 'master' into GrownBiomesMattes D2014-10-313-2/+7
| | |\ \ \ \ \ \ \
| | | * | | | | | | cLuaState: Fixed errors on non-existent callbacks.Mattes D2014-10-311-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This mostly affected table-based callbacks, such as the cLineBlockTracer. If a callback didn't exist, the code would still push its arguments on the stack, breaking the next callback.
| | | * | | | | | | Fixed missing CS lock in cChunkMap::WakeUpSimulatorsInArea().Mattes D2014-10-311-0/+1
| | | | | | | | | |
| | | * | | | | | | Fixed m_SentChunks list chunk removing.Howaner2014-10-301-1/+1
| | | | | | | | | |
| | * | | | | | | | GrownProt biomes: added alterations.Mattes D2014-10-313-130/+192
| | | | | | | | | |
| | * | | | | | | | QtBiomeVisualiser: Added a prototyping int generator flavor.Mattes D2014-10-304-53/+1253
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This generator is easier to manipulate, since it doesn't require rewriting the sizes in the template parameters. On the other hand, it doesn't optimize so well, so it's a bit slower.
| | * | | | | | | | Merge remote-tracking branch 'origin/master' into GrownBiomesMattes D2014-10-302-3/+25
| | |\| | | | | | |
| | * | | | | | | | Grown biomes: made biomes smaller, made beaches smaller.Mattes D2014-10-291-11/+8
| | | | | | | | | |
| | * | | | | | | | Merged branch 'master' into GrownBiomes.Mattes D2014-10-288-34/+76
| | |\ \ \ \ \ \ \ \
| | * | | | | | | | | cIntGen: Added a virtual destructor.Mattes D2014-10-271-0/+4
| | | | | | | | | | |
| | * | | | | | | | | Removed too advanced C++11 features.Mattes D2014-10-272-32/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to keep gcc 4.6 compatibility; these features were not implemented in that version yet.
| | * | | | | | | | | IntGen: Attempt at fixing Linux compilation.Mattes D2014-10-261-13/+13
| | | | | | | | | | |
| | * | | | | | | | | BioGenGrown: Smaller biomes, add land to map center.Mattes D2014-10-262-16/+13
| | | | | | | | | | |
| | * | | | | | | | | Fixed a copypasta error in cIntGenAddToOcean.Mattes D2014-10-261-4/+4
| | | | | | | | | | |
| | * | | | | | | | | Added a missing header to CMakeLists.Mattes D2014-10-261-0/+1
| | | | | | | | | | |
| | * | | | | | | | | Added new biomegen: GrownMattes D2014-10-263-0/+1053
| | | | | | | | | | |
| | * | | | | | | | | Added IsBiomeVeryCold() and IsBiomeCold() functions.Mattes D2014-10-262-0/+71
| | | |_|_|/ / / / / | | |/| | | | | | |
| * | | | | | | | | ... in this worldHowaner2014-10-301-1/+1
| | | | | | | | | |
| * | | | | | | | | Added a MaxViewDistance option.Howaner2014-10-303-1/+16
| | |_|/ / / / / / | |/| | | | | | |
| * | | | | | | | Fixed 1.8 world item format reading.Howaner2014-10-292-3/+25
| | |/ / / / / / | |/| | | | | |
| * | | | | | | Forgotten m_SendChunksMediumPriority.empty() check.Howaner2014-10-281-1/+1
| | | | | | | |
| * | | | | | | Fixed compile (typos).Alexander Harkness2014-10-271-2/+2
| | | | | | | |
| * | | | | | | Comment alignment.Alexander Harkness2014-10-272-8/+8
| | | | | | | |
| * | | | | | | CheckBasicStyle'dAlexander Harkness2014-10-274-32/+32
| | | | | | | |
| * | | | | | | Another one.#Alexander Harkness2014-10-271-0/+22
| | | | | | | |
| * | | | | | | Fixed more warnings.Alexander Harkness2014-10-271-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | It's ugly though.
| * | | | | | | Another switch.Alexander Harkness2014-10-271-0/+5
| | | | | | | |
| * | | | | | | Fix missing biomes in enum.Alexander Harkness2014-10-271-0/+5
| | | | | | | |
| * | | | | | | Fixed remaining warnings.Alexander Harkness2014-10-271-5/+5
| | | | | | | |
| * | | | | | | Actually fixed the warning.Alexander Harkness2014-10-271-20/+9
| | | | | | | |
| * | | | | | | Test warning fix.Alexander Harkness2014-10-271-0/+11
| | | | | | | |
| * | | | | | | Fixed typo.Alexander Harkness2014-10-271-1/+1
| | | | | | | |
| * | | | | | | Pocess?Alexander Harkness2014-10-271-2/+2
| | | | | | | |
| * | | | | | | Added type to block type enum.Mattes D2014-10-261-1/+11
| |/ / / / / /
| * | | | | | Merge pull request #1565 from mc-server/MergedIniFileMattes D2014-10-2429-29/+1138
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Merged ini file
| | * | | | | | IniFile: Removed the problematic printf-like Set function.Mattes D2014-10-242-20/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It wasn't used in any client code anyway.
| | * | | | | | Fixed formatstringworktycho2014-10-241-1/+1
| | | | | | | |
| | * | | | | | IniFile: Removed an unused macro.Mattes D2014-10-231-4/+0
| | | | | | | |
| | * | | | | | Removed iniFile library from linux dependencies.Mattes D2014-10-232-2/+2
| | | | | | | |
| | * | | | | | Merged IniFile into main MCS sources.Mattes D2014-10-2327-27/+1160
| | |/ / / / /
| * | | | | | OSSupport/CMakeLists.txt: fixed indentationarchshift2014-10-241-3/+3
| | | | | | |
| * | | | | | Fixed potential linker errors with mingw, as it isn't MSVC and it isn't APPLE.archshift2014-10-241-4/+4
| | | | | | |
| * | | | | | Fix linking on OS X, which does not have librt.archshift2014-10-231-2/+6
| | | | | | |
| * | | | | | Use 3 priorities.Howaner2014-10-234-7/+45
| | | | | | |
| * | | | | | Merge branch 'master' into ChunkLoaderHowaner2014-10-23238-2078/+2341
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ChunkSender.cpp src/ClientHandle.cpp src/World.h
| | * | | | | | Fixed a crash in redstone simulator.Mattes D2014-10-231-1/+0
| | |/ / / / /
| | * | | | | Removed the "conditional expression is constant" warning.Mattes D2014-10-231-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | MSVC spits out many of these on its own std libraries.
| | * | | | | Signs can be placed on wallsigns.Alexander Harkness2014-10-231-1/+1
| | | |_|_|/ | | |/| | | | | | | | | Fixes #1438
| | * | | | En masse NULL -> nullptr replaceTiger Wang2014-10-23211-1746/+1768
| | | | | |
| | * | | | ComposableGenerator: Removed nullptr initializers.Mattes D2014-10-221-3/+3
| | | | | |
| | * | | | LuaState: Projectiles are pushed using their full class.Mattes D2014-10-221-1/+1
| | | | | |
| | * | | | cItemFrame: Fixed a forgotten rename.Mattes D2014-10-212-2/+2
| | | | | |
| | * | | | Merge pull request #1515 from mc-server/BlockFixesMattes D2014-10-215-36/+97
| | |\ \ \ \ | | | | | | | | | | | | | | Block fixes
| | | * | | | Reverted hook move.Howaner2014-10-211-5/+5
| | | | | | |
| | | * | | | Moved tall grass pickups handle.Howaner2014-10-212-9/+37
| | | | | | |
| | | * | | | Merge branch 'master' into BlockFixesHowaner2014-10-21103-1052/+1338
| | | |\ \ \ \
| | | * | | | | Leaves are harvest-able.Howaner2014-10-071-2/+0
| | | | | | | |
| | | * | | | | Corrected drops from dead bush, tall grass and cobweb.Howaner2014-10-075-39/+64
| | | | | | | |
| | | * | | | | Corrected IsBlockAttachable() in BlockVine.hHowaner2014-10-071-5/+15
| | | | | | | |
| | * | | | | | Properly exported cItemFrame and cHangingEntity to Lua.Mattes D2014-10-2110-67/+100
| | | | | | | |
| | * | | | | | Fixed trailing whitespace.Mattes D2014-10-212-2/+2
| | | | | | | |
| | * | | | | | Exported individual projectile classes to Lua API.Mattes D2014-10-2118-221/+367
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They used to be exported, but then they were moved to separate files and those werent' added to the ToLua processing list.
| * | | | | | | Merge branch 'master' into ChunkLoaderHowaner2014-10-2117-539/+474
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/World.h
| | * | | | | | Merged branch 'master' of git://github.com/sriehl/MCServerMattes D2014-10-2117-540/+475
| | |\ \ \ \ \ \ | | | |_|/ / / / | | |/| | | | |
| | | * | | | | fix std:min call, include algorithm and compare same typeSteven Riehl2014-10-121-2/+2
| | | | | | | |
| | | * | | | | refactor an if block to std::minSteven Riehl2014-10-121-4/+1
| | | | | | | |
| | | * | | | | convert old style casts to fix warningsSteven Riehl2014-10-1217-549/+486
| | | | | | | |
| * | | | | | | style.Howaner2014-10-211-1/+2
| | | | | | | |
| * | | | | | | Use two lists and 2 chunk send prioritys.Howaner2014-10-214-66/+40
| | | | | | | |
| * | | | | | | New c++11 stuff.Howaner2014-10-211-4/+4
| | | | | | | |
| * | | | | | | Merge branch 'master' into ChunkLoaderHowaner2014-10-21105-1095/+1470
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ClientHandle.cpp
| | * | | | | | cLuaState: cEntity is pushed with specific type.Mattes D2014-10-211-7/+48
| | | |_|_|_|/ | | |/| | | |
| | * | | | | Fixed #1550Julian Laubstein2014-10-201-6/+6
| | | | | | |
| | * | | | | Fixed a potential crash in cEntity bindings.Mattes D2014-10-201-2/+6
| | | | | | |
| | * | | | | Found it!Julian Laubstein2014-10-201-1/+1
| | | | | | |
| | * | | | | Fix for fix #1552Julian Laubstein2014-10-201-2/+2
| | | | | | |
| | * | | | | Added error messageJulian Laubstein2014-10-202-9/+11
| | | | | | |
| | * | | | | Added error handling to load <plugin> commandJulian Laubstein2014-10-201-1/+11
| | | | | | |
| | * | | | | Merge pull request #1549 from SphinxC0re/masterMattes D2014-10-196-12/+81
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | Added mechanics placeable on halfslabs
| | | * | | | | Fixed error with non-const functionJulian Laubstein2014-10-192-2/+2
| | | | | | | |
| | | * | | | | Added mechanics placeable on halfslabsJulian Laubstein2014-10-194-10/+79
| | | | | | | |
| | * | | | | | Removed obsolete tr1::shared_ptr.Mattes D2014-10-191-13/+2
| | | | | | | |
| | * | | | | | Fixed minor style issues.Mattes D2014-10-193-3/+3
| | | | | | | |
| | * | | | | | TwoLevel BioGen: fixed swapped inside and outside biomes.Mattes D2014-10-191-1/+1
| | |/ / / / /
| | * | | | | Mountain height gen: Added ditches.Mattes D2014-10-192-8/+16
| | | | | | |
| | * | | | | Generator: Rewritten to use SharedPtrs.Mattes D2014-10-1918-181/+145
| | | |_|_|/ | | |/| | |
| | * | | | cLuaState: cMonster descendants don't push their specific type.Mattes D2014-10-191-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | The individual mob types aren't exported to Lua, so pushing them would crash the server.
| | * | | | cLuaState: cBlockEntity descendants are pushed with proper class type.Mattes D2014-10-1917-26/+63
| | | | | |
| | * | | | LuaState: Pushing a cEntity pushes the correct class name.Mattes D2014-10-192-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | This makes Lua scripts easier, as they don't need to cast values from cEntity to the specific descendant.
| | * | | | Bindings: Removed obsolete codegen files.Mattes D2014-10-193-237/+0
| | | | | | | | | | | | | | | | | | | | | | | | LuaState_Call.inc is no longer needed, it was replaced with variadic templates.
| | * | | | Merge pull request #1502 from mc-server/furnacesTiger Wang2014-10-1819-227/+180
| | |\ \ \ \ | | | |_|_|/ | | |/| | | Improved furnaces
| | | * | | Fixed failure for cRankManager to restartTiger Wang2014-10-184-43/+44
| | | | | |
| | | * | | Furnaces now update their block entity typeTiger Wang2014-10-182-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | Therefore improving cChunk's variable boundary checking.
| | | * | | Simpler code.Alexander Harkness2014-10-181-3/+2
| | | | | |
| | | * | | Nullptr?Alexander Harkness2014-10-161-2/+2
| | | | | |
| | | * | | Fixed a number of stylistic issues.Alexander Harkness2014-10-161-7/+7
| | | | | |
| | | * | | Improved furnacesTiger Wang2014-10-0315-180/+131
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed progress bar on 1.8 * Fixed bugs * Improved code * Fixes #1068 * Fixes #1070
| | * | | | cMojangAPI: Don't update data if server is in offline mode.Mattes D2014-10-175-8/+12
| | | | | |
| | * | | | LuaChunkStay: Fixed a crash on unused callback.Mattes D2014-10-171-2/+6
| | | | | |
| | * | | | Merged branch 'fix_chunks'.Mattes D2014-10-162-3/+35
| | | | | |
| | * | | | Merge pull request #1541 from mc-server/VariadicTemplatesMattes D2014-10-161-3/+75
| | |\ \ \ \ | | | | | | | | | | | | | | cLuaState::Call() uses variadic templates
| | | * | | | Use universal referencesworktycho2014-10-161-4/+4
| | | | | | |
| | | * | | | cLuaState::Call() uses variadic templates.Mattes D2014-10-151-3/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (doesn't compile)
| | * | | | | Merge branch 'master' into DungeonLootSTRWarrior2014-10-161-2/+2
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ItemGrid.cpp
| | | * | | | | BioGen: Fixed a compiler warning.Mattes D2014-10-161-2/+2
| | | | | | | |
| | | * | | | | Fixed possible crashSTRWarrior2014-10-151-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It could crash if MinAmount - MaxAmount was 0 because it would execute (Number % 0)
| | * | | | | | Changed i variable to jSTRWarrior2014-10-161-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The server wasn't going over all the items before.
| | * | | | | | Reversed wrong fix for #1517.STRWarrior2014-10-161-8/+2
| | | | | | | |
| | * | | | | | Reversed the order of the lootSTRWarrior2014-10-151-7/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For some reason the rare items weren't generating at all. Added forgotten Golden Apple
| | * | | | | | Added loot to dungeons.STRWarrior2014-10-151-1/+27
| | |/ / / / /
| | * | | | | Merge pull request #1536 from mc-server/MineshaftBooksMattes D2014-10-153-1/+46
| | |\ \ \ \ \ | | | |/ / / / | | |/| | | | Mineshaft books
| | | * | | | Using C++11 loopsSTRWarrior2014-10-151-5/+5
| | | | | | |
| | | * | | | The code now prevents conflicting enchantments.STRWarrior2014-10-151-0/+1
| | | | | | |
| | | * | | | IntNoise1DInt result gets devided by 7 firstSTRWarrior2014-10-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | suggestion by xoft
| | | * | | | Adding enchantments directly instead of first getting the name of it.STRWarrior2014-10-151-1/+1
| | | | | | |
| | | * | | | Renamed the counter to 'j'STRWarrior2014-10-151-1/+1
| | | | | | |
| | | * | | | Returned cFastRandom and cEnchantment:GetRandomEnchantmentFromVector to beforeSTRWarrior2014-10-155-16/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Added cEnchantment:GenerateEnchantmentFromVector that allows to get the same enchantments over and over.
| | | * | | | Enchanted books generate in MineShafts chestsSTRWarrior2014-10-155-6/+30
| | | | | | |
| | * | | | | Functions in cPluginManager get references instead of pointers.Mattes D2014-10-1529-181/+220
| | | | | | |
| | * | | | | Usernames are lowercased before generating offline UUID.Mattes D2014-10-151-1/+4
| | |/ / / / | | | | | | | | | | | | | | | | | | This breaks previous offline UUIDs, but it guarantees that future offline UUIDs will be the same even for usernames with wrong capitalization.
| | * | | | cWorld: Fixed scheduler.Mattes D2014-10-131-9/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1534. Added a test case into the Debuggers plugin.
| | * | | | Fixed style.Mattes D2014-10-133-4/+7
| | | | | |
| | * | | | CheckBasicStyle ignores the Bindings.h generated file.Mattes D2014-10-131-0/+1
| | | | | |
| | * | | | Merge pull request #1529 from mc-server/unique_ptrMattes D2014-10-124-42/+45
| | |\ \ \ \ | | | |_|/ / | | |/| | | Moved a few objects to unique_ptr
| | | * | | Aligned simulatorsworktycho2014-10-121-5/+5
| | | | | |
| | | * | | Fix styleworktycho2014-10-121-2/+2
| | | | | |
| | | * | | Fix spacesworktycho2014-10-121-2/+2
| | | | | |
| | | * | | Update World.cppworktycho2014-10-121-1/+1
| | | | | |
| | | * | | Fix lambda captureworktycho2014-10-111-1/+2
| | | | | |
| | | * | | Moved a few objects to unique_ptrtycho2014-10-104-39/+41
| | | | | |
| | * | | | Fixed compilation.Alexander Harkness2014-10-111-1/+1
| | | | | |
| | * | | | Merge branch 'master' into issue850Alexander Harkness2014-10-11356-14324/+21269
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/BlockID.h
| | | * | | Fixed MSVC compilation.Mattes D2014-10-102-1/+3
| | | | | |
| | | * | | Float/Ciel: If it's going to use C++11, it might as well take advantage of itarchshift2014-10-093-26/+12
| | | | | |
| | | * | | Use static casts instead of C casts, add floor-cast functionsarchshift2014-10-093-24/+55
| | | | | |
| | | * | | DistortedHeightmap: Fixed crash on number rounding.Mattes D2014-10-091-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #1521.
| | | * | | Added comments to the GetAcaciaTreeImage functionSTRWarrior2014-10-081-0/+18
| | | | | |
| | | * | | Using array with possible directions.STRWarrior2014-10-081-8/+9
| | | | | |
| | | * | | Added AcaciaTrees for the savanna biomesSTRWarrior2014-10-081-5/+56
| | | | |/ | | | |/|
| | | * | Removed BlockHaybale.h from CMakeLists.txtHowaner2014-10-071-1/+0
| | | | |
| | | * | Removed unused cBlockHayBaleHandler.Howaner2014-10-072-24/+1
| | | | |
| | | * | Merge pull request #1513 from mc-server/MojangAPIRefreshMattes D2014-10-072-19/+132
| | | |\ \ | | | | | | | | | | | | cMojangAPI: Added periodical refreshes.
| | | | * | cMojangAPI: Added periodical refreshes.Mattes D2014-10-062-19/+132
| | | | | |
| | * | | | Fixed typo and removed useless right side up slab meta.Alexander Harkness2014-10-111-2/+1
| | | | | |
| | * | | | Renamed NEWLEAVES and NEWLOG to LEAVES and LOG.archshift2014-07-301-34/+34
| | | | | |
| | * | | | Merge remote-tracking branch 'origin/master' into issue850archshift2014-07-29545-10684/+45196
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Blocks/BlockLeaves.h src/Generating/Trees.cpp
| | * | | | | Spacing fixes and a few more BLOCK_META constants.narroo2014-07-021-131/+152
| | | | | | |
| | * | | | | Fixed E_META_...Typos in BlockID.hnarroo2014-06-083-90/+80
| | | | | | |
| | * | | | | Fixed some E_META_*** Namesnarroo2014-05-201-71/+67
| | | | | | |
| | * | | | | Fixed Formmatingnarroo2014-04-281-69/+69
| | | | | | |
| | * | | | | Added some E_META_* values to BlockID.hnarroo2014-04-281-20/+120
| | | | | | |
| * | | | | | Added distance check.Howaner2014-10-071-0/+12
| | | | | | |
| * | | | | | Stream 4 chunks per tick. Added priority.Howaner2014-10-067-29/+58
| | | | | | |
| * | | | | | Merge branch 'master' into ChunkLoaderHowaner2014-10-0622-165/+203
| |\ \ \ \ \ \ | | | |_|/ / / | | |/| | | |
| | * | | | | Fixed crash in ForEachEntityInBox API.madmaxoft2014-10-063-6/+18
| | | |_|/ / | | |/| | | | | | | | | | | | | | | Fixes #1511.
| | * | | | Merge pull request #1510 from mc-server/TimedEventMattes D2014-10-063-1/+52
| | |\ \ \ \ | | | | | | | | | | | | | | Added a cEvent::Wait() with timeout.
| | | * | | | Update CMakeLists.txtworktycho2014-10-061-1/+1
| | | | | | |
| | | * | | | Added a cEvent::Wait() with timeout.Mattes D2014-10-052-0/+51
| | | | | | |
| | * | | | | Fixed a missed value.madmaxoft2014-10-051-1/+1
| | | | | | |
| | * | | | | Removed obsolete cMonster::eType.madmaxoft2014-10-051-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Has been replaced with global eMonsterType.
| | * | | | | Fixed eMonsterType Lua API mismatch.madmaxoft2014-10-056-54/+25
| | | | | | |
| | * | | | | cClientHandle: Added protocol version knowledge.Mattes D2014-10-054-3/+21
| | |/ / / /
| | * | | | Fixes #1503 - No gravel is being generatedwin32re2014-10-041-1/+1
| | | | | |
| | * | | | Merge pull request #1489 from mc-server/fixesMattes D2014-10-042-71/+54
| | |\ \ \ \ | | | |_|_|/ | | |/| | | Improved torch handler
| | | * | | Comment suggestionsTiger Wang2014-10-031-2/+3
| | | | | |
| | | * | | Improved torch handlerTiger Wang2014-09-302-70/+52
| | | | | |
| | * | | | Fix spelling of PRISMRAINEAlexander Harkness2014-10-021-1/+1
| | | | | | | | | | | | | | | | | | Fixes #1497
| | * | | | Fixed sortingMasy982014-10-011-2/+2
| | | | | |
| | * | | | Merge branch 'master' into blocksMasy982014-10-014-26/+25
| | |\ \ \ \
| | * | | | | Fixed Red Sandstone and Prismarine dropsMasy982014-10-013-24/+30
| | | | | | |
| * | | | | | Better StreamNextChunk() methodHowaner2014-10-062-15/+120
| | | | | | |
| * | | | | | Optimized chunk loaderHowaner2014-10-027-105/+93
| | |/ / / / | |/| | | |
| * | | | | Merge pull request #1493 from Masy98/blocksMattes D2014-10-013-16/+70
| |\| | | | | | | | | | | | | | | | Added missing 1.8 blocks, E_METAs and sounds
| | * | | | Added Daylight Sensors to the "can't push" listMasy982014-10-011-0/+2
| | | | | |
| | * | | | Fixed ":"Masy982014-10-011-11/+11
| | | | | |
| | * | | | Added missing 1.8 blocks, E_METAs and soundsMasy982014-10-013-7/+59
| | | | | |
| * | | | | cRoot: Removed useless variable from Lua API.madmaxoft2014-10-011-2/+3
| | | | | |
| * | | | | cPlayer: Removed useless functions from the Lua API.madmaxoft2014-10-011-2/+6
| | | | | |
| * | | | | Bindings: Fixed binding for cPlayer::PermissionMatches().madmaxoft2014-10-011-10/+4
| | | | | |
| * | | | | Unified cRoot broadcast chat documentation.madmaxoft2014-10-011-5/+5
| | | | | |
| * | | | | cClientHandle: Alpha-sorted the sending functions.madmaxoft2014-10-011-7/+7
| |/ / / /
| * | | | Merge pull request #1490 from mc-server/removecompactMattes D2014-10-0128-1664/+0
| |\ \ \ \ | | | | | | | | | | | | Removed WSSCompact
| | * | | | Removed WSSCompactTiger Wang2014-09-3028-1664/+0
| | |/ / /
| * | | | Merge pull request #1487 from mc-server/BlockFixesMattes D2014-09-308-6/+62
| |\ \ \ \ | | |/ / / | |/| | | Block fixes
| | * | | Code improvementsHowaner2014-09-303-3/+7
| | | | |
| | * | | Fixed 1.8 dirt typesHowaner2014-09-303-3/+35
| | | | |
| | * | | Fixed iron trapdoorsHowaner2014-09-304-2/+9
| | | | |
| | * | | Fixed 1.8 doors.Howaner2014-09-301-1/+14
| | | | |
| * | | | Merge pull request #1485 from mc-server/PluginMessagesMattes D2014-09-306-118/+242
| |\ \ \ \ | | |/ / / | |/| | | Rewritten plugin messages, vanilla's are being parsed directly.
| | * | | Fixed a missing semicolon.madmaxoft2014-09-301-1/+1
| | | | |
| | * | | Rewritten plugin messages, vanilla are being parsed directly.madmaxoft2014-09-306-118/+242
| | | | | | | | | | | | | | | | | | | | This should finally fix the compatibility problems between 1.7 and 1.8 protocols with the changes in the vanilla plugin messages.
| * | | | Merge pull request #1427 from mc-server/chestcartsMattes D2014-09-3015-72/+190
| |\ \ \ \ | | | | | | | | | | | | Implemented Chest Minecarts
| | * | | | Compilation fixTiger Wang2014-09-282-4/+4
| | | | | |
| | * | | | SuggestionsTiger Wang2014-09-276-23/+69
| | | | | |
| | * | | | Merge remote-tracking branch 'origin/master' into chestcartsTiger Wang2014-09-27180-4182/+9549
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Entities/Minecart.cpp
| | * | | | | e.t.c. -> etc.Tiger Wang2014-09-131-1/+1
| | | | | | | | | | | | | | | | | | | | | etcetera, not egg tray conglomerate :P
| | * | | | | Added newlinesTiger Wang2014-09-131-1/+5
| | | | | | |
| | * | | | | Implemented Chest MinecartsTiger Wang2014-09-1315-94/+161
| | | | | | |
| * | | | | | IndentationJulian Laubstein2014-09-301-3/+3
| | | | | | |
| * | | | | | Set right indentationJulian Laubstein2014-09-301-3/+3
| | | | | | |
| * | | | | | actual solving of the halfslap+torch problemJulian Laubstein2014-09-301-1/+3
| | |_|/ / / | |/| | | |
| * | | | | RankMgr: GetAllPlayers() returns players sorted by name.madmaxoft2014-09-292-2/+2
| | | | | |
| * | | | | Style fixes.madmaxoft2014-09-293-10/+13
| | | | | |
| * | | | | World: Fixed chunk generation by plugins.madmaxoft2014-09-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | ChunkWorx was broken, it was trying to generate chunks that were not properly marked as InQueue.
| * | | | | Fixed codestyle again.Alexander Harkness2014-09-291-1/+1
| | | | | |
| * | | | | Merge pull request #1472 from mc-server/RanksMattes D2014-09-294-1/+203
| |\ \ \ \ \ | | | | | | | | | | | | | | Added more cRankManager functions
| | * | | | | Renamed GetAllPlayers() to GetAllPlayerUUIDs()Howaner2014-09-293-7/+7
| | | | | | |
| | * | | | | Merge branch 'master' into RanksHowaner2014-09-2936-4767/+125
| | |\ \ \ \ \
| | * | | | | | Fixed SetDefaultRank() return value.Howaner2014-09-281-1/+1
| | | | | | | |
| | * | | | | | cRankManager: Added ClearPlayerRanks()Howaner2014-09-283-0/+45
| | | | | | | |
| | * | | | | | Updated api documentation.Howaner2014-09-281-1/+1
| | | | | | | |
| | * | | | | | cRankManager: Added GetAllPlayers() and GetPlayerName()Howaner2014-09-284-0/+157
| | | | | | | |
| * | | | | | | BlockStone.h: fix the codestylew00tc0d32014-09-291-6/+5
| | | | | | | |
| * | | | | | | Tabs -> spacesw00tc0d32014-09-291-4/+4
| | | | | | | |
| * | | | | | | BlockStone: drop the right cobblestone on onBreak().netchip2014-09-292-3/+15
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | Signed-off-by: netchip <w00tc0d3@outlook.com>
| * | | | | | Update BlockTorch.hJulian Laubstein2014-09-291-3/+3
| | | | | | |
| * | | | | | Added torches placeable on upside-down-halfslapsJulian Laubstein2014-09-291-1/+3
| | | | | | |
| * | | | | | Merge pull request #1473 from mc-server/NewStoneGenerationMattes D2014-09-293-7/+46
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Added Granite, Diorite and Andesite to the NaturalPatches generator.
| | * | | | | | Fixed compilationSTRWarrior2014-09-281-1/+10
| | | | | | | |
| | * | | | | | Added Granite, Diorite and Andesite to the NaturalPatches generator.STRWarrior2014-09-283-7/+37
| | |/ / / / /
| * | | | | | Merge pull request #1478 from doublej472/masterMattes D2014-09-292-0/+21
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Make endermen take damage in water
| | * | | | | | DerpJonathan Frederick2014-09-291-1/+1
| | | | | | | |
| | * | | | | | Fix commentsJonathan Frederick2014-09-291-2/+2
| | | | | | | |
| | * | | | | | Make endermen take damage in waterJonathan Frederick2014-09-282-0/+21
| | | | | | | |
| * | | | | | | Plugin messages: Vanilla prefixes its payloads with VarInt lengths.madmaxoft2014-09-281-4/+13
| |/ / / / / /
| * | | | | | Revert "1.8: Fixed plugin messages."madmaxoft2014-09-281-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 04ee8c43dd17eb98d1e3d66ff691898e9f269b95.
| * | | | | | Protocol 1.8: Fixed possible crash on malformed packet.madmaxoft2014-09-281-0/+5
| | | | | | |
| * | | | | | Fixed trailing whitespace.madmaxoft2014-09-281-1/+1
| | | | | | |
| * | | | | | Merge pull request #1471 from mc-server/redstoneDataMattes D2014-09-284-1/+13
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Use factory method to construct redstone simulator data
| | * | | | | | Update Chunk.cppworktycho2014-09-281-1/+1
| | | | | | | |
| | * | | | | | Use factory method to construct redstone simulator dataTycho2014-09-284-1/+13
| | |/ / / / /
| * | | | | | Merge pull request #1466 from mc-server/endofsupportMattes D2014-09-2826-4755/+23
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Removed protocols 1.2 to 1.6
| | * | | | | Compilation fixTiger Wang2014-09-281-1/+1
| | | | | | |
| | * | | | | Bug fixTiger Wang2014-09-275-32/+27
| | | | | | |
| | * | | | | Merge remote-tracking branch 'origin/master' into endofsupportTiger Wang2014-09-275-3/+52
| | |\ \ \ \ \ | | | | |/ / / | | | |/| | |
| | * | | | | Dropped support for <1.7.xTiger Wang2014-09-2722-4733/+6
| | | | | | |
| * | | | | | 1.8: Fixed plugin messages.Howaner2014-09-271-3/+4
| | | | | | |
| * | | | | | Fixed another redstone crash.madmaxoft2014-09-271-1/+6
| | | | | | |
| * | | | | | Merge pull request #1465 from Masy98/blocksMattes D2014-09-272-3/+12
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Added barriers correctly
| | * | | | | | Combined conditionsMasy982014-09-271-8/+11
| | | | | | | |
| | * | | | | | Added barriers correctlyMasy982014-09-272-0/+6
| | | | | | | |
| * | | | | | | BioGen: TwoLevel is now fully settable in INI.madmaxoft2014-09-272-44/+31
| | | | | | | |
| * | | | | | | Fixed minor style issues.madmaxoft2014-09-273-3/+3
| | | | | | | |
| * | | | | | | Wrapped clang-specific pragma into an #ifdef block.madmaxoft2014-09-271-1/+6
| | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | MSVC was complaining about an unknown pragma.
| * | | | | | Update IncrementalRedstoneSimulator.incworktycho2014-09-271-1/+1
| | | | | | |
| * | | | | | Update IncrementalRedstoneSimulator.incworktycho2014-09-271-1/+1
| | | | | | |
| * | | | | | Correct method name.worktycho2014-09-271-1/+1
| | | | | | |
| * | | | | | Set chunk dataworktycho2014-09-271-0/+5
| | | | | | |
| * | | | | | Add data accessor.worktycho2014-09-271-0/+1
| |/ / / / /
| * | | | | Added default value to switch and spruce gate to fence gate handlerMasy982014-09-272-0/+6
| | | | | |
| * | | | | Fixed convertToPickups for fence gatesMasy982014-09-271-1/+1
| | | | | |
| * | | | | Fixed convertToPickups for doorsMasy982014-09-271-1/+38
| |/ / / /
* | | | | Fixed compile errors.Howaner2014-09-272-42/+42
| | | | |
* | | | | Merge branch 'master' into MobSpawnerHowaner2014-09-26164-3988/+8911
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/MobSpawner.h src/Mobs/Monster.h
| * | | | Merge pull request #1456 from Howaner/FixesMattes D2014-09-2616-77/+41
| |\ \ \ \ | | | | | | | | | | | | Fixed player custom names in 1.8 and added type checking to map loading
| | * \ \ \ Merge branch 'master' into FixesHowaner2014-09-26110-3157/+3382
| | |\ \ \ \
| | * | | | | Fixed players custom name in 1.8Howaner2014-09-2614-66/+30
| | | | | | |
| | * | | | | Added type checking to map loading.Howaner2014-09-262-11/+11
| | | | | | |
| * | | | | | Fixed UNUSED macro so that it doesn't require type knowledge.madmaxoft2014-09-262-5/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduced new UNUSED_VAR macro that is used when type knowledge is available (for local variables).
| * | | | | | Merge pull request #1415 from Masy98/blocksMattes D2014-09-2612-41/+286
| |\ \ \ \ \ \ | | |_|/ / / / | |/| | | | | Added 1.8 Blocks and Items
| | * | | | | Moved curly brace to seperate lineMasy982014-09-261-1/+2
| | | | | | |
| | * | | | | Re-added 1.8 blocks to the redstone simulatorMasy982014-09-261-9/+46
| | | | | | |
| | * | | | | Merge branch 'master' into blocksMasy982014-09-26134-4147/+9350
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Items/ItemHandler.cpp src/Simulator/IncrementalRedstoneSimulator.cpp
| | * | | | | | Added Sea Lantern dropsMasy982014-09-122-0/+32
| | | | | | | |
| | * | | | | | Fixed 1.8 Item stacking and block harvestingMasy982014-09-122-26/+44
| | | | | | | |
| | * | | | | | Added new doors in ItemDoor.hMasy982014-09-111-1/+15
| | | | | | | |
| | * | | | | | Fixed mutton name in Sheep.cppMasy982014-09-112-3/+11
| | | | | | | |
| | * | | | | | Fixed mutton name in ItemHandlerMasy982014-09-111-1/+1
| | | | | | | |
| | * | | | | | Added barrier blockMasy982014-09-113-1/+7
| | | | | | | |
| | * | | | | | Added 1.8 food to the food listMasy982014-09-112-2/+5
| | | | | | | |
| | * | | | | | Added blocks to the fire simulatorMasy982014-09-111-0/+11
| | | | | | | |
| | * | | | | | Fixed incorrect handlersMasy982014-09-111-3/+3
| | | | | | | |
| | * | | | | | Added stone slab in BlockSlab.hMasy982014-09-101-1/+3
| | | | | | | |
| | * | | | | | Fixed typoMasy982014-09-101-1/+1
| | | | | | | |
| | * | | | | | Added new blocks to the BlockInfoMasy982014-09-103-12/+76
| | | | | | | |
| | * | | | | | Added new blocks to the BlockHandlerMasy982014-09-101-0/+12
| | | | | | | |
| | * | | | | | Added iron trapdoor, fence gates and doors to the redstone simulatorMasy982014-09-101-0/+11
| | | | | | | |
| | * | | | | | Added 1.8 Blocks and ItemsMasy982014-09-101-0/+37
| | | | | | | |
| * | | | | | | Merge pull request #1455 from mc-server/includesTiger Wang2014-09-2610-22/+15
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Removed a few unnecessary includes
| | * | | | | | | Update Plugin.hworktycho2014-09-261-2/+0
| | | | | | | | |
| | * | | | | | | Removed a few unnessicary includesTycho2014-09-2610-21/+16
| | | |_|/ / / / | | |/| | | | |
| * | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerTycho2014-09-263-3/+8
| |\ \ \ \ \ \ \ | | | |_|/ / / / | | |/| | | | |
| | * | | | | | Fixed issue with castingtycho2014-09-263-3/+8
| | | | | | | |
| * | | | | | | Removed more unessicary includesTycho2014-09-2648-59/+55
| |/ / / / / /
| * | | | | | Merge pull request #1419 from mc-server/redstoneTestsworktycho2014-09-2658-3075/+3306
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Added test mocking to IncrementalRedstoneSimulator
| | * | | | | Merge branch 'master' into redstoneTestsTycho2014-09-254-23/+42
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Simulator/IncrementalRedstoneSimulator.cpp
| | * | | | | | Fixed styleTycho2014-09-254-2/+108
| | | | | | | |
| | * | | | | | Merge branch 'master' into redstoneTestsTycho2014-09-2562-871/+5342
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Mobs/Monster.h
| | * \ \ \ \ \ \ Merge branch 'master' into redstoneTestsTycho2014-09-1747-186/+564
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Blocks/ChunkInterface.h
| | * | | | | | | | Added first test to show the object can be createdTycho2014-09-1743-456/+508
| | | | | | | | | |
| | * | | | | | | | IncrementalRedstoneSimulator now has no dependencies on cChunkTycho2014-09-166-375/+384
| | | | | | | | | |
| | * | | | | | | | Don't include IncrementalRedsonteSimulator.inc when in SELF_TEST modeTycho2014-09-111-5/+0
| | | | | | | | | |
| | * | | | | | | | Possibly decoupled IncrementalRedstoneSimulator from the rest of the serverTycho2014-09-1122-2339/+2403
| | | |_|_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | THis wil hopefully allow for unit testing
| * | | | | | | | Improved searching for spawn.madmaxoft2014-09-261-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Won't spawn on a small island inside ocean anymore.
| * | | | | | | | cByteBuffer: Simplified ReadPosition().madmaxoft2014-09-251-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, by popular demand, added more comments to the code.
| * | | | | | | | Protocol 1.8: Fixed plugin message packet.madmaxoft2014-09-251-1/+3
| | | | | | | | |
| * | | | | | | | cByteBuffer: Fixed position reading.madmaxoft2014-09-251-3/+3
| | | | | | | | |
| * | | | | | | | TwoLevel BioGen: reads params from INI file.madmaxoft2014-09-251-9/+26
| | | | | | | | |
| * | | | | | | | Added cByteBuffer::WriteBEUShort().madmaxoft2014-09-253-1/+15
| | | | | | | | |
| * | | | | | | | Merge pull request #1452 from Howaner/FixesMattes D2014-09-257-18/+55
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fixes
| | * | | | | | | | Comment styleHowaner2014-09-251-1/+1
| | | | | | | | | |
| | * | | | | | | | Merge branch 'master' into FixesHowaner2014-09-254-25/+41
| | |\ \ \ \ \ \ \ \ | | | | |_|_|/ / / / | | | |/| | | | | |
| | * | | | | | | | Fixed wrong Surrounding sizeHowaner2014-09-251-3/+3
| | | | | | | | | |
| | * | | | | | | | Anvil: Arrow Tile tags are a short in VanillaHowaner2014-09-252-7/+24
| | | | | | | | | |
| | * | | | | | | | Use the json writer to write sign texts.Howaner2014-09-251-5/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without this change the client disconnects if the text contains "
| | * | | | | | | | Fixed dispender direction bugHowaner2014-09-251-1/+1
| | | | | | | | | |
| | * | | | | | | | Fixed hanging direction bugs.Howaner2014-09-253-2/+17
| | | |_|_|/ / / / | | |/| | | | | |
| * | | | | | | | Protocol 1.8: Handling packet compression properly.madmaxoft2014-09-252-14/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The compression didn't work with CommLog turned on.
| * | | | | | | | Protocol 1.8: Added checks for values presence.madmaxoft2014-09-251-2/+8
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Reported by @worktycho / Coverity.
| * | | | | | | Redstone: Fixed a crash with repeaters on a chunk border.madmaxoft2014-09-251-13/+22
| | | | | | | |
| * | | | | | | 1.8 Protocol: Fixed problems with no-payload packets.madmaxoft2014-09-251-6/+7
| | | | | | | |
| * | | | | | | 1.7 Protocol: fixed potential problems with no-payload packets.madmaxoft2014-09-251-4/+4
| | | | | | | |
| * | | | | | | HangingEntity: Silenced a crash.madmaxoft2014-09-251-2/+8
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | Vanilla worlds sometimes contain data that this was asserting upon. Changed into a log.
| * | | | | | derpHowaner2014-09-241-4/+4
| | | | | | |
| * | | | | | Don't create two entity lists.Howaner2014-09-242-7/+14
| | | | | | |
| * | | | | | Merge branch 'master' into WorldLoaderHowaner2014-09-242-4/+18
| |\ \ \ \ \ \
| | * | | | | | Anvil: Wolf collar color is a byte in Vanilla.madmaxoft2014-09-232-4/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Kept the old Int reading for compatibility reasons. Ref.: #1448
| * | | | | | | Merge branch 'master' into WorldLoaderHowaner2014-09-232-5/+5
| |\| | | | | |
| | * | | | | | Fixed compiler warnings in 1.8 protocol.madmaxoft2014-09-231-2/+2
| | | | | | | |
| | * | | | | | Fixed a crash in WSSAnvil.madmaxoft2014-09-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reported as #1448.
| * | | | | | | MCServer world compatiblity with vanilla and mcedit.Howaner2014-09-233-5/+52
| |/ / / / / /
| * | | | | | Merge branch 'master' into EntityCustomNameHowaner2014-09-23161-1941/+6997
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ClientHandle.cpp src/ClientHandle.h src/Protocol/Protocol.h src/Protocol/Protocol125.cpp src/Protocol/Protocol125.h src/Protocol/Protocol17x.cpp src/Protocol/Protocol17x.h src/Protocol/ProtocolRecognizer.cpp src/Protocol/ProtocolRecognizer.h src/World.cpp src/World.h
| | * | | | | | Made ExpBottleEntity break on entities.archshift2014-09-232-1/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1369
| | * | | | | | A few compiler warning fixesChris Darnell2014-09-235-44/+47
| | | | | | | |
| | * | | | | | Updated README.mdHowaner2014-09-221-1/+1
| | | | | | | |
| | * | | | | | Hotfixed 1.8 item reading.Howaner2014-09-222-6/+6
| | | | | | | |
| | * | | | | | Merge pull request #1398 from mc-server/1.8-ProtocolAlexander Harkness2014-09-2235-678/+4726
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | 1.8 Protocol Update
| | | * | | | | | Changed metadata reading again.Howaner2014-09-222-173/+7
| | | | | | | | |
| | | * | | | | | Fixed item nbt reading.Howaner2014-09-222-3/+168
| | | | | | | | |
| | | * | | | | | Code improvements.Howaner2014-09-194-38/+36
| | | | | | | | |
| | | * | | | | | Merge branch 'master' into 1.8-ProtocolHowaner2014-09-1917-111/+339
| | | |\ \ \ \ \ \
| | | * | | | | | | DerpHowaner2014-09-181-1/+1
| | | | | | | | | |
| | | * | | | | | | Exported player list states to extra functions.Howaner2014-09-1814-531/+837
| | | | | | | | | |
| | | * | | | | | | 1.8: Simplified item metadata reading.Howaner2014-09-183-27/+3
| | | | | | | | | |
| | | * | | | | | | Use xofts ReadPosition() code.Howaner2014-09-171-3/+6
| | | | | | | | | |
| | | * | | | | | | Simplified WriteUUID()Howaner2014-09-141-9/+9
| | | | | | | | | |
| | | * | | | | | | Fixed warnings.Howaner2014-09-141-3/+3
| | | | | | | | | |
| | | * | | | | | | Merge branch 'master' into 1.8-ProtocolHowaner2014-09-1419-86/+250
| | | |\ \ \ \ \ \ \
| | | * | | | | | | | 1.8: Updated scoreboard packets.Howaner2014-09-131-3/+7
| | | | | | | | | | |
| | | * | | | | | | | Moved chat json creating to the CompositeChat class.Howaner2014-09-136-346/+192
| | | | | | | | | | |
| | | * | | | | | | | 1.8: Fixed maps.Howaner2014-09-1312-45/+43
| | | | | | | | | | |
| | | * | | | | | | | Merge branch 'master' into 1.8-ProtocolHowaner2014-09-1322-100/+181
| | | |\ \ \ \ \ \ \ \ | | | | | |_|_|_|/ / / | | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Items/ItemHoe.h
| | | * | | | | | | | Merge branch 'master' into 1.8-ProtocolHowaner2014-09-121-1/+2
| | | |\ \ \ \ \ \ \ \
| | | * \ \ \ \ \ \ \ \ Merge branch 'master' into 1.8-ProtocolHowaner2014-09-122-0/+17
| | | |\ \ \ \ \ \ \ \ \
| | | * \ \ \ \ \ \ \ \ \ Merge branch 'master' into 1.8-ProtocolHowaner2014-09-1258-319/+228
| | | |\ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | Fixed many right click issues.Howaner2014-09-122-7/+17
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Fixed wrong buffer length in the 1.8 protocol.Howaner2014-09-121-10/+4
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Fixed ReadItem()Howaner2014-09-122-20/+40
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Added difficulty sendingHowaner2014-09-121-0/+6
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Fixed block entities.Howaner2014-09-121-8/+2
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Fixed eating.Howaner2014-09-121-0/+1
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Fixed workbench, enchanting and anvil window.Howaner2014-09-121-3/+19
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Enderman, byte -> shortHowaner2014-09-121-1/+1
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Fixed enderman spawning.Howaner2014-09-121-1/+1
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Fixed inventory open packet.Howaner2014-09-113-4/+32
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Removed GetProtocolVersion() from the protocols.Howaner2014-09-117-19/+6
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Fixed sign placing.Howaner2014-09-111-1/+1
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Fixed hangings.Howaner2014-09-114-32/+89
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Added ParticleEffect packet.Howaner2014-09-1119-38/+115
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | 1.8: Added MultiBlockChange packet.Howaner2014-09-094-54/+86
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Added the player list to the 1.8 protocol.Howaner2014-09-0915-31/+108
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Merge branch 'master' into 1.8-ProtocolHowaner2014-09-0939-426/+901
| | | |\ \ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | | PlayerSpawn packet: Send the correct uuid.Howaner2014-09-091-5/+1
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | 1.8: Added new uuid field.Howaner2014-09-093-17/+44
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | More fixes.Howaner2014-09-083-12/+7
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Recoded cProtocol180 class.Howaner2014-09-084-589/+2690
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | 1.8: Fixed tab complete.Howaner2014-09-083-2/+20
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Fixed more 1.8 packets.Howaner2014-09-087-47/+313
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Updated chunk sending to 1.8Howaner2014-09-084-26/+22
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Added GetProtocolVersion() to cProtocol.Howaner2014-09-088-26/+29
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Implemented packet compression.Howaner2014-09-087-35/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ChunkData packet needs this.
| | | * | | | | | | | | | | | Fixed client errors.Howaner2014-09-045-52/+79
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Added more 1.8 protocol things.Howaner2014-09-046-14/+632
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Started implementing of the 1.8 protocol.Howaner2014-09-047-7/+502
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Made it compile with clangChris Darnell2014-09-226-11/+11
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fix crash in cLineBlockTracerTiger Wang2014-09-211-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1418
| | * | | | | | | | | | | | | Fixed cParsedNBT::FindTagByPath().madmaxoft2014-09-201-1/+1
| | | |_|_|_|_|_|_|/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There was an off-by-one error in the name handling.
| * | | | | | | | | | | | | Merge branch 'master' into EntityCustomNameHowaner2014-09-023-16/+38
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Added CustomName saving.Howaner2014-09-023-2/+23
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Added the new functions to APIDump.Howaner2014-09-022-3/+3
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Added SetCustomName() to players.Howaner2014-09-0215-41/+124
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Added name tagHowaner2014-09-017-3/+31
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Added CustomName to cMonster.Howaner2014-09-014-4/+64
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Implemented mob spawner.Howaner2014-09-1911-67/+393
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge branch 'master' into MobSpawnerHowaner2014-09-1917-100/+284
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / / / / / / | |/| | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed minor style issues.madmaxoft2014-09-173-5/+5
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Voronoi biomegen: Added JitterSize and OddRowOffset.madmaxoft2014-09-173-88/+164
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Merge pull request #1437 from nesco/masterMattes D2014-09-174-5/+32
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented spectator gamemode.
| | * | | | | | | | | | | | | | Implementing Spectator Modenesco2014-09-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding some proprieties of the spectator game mode in player.cpp : - Players can't toss items - Players can't touch the ground
| | * | | | | | | | | | | | | | Update World.hnesco2014-09-171-1/+1
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Preparing 1.8 updatenesco2014-09-171-5/+15
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Preparing 1.8 updatenesco2014-09-161-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Partially added Spectator gamemode
| | * | | | | | | | | | | | | | Preparing 1.8 update nesco2014-09-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added Spectator gamemode
| | * | | | | | | | | | | | | | Pre 1.8 releasenesco2014-09-161-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added Spectator gamemode
| | * | | | | | | | | | | | | | Preparing 1.8 changesnesco2014-09-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added Spectator Gamemode
| | * | | | | | | | | | | | | | Pre 1.8 releasenesco2014-09-161-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added Gamemode Spectator
| * | | | | | | | | | | | | | | Added an explicit setting for allowing BungeeCord handshake.madmaxoft2014-09-173-1/+16
| | |_|_|_|_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | |
| * | | | | | | | | | | | | | BungeeCord compatibility: don't overwrite UUID / properties.madmaxoft2014-09-171-2/+10
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Full BungeeCord compatibility.madmaxoft2014-09-172-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1392. Fixes SpigotMC/BungeeCord#1211.
| * | | | | | | | | | | | | | Initial BungeeCord support.madmaxoft2014-09-174-1/+43
| |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #1392
* / / / / / / / / / / / / / Created MobSpawnerEntity class.Howaner2014-09-174-1/+165
|/ / / / / / / / / / / / /
* | | | | | | | | / / / / VoronoiMap: Added Jitter and OddRowOffset params.madmaxoft2014-09-152-11/+55
| |_|_|_|_|_|_|_|/ / / / |/| | | | | | | | | | |
* | | | | | | | | | | | OSSupport: Fixed UNICODE Windows builds.Mattes D2014-09-142-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The files now compile even inside UNICODE applications.
* | | | | | | | | | | | Improved cBlockHandler::DropBlockTiger Wang2014-09-135-46/+34
| | | | | | | | | | | |
* | | | | | | | | | | | Entities experience water resistanceTiger Wang2014-09-132-16/+31
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #1353 from mc-server/EffectsMattes D2014-09-1312-16/+177
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ / / / |/| | | | | | | | | | | Added speed entity effect.
| * | | | | | | | | | | Added extra mushroom handler.Howaner2014-09-124-10/+60
| | | | | | | | | | | |
| * | | | | | | | | | | Merge branch 'master' into EffectsHowaner2014-09-12106-941/+1428
| |\ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|/ / / / | | |/| | | | | | | | |
| * | | | | | | | | | | Renamed SetWalkSpeed() to SetRelativeWalkSpeed()Howaner2014-09-023-9/+9
| | | | | | | | | | | |
| * | | | | | | | | | | Merge branch 'master' into EffectsHowaner2014-09-0232-317/+640
| |\ \ \ \ \ \ \ \ \ \ \ | | | |_|/ / / / / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | Fixed potion removing in creative mode.Howaner2014-08-305-8/+16
| | | | | | | | | | | |
| * | | | | | | | | | | Added slowness effect and added entity support.Howaner2014-08-302-16/+65
| | | | | | | | | | | |
| * | | | | | | | | | | Added SetWalkSpeed() to cMonster.Howaner2014-08-302-0/+9
| | | | | | | | | | | |
| * | | | | | | | | | | Merge branch 'master' into EffectsHowaner2014-08-3011-222/+318
| |\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Added speed entity effect.Hownaer2014-08-283-1/+46
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixed friction being applied whilst airborneTiger Wang2014-09-121-11/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reported by tonibm9 in #1300.
* | | | | | | | | | | | | Only drop flint or gravel, not both.Howaner2014-09-121-2/+4
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixed farmland issues.Howaner2014-09-1211-64/+75
| | | | | | | | | | | | |
* | | | | | | | | | | | | Only place farmland if no block is upper than dirt/grass.Howaner2014-09-121-1/+6
| | | | | | | | | | | | |
* | | | | | | | | | | | | Added hoe interact sound.Howaner2014-09-121-0/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Play placesound from the middle of the block.Howaner2014-09-121-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixed block place sounds.Howaner2014-09-122-15/+27
| | | | | | | | | | | | |
* | | | | | | | | | | | | Spawn exp if you break a mob spawner.Howaner2014-09-126-4/+50
| | | | | | | | | | | | |
* | | | | | | | | | | | | Disabled mobspawner itemdrop.Howaner2014-09-121-0/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Players in survival mode are not allowed to break a bedrock.Howaner2014-09-121-0/+6
| |_|_|/ / / / / / / / / |/| | | | | | | | | | |
* | | | | | | | | | | | Fixed iron ore drop.Howaner2014-09-121-1/+2
| |_|_|_|_|_|_|/ / / / |/| | | | | | | | | |
* | | | | | | | | | | Added flint drop and fence gate meta reset.Howaner2014-09-122-0/+17
| |_|_|_|_|_|/ / / / |/| | | | | | | | |
* | | | | | | | | | Fixed a redstone sim failure with droppers.Mattes D2014-09-111-1/+1
| |_|_|_|_|_|/ / / |/| | | | | | | |
* | | | | | | | | Grammar fixes.Alexander Harkness2014-09-101-2/+2
| | | | | | | | |
* | | | | | | | | Added abilty to set build infoTycho2014-09-103-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | build info is displayed at startup Fixes #1410
* | | | | | | | | Merge pull request #1402 from Masy98/SoundsMattes D2014-09-1050-299/+172
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Moved sound-configs into BlockID.h and fixed/ added loads of sounds
| * | | | | | | | | Removed old sound-configuration for SignPostsMasy982014-09-091-6/+0
| | | | | | | | | |
| * | | | | | | | | Removed old sound-configuration for RepeatersMasy982014-09-091-6/+0
| | | | | | | | | |
| * | | | | | | | | Removed old sound-configuration for TrapdoorsMasy982014-09-091-5/+0
| | | | | | | | | |
| * | | | | | | | | Removed old sound-configuration for doorsMasy982014-09-092-10/+0
| | | | | | | | | |
| * | | | | | | | | Moved sound-configs into BlockID.h and fixed/ added loads of soundsMasy982014-09-0945-272/+172
| | | | | | | | | |
* | | | | | | | | | Merge pull request #1399 from mc-server/warningsMattes D2014-09-093-17/+29
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / |/| | | | | | | | | Warnings
| * | | | | | | | | Actually set defaultworktycho2014-09-091-0/+1
| | | | | | | | | |
| * | | | | | | | | use the correct ASSERTworktycho2014-09-081-2/+2
| | | | | | | | | |
| * | | | | | | | | FIxed a couple more warningsTycho2014-09-081-2/+8
| | | | | | | | | |
| * | | | | | | | | TimeOfDay does not need to be an Int64Tycho2014-09-083-6/+6
| | | | | | | | | |
| * | | | | | | | | Fixed a few compile warningsTycho2014-09-081-9/+14
| | | | | | | | | |
* | | | | | | | | | capitalisation errorworktycho2014-09-081-1/+1
|/ / / / / / / / /
* | | | | | | | | derpworktycho2014-09-081-1/+1
| | | | | | | | |
* | | | | | | | | If server fails init, save any changed or generated settings.worktycho2014-09-081-0/+1
| | | | | | | | |
* | | | | | | | | Exported cClientHandle:GetIPString() to Lua API.Mattes D2014-09-071-1/+1
|/ / / / / / / /
* | | | | | | | Webadmin: Added default ports to auto-generated ini file.Mattes D2014-09-071-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1382.
* | | | | | | | WebAdmin: Added HTTPS instructions when cert / key is missing.Mattes D2014-09-071-0/+1
| | | | | | | |
* | | | | | | | Removed chunk's unused Y coord.Mattes D2014-09-062-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the second issue of #1313.
* | | | | | | | Added Y-wise asserts to signs.Mattes D2014-09-063-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should help detect #1313's second case.
* | | | | | | | Alpha-sorted protocol 1.7 senders.Mattes D2014-09-061-7/+7
| | | | | | | |
* | | | | | | | Fixed player spawning in unknown world.Mattes D2014-09-061-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This may happen if the admin removes a world.
* | | | | | | | Anvil: Fixed an off-by-one error in the loader.Mattes D2014-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1307.
* | | | | | | | Fixed scoreboard loader type checks.Mattes D2014-09-061-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes scoreboard loading error reported on the Dropper map in #1307.
* | | | | | | | Merge pull request #1361 from mc-server/WebAdminMattes D2014-09-062-11/+143
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Webadmin improvements
| * | | | | | | | Xoft fixes.Alexander Harkness2014-09-061-1/+1
| | | | | | | | |
| * | | | | | | | [WebAdmin] Code improvements.Howaner2014-09-022-61/+99
| | | | | | | | |
| * | | | | | | | Merge branch 'master' into WebAdminHowaner2014-09-0222-212/+529
| |\ \ \ \ \ \ \ \ | | | |_|/ / / / / | | |/| | | | | |
| * | | | | | | | WebAdmin: Stop webadmin if template can't load.Howaner2014-08-311-1/+3
| | | | | | | | |
| * | | | | | | | WebAdmin: Added "files" folder and load the login template from login_template.htmlHowaner2014-08-312-10/+102
| | | | | | | | |
* | | | | | | | | WorldStorage no longer queues chunks into generator.Mattes D2014-09-054-51/+17
| | | | | | | | |
* | | | | | | | | Fixed loading empty chunks.Mattes D2014-09-052-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reported on the Dropper map in #1307.
* | | | | | | | | Rewritten chunk status to specify whether the chunk is in queue.Mattes D2014-09-059-107/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes #1370.
* | | | | | | | | BiomeMultiCache is not used for simple generators.Mattes D2014-09-051-21/+22
| | | | | | | | |
* | | | | | | | | Fixed style.Mattes D2014-09-053-9/+13
| | | | | | | | |
* | | | | | | | | Fixed security: Player cannot spawn in a disabled world.Mattes D2014-09-051-1/+1
| | | | | | | | |
* | | | | | | | | Anvil: Fixed loading block entities with invalid Y coord.Mattes D2014-09-051-1/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #1375 from mc-server/EntitiesInBoxMattes D2014-09-0411-1/+207
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Implemented ForEachEntityInBox
| * | | | | | | | | Fixed compilation after chunk Y removal.madmaxoft2014-09-041-1/+1
| | | | | | | | | |
| * | | | | | | | | Merge remote-tracking branch 'origin/master' into EntitiesInBoxmadmaxoft2014-09-0428-261/+350
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | LuaState: Fixed class value-getting off the stack.madmaxoft2014-09-031-4/+4
| | | | | | | | | | |
| * | | | | | | | | | LuaState: Fixed referenced function pushing.madmaxoft2014-09-032-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The references are no longer destroyed by the call.
| * | | | | | | | | | Exported ForEachEntityInBox() to Lua API.madmaxoft2014-09-031-0/+70
| | | | | | | | | | |
| * | | | | | | | | | Added cWorld::ForEachEntityInBox()madmaxoft2014-09-038-0/+117
| | | | | | | | | | |
| * | | | | | | | | | cBoundingBox: Added accessors.madmaxoft2014-09-031-0/+11
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #1371 from DayBr3ak/masterMattes D2014-09-043-2/+92
|\ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / |/| | | | | | | | | | issue381, multicache for cBioGen
| * | | | | | | | | | change to linear calculationDayBr3ak2014-09-032-9/+7
| | | | | | | | | | |
| * | | | | | | | | | adapting formatDayBr3ak2014-09-033-7/+14
| | | | | | | | | | |
| * | | | | | | | | | forgot this oneDayBr3ak2014-09-022-2/+2
| | | | | | | | | | |
| * | | | | | | | | | opting for size_tDayBr3ak2014-09-022-5/+5
| | | | | | | | | | |
| * | | | | | | | | | fixing memory leakDayBr3ak2014-09-021-4/+5
| | | | | | | | | | |
| * | | | | | | | | | changing implem, using vectorsDayBr3ak2014-09-022-98/+23
| | | | | | | | | | |
| * | | | | | | | | | adding config file entry #381DayBr3ak2014-09-021-1/+10
| | | | | | | | | | |
| * | | | | | | | | | adding the multicache behaviorDayBr3ak2014-09-023-4/+119
| | | | | | | | | | |
| * | | | | | | | | | added multicache class definitionDayBr3ak2014-09-011-0/+35
| | |_|_|_|_|/ / / / | |/| | | | | | | |
* | | | | | | | | | Anvil: Cleanly refuse to store data that is too large.madmaxoft2014-09-041-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Each chunk in MCA needs to be less than 1 MiB compressed; chunks that are larger will be refused with a log message.
* | | | | | | | | | Revert "Globals.h: Added Floor and Ciel casting, C++ cast cleanups, etc"archshift2014-09-044-62/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 472efa8174626a00ffdf5b39e1a44ac419cd3698. Apparently we don't support some of these features quite yet (darn you C++98!)
* | | | | | | | | | In 1.8, carrots and potatoes yield one less hunger point.archshift2014-09-042-2/+2
| | | | | | | | | |
* | | | | | | | | | Globals.h: Added Floor and Ciel casting, C++ cast cleanups, etcarchshift2014-09-044-29/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Snow Golems must also be above 64Y to spawn snow (as of 1.8).
* | | | | | | | | | ChunkGenerator: Log world seed when creating a new one.madmaxoft2014-09-031-3/+14
| | | | | | | | | |
* | | | | | | | | | Merge pull request #1351 from LO1ZB/remove-a_RelYMattes D2014-09-0318-230/+237
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / |/| | | | | | | | | remove y-coord from chunks
| * | | | | | | | | commitLO1ZB2014-09-031-1/+1
| | | | | | | | | |
| * | | | | | | | | re-add the missing "s" too cChunkCoordsWithBoolListLO1ZB2014-09-033-6/+6
| | | | | | | | | |
| * | | | | | | | | hopefully the last commit for removing y-coord from chunks. :)LO1ZB2014-09-035-23/+41
| | | | | | | | | |
| * | | | | | | | | fix possibility of a twice generated chunkLO1ZB2014-09-011-1/+2
| | | | | | | | | |
| * | | | | | | | | remove orphaned comment.LO1ZB2014-08-301-4/+0
| | | | | | | | | |
| * | | | | | | | | me being stupidLO1ZB2014-08-291-1/+1
| | | | | | | | | |
| * | | | | | | | | add commentsLO1ZB2014-08-291-1/+2
| | | | | | | | | |
| * | | | | | | | | fix chunk regeneratingLO1ZB2014-08-293-9/+9
| | | | | | | | | |
| * | | | | | | | | remove y-coord from chunksLO1ZB2014-08-2818-217/+208
| | | | | | | | | |
* | | | | | | | | | Anvil: switched inflate to stream mode.madmaxoft2014-09-033-18/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes the fixed-size buffer which could have caused #1307 and #1366.
* | | | | | | | | | Fixed style and alpha-sorting.madmaxoft2014-09-036-20/+20
| | | | | | | | | |
* | | | | | | | | | Added mutton, which sheep now drop when killedarchshift2014-09-034-0/+13
| | | | | | | | | |
* | | | | | | | | | EntityEffect.cpp: Enable 1.8's leaping potionarchshift2014-09-031-1/+1
| |_|/ / / / / / / |/| | | | | | | |
* | | | | | | | | Clang wants volatile...madmaxoft2014-09-021-1/+1
| | | | | | | | |
* | | | | | | | | Added strict error reporting to chunk loading.madmaxoft2014-09-021-1/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should help with #1307.
* | | | | | | | | Changed the IsEnchantable() comment again.Howaner2014-09-021-1/+2
| | | | | | | | |
* | | | | | | | | Merge branch 'master' into InventoryHowaner2014-09-0250-560/+1137
|\ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / | |/| | | | | | |
| * | | | | | | | Pickups combine only within one chunk.madmaxoft2014-09-011-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This greatly improves performance of the tick thread.
| * | | | | | | | Fixed off-by-one errors in cChunkDef asserts.madmaxoft2014-09-011-8/+8
| | | | | | | | |
| * | | | | | | | Merge pull request #1368 from mc-server/coverityFixesMattes D2014-09-011-6/+24
| |\ \ \ \ \ \ \ \ | | |_|/ / / / / / | |/| | | | | | | Make sure packets are valid
| | * | | | | | | Make sure packets are validworktycho2014-09-011-6/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 66408, 66409 and 72045
| * | | | | | | | Fixed Bindings regeneration under MSVC.madmaxoft2014-09-011-1/+6
| | | | | | | | |
| * | | | | | | | Fixed previous commit's wrong assumptions.madmaxoft2014-09-011-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The equipment-getting functions return a copy already, so we can't take a pointer, really.
| * | | | | | | | Fixed MSVC compilation, improved performance.madmaxoft2014-09-011-30/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We're not creating copies of the equipped items anymore, rather, we're using pointers to them. Also pow() is needlessly slow for a simple second power, and MSVC2008 was confused about the pow() overloads.
| * | | | | | | | Fixed MSVC warning.madmaxoft2014-09-011-2/+2
| | | | | | | | |
| * | | | | | | | Merge remote-tracking branch 'Hircine/Enchantments'madmaxoft2014-09-019-22/+323
| |\ \ \ \ \ \ \ \
| | * | | | | | | | Fixed styleJaume Aloy2014-08-313-8/+9
| | | | | | | | | |
| | * | | | | | | | Added a_Digger checkJaume Aloy2014-08-302-30/+33
| | | | | | | | | |
| | * | | | | | | | More EnchantmentsJaume Aloy2014-08-222-58/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added Thorns and Respiration enchantments
| | * | | | | | | | Protection Enchantments, some fixesJaume Aloy2014-08-214-15/+122
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Protection echantments (fire, blast, feather falling, protection and projectile). It isn't finished, add secondary effects and optimize the code. - Removed some brackets. - Silk touch fixed.
| | * | | | | | | | Changed if in BlockHandlerJaume Aloy2014-08-192-6/+2
| | | | | | | | | |
| | * | | | | | | | FixesJaume Aloy2014-08-196-50/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
| | * | | | | | | | Changed if for switchJaume Aloy2014-08-193-15/+25
| | | | | | | | | |
| | * | | | | | | | Added more enchantments and some fixesJaume Aloy2014-08-196-23/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed Debug messages - Added Punch enchantment effect - Added Silk Touch enchantment - Added Unbreaking enchantment effect
| | * | | | | | | | Added some EnchantmentsJaume Aloy2014-08-194-7/+100
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Bow enchantments: Infinity, Flame and Power - Sword and tools enchantments: Fire Aspect, Bane of Arthropods, Smite, Sharpness
| * | | | | | | | | Avoid false positive in style check.madmaxoft2014-09-011-1/+1
| | | | | | | | | |
| * | | | | | | | | Merge pull request #1365 from mc-server/coverityFixesMattes D2014-09-014-9/+9
| |\ \ \ \ \ \ \ \ \ | | | |/ / / / / / / | | |/| | | | | | | Coverity fixes
| | * | | | | | | | Fixed style.madmaxoft2014-09-011-1/+2
| | | | | | | | | |
| | * | | | | | | | Removed isDone checkworktycho2014-08-311-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The same data is returned by executeStep so why execute a call when you have the data.
| | * | | | | | | | Changed null check to assertworktycho2014-08-311-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed the null check to clarify that the function should not be called before the entity has been attached to a world.
| | * | | | | | | | Delete the entity before removing from the listworktycho2014-08-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Old code was calling dereference on invalid iterator
| | * | | | | | | | Init RankMgr pointer to NULLworktycho2014-08-311-1/+2
| | | | | | | | | |
| * | | | | | | | | Use std::auto_ptrHowaner2014-08-311-6/+6
| | | | | | | | | |
| * | | | | | | | | Fixed compile warnings.Howaner2014-08-312-5/+5
| | | | | | | | | |
| * | | | | | | | | Fixed wrong doxy-comment.Howaner2014-08-311-1/+1
| | | | | | | | | |
| * | | | | | | | | Rewrited furnace.txt loading.Howaner2014-08-314-159/+119
| |/ / / / / / / /
| * | | / / / / / Check range of y in HasNearLogworktycho2014-08-311-1/+1
| | |_|/ / / / / | |/| | | | | | | | | | | | | | Fixes #803
| * | | | | | | Fixed style.madmaxoft2014-08-302-4/+6
| | | | | | | |
| * | | | | | | Merge branch 'master' into fixesmadmaxoft2014-08-308-235/+324
| |\ \ \ \ \ \ \
| | * | | | | | | WSSAnvil: Removed leftover debugging code.madmaxoft2014-08-301-4/+0
| | | | | | | | |
| | * | | | | | | Fixed MSVC2008 compilation.madmaxoft2014-08-301-18/+18
| | | |_|_|/ / / | | |/| | | | | | | | | | | | | | | | | | | | | It was getting confused about which sqrt() overload to call.
| | * | | | | | cChunk: Fixed the Coords param.Mattes D2014-08-291-1/+1
| | | | | | | |
| | * | | | | | Rewritten block entity loading.Mattes D2014-08-297-215/+308
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Block entities are now loaded based on the blocktype at the coords they specify; before loading, their type ("id" NBT tag) is checked. The chunk now expects that all block entities given to it via cChunk::SetAllData() have their valid blocktype; asserts if they don't. Fixes #1354.
| * | | | | | | A better hotfix for CraftingRecipiesTiger Wang2014-08-291-1/+1
| | | | | | | |
| * | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-08-29139-1773/+5469
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Server.cpp
| | * | | | | | VanillaFluidSimulator: Fixed an invalid Y-coord query.Mattes D2014-08-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was causing a spam of console messages, along with possible server crash, when liquids passed below the world: http://forum.mc-server.org/showthread.php?tid=1508&pid=15632#pid15632
| | * | | | | | Fixed conversion warning.Mattes D2014-08-291-1/+1
| | | | | | | |
| | * | | | | | Fixed spaces.Mattes D2014-08-291-1/+1
| | | | | | | |
| | * | | | | | Hotfixed recipe.txt loading.Hownaer2014-08-292-4/+7
| | | |_|/ / / | | |/| | | |
| | * | | | | Fire can be destroyed with the sword in creative-modeHownaer2014-08-281-1/+2
| | | | | | |
| | * | | | | Merge branch 'master' of https://github.com/mc-server/MCServerHownaer2014-08-2814-41/+197
| | |\ \ \ \ \
| | | * \ \ \ \ Merge pull request #1323 from mc-server/CraftingFixesMattes D2014-08-2813-39/+105
| | | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | Fixed a couple of issues in craftingRecipes.cpp
| | | | * | | | | Final template keyword style fix.Mattes D2014-08-281-2/+2
| | | | | | | | |
| | | | * | | | | More template keyword fixes.Mattes D2014-08-285-16/+16
| | | | | | | | |
| | | | * | | | | Merge remote-tracking branch 'origin/master' into CraftingFixesMattes D2014-08-28103-1583/+4790
| | | | |\ \ \ \ \
| | | | * | | | | | CheckBasicStyle: Added checking for the "template" keyword.Mattes D2014-08-281-1/+2
| | | | | | | | | |
| | | | * | | | | | Fixed spaces after "template" keyword.Mattes D2014-08-285-14/+14
| | | | | | | | | |
| | | | * | | | | | Fixed commentsTycho2014-08-131-5/+5
| | | | | | | | | |
| | | | * | | | | | Added missing headerTycho2014-08-131-0/+1
| | | | | | | | | |
| | | | * | | | | | Fixed Integer pasing warnings in CraftingRecipies.cppTycho2014-08-132-4/+64
| | | | | | | | | |
| | | | * | | | | | Fixed type issues in CraftingRecipe.cppTycho2014-08-132-5/+5
| | | | | | | | | |
| | | | * | | | | | Fixed forgotten error checkingTycho2014-08-131-1/+5
| | | | | | | | | |
| | | * | | | | | | Fixed a typo.Mattes D2014-08-281-1/+1
| | | | | | | | | |
| | | * | | | | | | Merge pull request #1324 from ChriPiv/masterMattes D2014-08-281-2/+92
| | | |\ \ \ \ \ \ \ | | | | |_|/ / / / / | | | |/| | | | | | Implement ability to push minecarts on curved rails
| | | | * | | | | | Change comment formattingChristophe Piveteau2014-08-241-20/+12
| | | | | | | | | |
| | | | * | | | | | Adjust comment formattingChristophe Piveteau2014-08-181-20/+40
| | | | | | | | | |
| | | | * | | | | | Added a lot of commentsChristophe Piveteau2014-08-151-30/+36
| | | | | | | | | |
| | | | * | | | | | Clarify comment messageChristophe Piveteau2014-08-151-2/+2
| | | | | | | | | |
| | | | * | | | | | End of comment moved away from new lineChristophe Piveteau2014-08-151-2/+1
| | | | | | | | | |
| | | | * | | | | | Add some commentsChristophe Piveteau2014-08-151-10/+21
| | | | | | | | | |
| | | | * | | | | | Further changes in coding styleChristophe Piveteau2014-08-141-38/+28
| | | | | | | | | |
| | | | * | | | | | Further fixing of coding style errorsChristophe Piveteau2014-08-131-26/+22
| | | | | | | | | |
| | | | * | | | | | Another intendation errorChristophe Piveteau2014-08-131-2/+2
| | | | | | | | | |
| | | | * | | | | | Fixed braces and intendation errorsChristophe Piveteau2014-08-131-3/+11
| | | | | | | | | |
| | | | * | | | | | Implement ability to push minecarts on curved railsChristophe Piveteau2014-08-131-2/+70
| | | | | | | | | |
| | * | | | | | | | Fixed anvil placing.Hownaer2014-08-281-5/+6
| | |/ / / / / / /
| * | | | | | | | Added new console command with cleanupTiger Wang2014-08-292-28/+45
| | | | | | | | |
| * | | | | | | | Improved explosion damageTiger Wang2014-08-292-48/+28
| | | | | | | | |
| * | | | | | | | Removed unused codeTiger Wang2014-08-293-3/+1
| | | | | | | | |
| * | | | | | | | Improved command block securityTiger Wang2014-08-291-6/+19
| | | | | | | | |
* | | | | | | | | Changed the IsEnchantable() comment.Howaner2014-08-301-1/+2
| | | | | | | | |
* | | | | | | | | APIDump: Added missing cItem things.Hownaer2014-08-281-1/+1
| | | | | | | | |
* | | | | | | | | Added comments.Hownaer2014-08-281-1/+3
| | | | | | | | |
* | | | | | | | | Fixed bad values in the IsEnchantable() method.Hownaer2014-08-282-5/+17
| | | | | | | | |
* | | | | | | | | Fixed crashes and use std::swap.Hownaer2014-08-284-26/+43
| | | | | | | | |
* | | | | | | | | Enchanting table improvements.Hownaer2014-08-285-154/+113
| |/ / / / / / / |/| | | | | | |
* | | | | | | | Fixed mob burning.reiter2014-08-281-1/+1
| |_|_|_|/ / / |/| | | | | | | | | | | | | Fixes #1298
* | | | | | | DungeonRooms: Fixed an off-by-one error.Mattes D2014-08-271-2/+2
| | | | | | |
* | | | | | | More basic style fixes.Mattes D2014-08-271-2/+2
| | | | | | |
* | | | | | | Fixed basic style violations.Mattes D2014-08-272-13/+11
| | | | | | |
* | | | | | | CheckBasicStyle: Relaxed the "space after comma".Mattes D2014-08-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | An apostrophe directly following a comma is not a violation.
* | | | | | | DungeonRooms: Added a height probability distribution function.Mattes D2014-08-273-9/+19
| | | | | | |
* | | | | | | DungeonRooms: Added the spawner in the center of the room.Mattes D2014-08-271-0/+15
| | | | | | |
* | | | | | | DungeonRooms: Chests are never placed next to each other.Mattes D2014-08-261-22/+27
| | | | | | |
* | | | | | | DungeonRooms: Random pattern for floors.Mattes D2014-08-261-1/+32
| | | | | | |
* | | | | | | DungeonRooms: Replaced explicit switch with CanBeTerraformed().Mattes D2014-08-261-11/+3
| | | | | | |
* | | | | | | Merge remote-tracking branch 'origin/master' into DungeonRoomsFinisherMattes D2014-08-2621-667/+3395
|\ \ \ \ \ \ \
| * \ \ \ \ \ \ Merge pull request #1290 from mc-server/RanksMattes D2014-08-2621-667/+3395
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Rewriting permission system to use UUIDs and Ranks
| | * | | | | | | RankMgr: Exported the default-rank functions.Mattes D2014-08-241-0/+55
| | | | | | | | |
| | * | | | | | | RankMgr: Default rank is applied to players without any rank.Mattes D2014-08-243-60/+21
| | | | | | | | |
| | * | | | | | | RankMgr: Unified function signature comments in the bindings.Mattes D2014-08-232-28/+36
| | | | | | | | |
| | * | | | | | | RankMgr: Implemented default rank, added defaults.Mattes D2014-08-232-24/+198
| | | | | | | | |
| | * | | | | | | Merge remote-tracking branch 'origin/master' into RanksMattes D2014-08-2278-860/+1014
| | |\ \ \ \ \ \ \
| | * | | | | | | | cMojangAPI updates cRankManager's playernames.Mattes D2014-08-214-2/+87
| | | | | | | | | |
| | * | | | | | | | RankMgr: Added cRankManager::RemovePlayerRank().Mattes D2014-08-213-0/+59
| | | | | | | | | |
| | * | | | | | | | Removed last remnant of cGroup.Mattes D2014-08-211-1/+0
| | | | | | | | | |
| | * | | | | | | | Removed Group.h from Bindings' dependencies.Mattes D2014-08-211-1/+0
| | | | | | | | | |
| | * | | | | | | | Removed cGroup and cGroupManager.Mattes D2014-08-2110-395/+8
| | | | | | | | | |
| | * | | | | | | | cMojangAPI: Fixed MakeUUID___() bindings.Mattes D2014-08-212-4/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ToLua would generate a shadow return value for the input strings.
| | * | | | | | | | Exported cServer:ShouldAuthenticate to Lua API.Mattes D2014-08-201-1/+1
| | | | | | | | | |
| | * | | | | | | | cPlayer: Exported the LoadRank function to Lua API.Mattes D2014-08-201-2/+2
| | | | | | | | | |
| | * | | | | | | | RankMgr bindings: fixed GetRankVisuals return value.Mattes D2014-08-201-18/+22
| | | | | | | | | |
| | * | | | | | | | RankMgr: Fixed an ignored return value in the API.Mattes D2014-08-201-2/+2
| | | | | | | | | |
| | * | | | | | | | cPlayer reads ranks from cRankManager.Mattes D2014-08-193-263/+139
| | | | | | | | | |
| | * | | | | | | | RankMgr: Removed unneeded testing code.madmaxoft2014-08-141-208/+2
| | | | | | | | | |
| | * | | | | | | | Merge branch 'master' into Ranksmadmaxoft2014-08-1418-77/+91
| | |\ \ \ \ \ \ \ \
| | * | | | | | | | | RankMgr: Fixed multithreading issues.madmaxoft2014-08-132-49/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only one thread is allowed to interact with a SQLite::Database object at a time. Additionally, improved performance of the migration by wrapping the entire thing in a transaction.
| | * | | | | | | | | RankMgr: Initial migration code.madmaxoft2014-08-133-1/+568
| | | | | | | | | | |
| | * | | | | | | | | Merge remote-tracking branch 'origin/master' into Ranksmadmaxoft2014-08-1214-81/+175
| | |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | | Fixed unchecked return values.madmaxoft2014-08-111-3/+6
| | | | | | | | | | | |
| | * | | | | | | | | | WebAdmin: Manually exported string conversion functions.madmaxoft2014-08-092-6/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ToLua generated an extra return value for GetHTMLEscapedString() and GetURLEncodedString(), making them difficult to use.
| | * | | | | | | | | | WebAdmin: Added GetURLEncodedString().madmaxoft2014-08-092-1/+36
| | | | | | | | | | | |
| | * | | | | | | | | | RankMgr: Added GetRankVisuals() function.madmaxoft2014-08-093-5/+81
| | | | | | | | | | | |
| | * | | | | | | | | | Merge remote-tracking branch 'origin/master' into Ranksmadmaxoft2014-08-0911-26/+124
| | |\ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | Exported cRankManager to LuaAPI.madmaxoft2014-08-085-1/+894
| | | | | | | | | | | | |
| | * | | | | | | | | | | cLuaState: Added GetStackValues() auto-generated templates.madmaxoft2014-08-081-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These will read consecutive values off the stack, each value of a type independent of the other values. Auto-generated because we don't have variadic templates in C++03.
| | * | | | | | | | | | | RankMgr: Finished API implementation.madmaxoft2014-08-082-38/+401
| | | | | | | | | | | | |
| | * | | | | | | | | | | RankMgr: Implemented GetXforY and GetAll APIs.madmaxoft2014-08-082-18/+162
| | | | | | | | | | | | |
| | * | | | | | | | | | | RankMgr: Implemented the basic API functions.madmaxoft2014-08-082-60/+696
| | | | | | | | | | | | |
| | * | | | | | | | | | | RankMgr: Renamed PermissionGroup to Group in API and PermGroup in DB.madmaxoft2014-08-082-28/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "Group" is SQL keyword and shouldn't be used as table name.
| | * | | | | | | | | | | RankMgr: Added SQL integer datatypes.madmaxoft2014-08-051-5/+5
| | | | | | | | | | | | |
| | * | | | | | | | | | | RankMgr: More interface.madmaxoft2014-08-051-2/+14
| | | | | | | | | | | | |
| | * | | | | | | | | | | RankMgr: Initial interface declaration.madmaxoft2014-08-053-0/+258
| | | | | | | | | | | | |
* | | | | | | | | | | | | Added initial dungeon rooms finisher.Mattes D2014-08-264-0/+289
|/ / / / / / / / / / / /
* | | | | | | | | | | | Type warning fixes.Mattes D2014-08-252-2/+2
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed a type warning.Mattes D2014-08-251-2/+2
| | | | | | | | | | | |
* | | | | | | | | | | | Assume POWER is big-endian, so it compiles.Alexander Harkness2014-08-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [reference](http://nadeausoftware.com/articles/2012/02/c_c_tip_how_detect_processor_type_using_compiler_predefined_macros#POWER) We may want to come back and figure out if the processor is running in little-endian mode, but for now assume they're big-endian.
* | | | | | | | | | | | Fixed item drop.Howaner2014-08-221-14/+18
| |_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | Fixes #1341
* | | | | | | | | | | Fixed a warning in FastRandom.Mattes D2014-08-221-1/+1
| | | | | | | | | | |
* | | | | | | | | | | World: Report chunk count for the spawn area.Mattes D2014-08-221-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Fixed cPlugin::OnPlayerMoving signature.Mattes D2014-08-223-3/+3
| | | | | | | | | | |
* | | | | | | | | | | cLuaState: Fixed Vector3<> names pushed to Lua.Mattes D2014-08-222-5/+44
| | | | | | | | | | |
* | | | | | | | | | | Added initializers for class members.Mattes D2014-08-2114-9/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As reported by Coverity, these weren't initialized.
* | | | | | | | | | | cSetChunkData: Added missing initializers.Mattes D2014-08-211-0/+3
| | | | | | | | | | |
* | | | | | | | | | | Added cWorld initializers.Mattes D2014-08-211-0/+30
| | | | | | | | | | |
* | | | | | | | | | | Fixed 1.7.2 login packet reading.Mattes D2014-08-211-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1317.
* | | | | | | | | | | Sorted the generated param count.Mattes D2014-08-211-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Fixed a compile-time warning in MSVC.Mattes D2014-08-211-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #1314 from mc-server/FireMattes D2014-08-212-33/+17
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fixed cancelled fire interact from all directions.
| * \ \ \ \ \ \ \ \ \ \ Merge branch 'master' into FireHowaner2014-08-2072-849/+828
| |\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Revert "Removes the fire if the block under the fire was broken."Howaner2014-08-111-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 01001d2a49a3366e9b1eccf938d5073ab9a2f06e.
| * | | | | | | | | | | | Removes the fire if the block under the fire was broken.Howaner2014-08-111-0/+5
| | | | | | | | | | | | |
| * | | | | | | | | | | | Moved the clicked-through block check to the top of the function.Howaner2014-08-112-41/+17
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed cancelled fire interact from all directions.Howaner2014-08-111-4/+12
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #1339 from mc-server/HooksSTRWarrior2014-08-209-42/+131
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / |/| | | | | | | | | | | | Added HOOK_SERVER_PING
| * | | | | | | | | | | | Renamed a_Motd to a_ServerDescription.Howaner2014-08-207-14/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added a_ClientHandle to the HOOK_SERVER_PING hook.Howaner2014-08-208-10/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added "HOOK_SERVER_PING" call to older protocolsHowaner2014-08-201-13/+12
| | | | | | | | | | | | |
| * | | | | | | | | | | | Cleaned up code.Howaner2014-08-203-848/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added HOOK_SERVER_PINGHowaner2014-08-208-36/+926
| | | | | | | | | | | | |
| * | | | | | | | | | | | First implementation of HOOK_SERVER_PING.Howaner2014-08-165-0/+43
| | |_|_|/ / / / / / / / | |/| | | | | | | | | |
* | | | | | | | | | | | Removed old classes from the CMakeLists.txtHowaner2014-08-201-2/+0
| | | | | | | | | | | |
* | | | | | | | | | | | Code formatting fixes.Howaner2014-08-1929-152/+83
| | | | | | | | | | | |
* | | | | | | | | | | | Player: Silenced a few type conversion warnings.Mattes D2014-08-181-2/+2
| | | | | | | | | | | |
* | | | | | | | | | | | Player saving creates the "players" folder, if needed.Mattes D2014-08-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1268.
* | | | | | | | | | | | SwamplandM: Fixed sometimes having no mountains.STRWarrior2014-08-181-1/+1
| |_|_|_|_|_|_|_|/ / / |/| | | | | | | | | |
* | | | | | | | | | | Better OnPlayerMoving hook.Howaner2014-08-166-9/+17
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #1308 from mc-server/loggerMattes D2014-08-1520-602/+624
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / |/| | | | | | | | | | New Logging framework
| * | | | | | | | | | Removed an unneeded cast.madmaxoft2014-08-151-1/+1
| | | | | | | | | | |
| * | | | | | | | | | File logger prefixes are 4 chars wide.madmaxoft2014-08-131-6/+6
| | | | | | | | | | |
| * | | | | | | | | | Logger: Fixed windows debug ODS logger, fixed-size file prefixes.madmaxoft2014-08-131-8/+9
| | | | | | | | | | |
| * | | | | | | | | | Logger: Fixed missing timestamp in log messages.madmaxoft2014-08-131-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Fixed windows compilation and style issues.madmaxoft2014-08-124-37/+177
| | | | | | | | | | |
| * | | | | | | | | | Fix messing renameTycho2014-08-121-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Renamed LoggersTycho2014-08-1214-426/+405
| | | | | | | | | | |
| * | | | | | | | | | Fixed Tools to work with new logging frameworkTycho2014-08-105-206/+0
| | | | | | | | | | |
| * | | | | | | | | | Added forgoten filesTycho2014-08-104-0/+457
| | | | | | | | | | |
| * | | | | | | | | | First Implementatation of new Loggin frameworkTycho2014-08-1014-398/+49
| | | | | | | | | | |
* | | | | | | | | | | CheckBasicStyle checks the src folder as well.madmaxoft2014-08-145-14/+20
| |_|_|_|_|_|/ / / / |/| | | | | | | | |
* | | | | | | | | | Fixed shadowing variableTycho2014-08-131-5/+5
| | | | | | | | | |
* | | | | | | | | | Removed unused methodTycho2014-08-132-25/+0
| |_|_|_|_|_|/ / / |/| | | | | | | |
* | | | | | | | | Merge pull request #1296 from mc-server/LuaAPIFranz Reiter2014-08-1213-33/+66
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | Added SetDoDaylightCycle() and IsDaylightCycleEnabled() to cWorld.
| * | | | | | | | Exported daylight cycle flag to the protocol.Howaner2014-08-1112-28/+29
| | | | | | | | |
| * | | | | | | | Added a comment and simplified code.Howaner2014-08-102-11/+5
| | | | | | | | |
| * | | | | | | | Added IsDaylightCycleEnabled saving.Howaner2014-08-101-0/+2
| | | | | | | | |
| * | | | | | | | Renamed functions.Howaner2014-08-102-7/+7
| | | | | | | | |
| * | | | | | | | Merge branch 'master' into LuaAPIHowaner2014-08-106-11/+102
| |\ \ \ \ \ \ \ \
| * | | | | | | | | Renamed m_DoDaylightCycle to m_CycleDaylight.Howaner2014-08-082-7/+7
| | | | | | | | | |
| * | | | | | | | | Added SetDoDaylightCycle() and IsDaylightCycleEnabled() to cWorld.Howaner2014-08-074-20/+56
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | I need this for a GameRule plugin.
* | | | | | | | | cProtocol172: Check return values.madmaxoft2014-08-111-4/+9
| |_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | Fixes CID 43489, CID 43490, CID 43491, CID 43493, CID 66410, CID 66411, CID 66416, CID 66417, CID 66418, CID 66419, CID 66420, CID 66421, CID 66422, CID 66423, CID 66424, CID 66425, CID 66429, CID 66430, CID 66431
* | | | | | | | Merge pull request #1310 from mc-server/ChestFixMattes D2014-08-111-5/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fixed potential null dereference
| * | | | | | | | Fixed potential null dereferenceTycho2014-08-101-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 70466
* | | | | | | | | Merge pull request #1301 from mc-server/OresMattes D2014-08-113-53/+120
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Ore Tweaks
| * | | | | | | | | Bunch of tweaks:STRWarrior2014-08-103-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Renamed Quarts to Quartz Using const_iterator instead of iterator Used CheckBasicStyle script to find style errors
| * | | | | | | | | Added NaturalPatches generatorSTRWarrior2014-08-101-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It generates gravel and dirt.
| * | | | | | | | | Added NetherOreNests.STRWarrior2014-08-101-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It generates Nether Quarts.
| * | | | | | | | | Changed cStructGenOreNests to take a list of ores + the block to replace.STRWarrior2014-08-103-53/+83
| | |_|/ / / / / / | |/| | | | | | |
* | | | | | | | | Fixed tolua error with static initializationarchshift2014-08-112-3/+12
| | | | | | | | |
* | | | | | | | | Gave names to unnamed enumsarchshift2014-08-114-5/+5
| | | | | | | | |
* | | | | | | | | Player.cpp: change unnamed enum to constant integersarchshift2014-08-112-7/+8
| | | | | | | | |
* | | | | | | | | Merge pull request #1311 from mc-server/CMakeFixMattes D2014-08-101-1/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fixed circular dependecy luaState_Call.inc
| * | | | | | | | | Fixed circular dependecy luaState_Call.incTycho2014-08-101-1/+1
| | |/ / / / / / / | |/| | | | | | |
* | | | | | | | | Merge pull request #1309 from mc-server/coverity_fixesMattes D2014-08-101-0/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fixed potential crash in Player.cpp
| * | | | | | | | | SpacesTycho2014-08-101-1/+1
| | | | | | | | | |
| * | | | | | | | | Fixed potential crash in Player.cppTycho2014-08-101-0/+4
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 71780 If ShouldBroadcastDeathMessages is false the pointer would fall through to a check agaist it being a player
* | | | | | | | | Merge pull request #1299 from mc-server/SlabsMattes D2014-08-101-0/+12
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Send the old slab to the client when the interact cancelled.
| * | | | | | | | Changed comment.Howaner2014-08-101-3/+1
| | | | | | | | |
| * | | | | | | | Added comment.Howaner2014-08-081-0/+3
| | | | | | | | |
| * | | | | | | | Send the old slab to the client when the interact cancelled.Howaner2014-08-081-0/+11
| | |_|_|/ / / / | |/| | | | | |
* | | | | | | | Fixed swing arm animation when you ate.Howaner2014-08-101-4/+2
| |/ / / / / / |/| | | | | |
* | | | | | | Removed an old and outdated comment.STRWarrior2014-08-101-2/+0
| | | | | | |
* | | | | | | WebAdmin: Manually exported string conversion functions.madmaxoft2014-08-092-6/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ToLua generated an extra return value for GetHTMLEscapedString() and GetURLEncodedString(), making them difficult to use.
* | | | | | | WebAdmin: Added GetURLEncodedString().madmaxoft2014-08-092-1/+36
|/ / / / / /
* | | | | | Merge pull request #1295 from mc-server/crystalMattes D2014-08-071-3/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | On destroy ender crystal, create bedrock and fire.
| * | | | | | On destroy ender crystal, create bedrock and firearchshift2014-08-061-3/+3
| |/ / / / /
* | | | | | Fixed nether wart digging.Howaner2014-08-071-0/+1
| | | | | | | | | | | | | | | | | | Fixes #1265
* | | | | | Removed debug message.Howaner2014-08-071-1/+0
|/ / / / /
* | | | | Merge pull request #1291 from mc-server/RedstoneCleanUpMattes D2014-08-066-21/+83
|\ \ \ \ \ | | | | | | | | | | | | Redstone clean up
| * | | | | Fixed style issuesTycho2014-08-063-5/+8
| | | | | |
| * | | | | Fixed multiple inhertance being output by toluaTycho2014-08-062-6/+10
| | | | | |
| * | | | | Removed dependecy of redstone simulator on NoteBlockTycho2014-08-054-12/+20
| | | | | |
| * | | | | Refactored Redstone simulator not to depend on TNTEntity or DropSpenserENtity DirectlyTycho2014-08-055-9/+56
| | | | | |
* | | | | | Resending fire to the client when the interact cancelled.Howaner2014-08-061-0/+8
| | | | | |
* | | | | | Made lua clamp() compatible with all number types.Howaner2014-08-051-4/+4
| | | | | |
* | | | | | Added api documentation for Clamp()Howaner2014-08-051-2/+2
| | | | | |
* | | | | | Added Clamp() function to the lua api.Howaner2014-08-051-0/+28
|/ / / / /
* / / / / Fixed unsigned long comparison to size_tarchshift2014-08-051-1/+1
|/ / / /
* | | | MojangAPI: Fixed PlayerNameToUUID().madmaxoft2014-08-041-1/+1
| | | |
* | | | Merge pull request #1287 from Howaner/BowFranz Reiter2014-08-041-0/+10
|\ \ \ \ | |/ / / |/| | | Added arrow consuming on shooting
| * | | Changed arrow comment.Howaner2014-08-041-1/+1
| | | |
| * | | Added arrow consuming on shootingHowaner2014-08-041-0/+10
| | | |
* | | | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-08-041-1/+1
|\| | |
| * | | Fixed #1286Howaner2014-08-041-1/+1
| | | |
* | | | Fixed signs not staying on other signsTiger Wang2014-08-042-2/+4
| | | |
* | | | Made AllToLua output consistentTiger Wang2014-08-041-2/+2
|/ / /
* | | CheckBasicStyle: multi-level indent change.madmaxoft2014-08-047-13/+33
| | |
* | | BasicStyleCheck: Dividers are exactly 80 slashes.madmaxoft2014-08-042-2/+18
| | |
* | | Merge branch 'master' into MonsterHowaner2014-08-049-75/+69
|\ \ \
| * \ \ Merge pull request #1285 from mc-server/StrCaseRefactorMattes D2014-08-047-47/+54
| |\ \ \ | | | | | | | | | | Refactored case-conversion functions.
| | * | | Refactored case-conversion functions.madmaxoft2014-08-047-47/+54
| | | | | | | | | | | | | | | | | | | | StrToLower() returns a modified copy of the string, InPlaceLowercase() modifies the string in-place.
| * | | | Merge pull request #1283 from Howaner/GlobalFixesMattes D2014-08-041-6/+5
| |\ \ \ \ | | |/ / / | |/| | | Fixed skins in mc 1.7.9/1.7.10
| | * | | Changed properties for-loop.Howaner2014-08-041-1/+1
| | | | |
| | * | | Merge branch 'master' into GlobalFixesHowaner2014-08-032-0/+18
| | |\ \ \
| | * | | | Fixed skins in mc 1.7.9/1.7.10Howaner2014-08-031-6/+5
| | | | | |
| * | | | | Anvil: Wolf owner not saved if not present.madmaxoft2014-08-041-2/+8
| | | | | |
| * | | | | Rewritten string case manipulation to use std::transform.madmaxoft2014-08-041-22/+4
| | |/ / / | |/| | |
* | | | | Changed /** to /*Howaner2014-08-041-3/+5
| | | | |
* | | | | Fixed warningsHowaner2014-08-041-3/+3
| | | | |
* | | | | Attempt to fix knockback and swimming.Howaner2014-08-042-18/+22
|/ / / /
* / / / Attempting a compilation fix for gcc / clang.madmaxoft2014-08-032-0/+18
|/ / /
* | | Wolf uses UUID for owner.madmaxoft2014-08-035-17/+82
| | | | | | | | | | | | Fixes #1277.
* | | cMojangAPI: Added UUID-to-Name lookup.madmaxoft2014-08-035-62/+522
| | | | | | | | | | | | Also fixed the bindings, now all functions are static-like.
* | | Trailing whitespace fix.madmaxoft2014-08-031-1/+1
| | |
* | | Added cMojangAPI:GetUUIDFromPlayerName().madmaxoft2014-08-032-0/+35
| | | | | | | | | | | | This is a simpler way to ask for a single name -> uuid conversion.
* | | Added cPlayer::GetUUID().madmaxoft2014-08-031-0/+3
| | |
* | | Fixed a ToLua warning - operator = not supported.madmaxoft2014-08-038-8/+16
| | |
* | | Merge branch 'master' of https://github.com/mc-server/MCServerSTRWarrior2014-08-033-101/+70
|\ \ \
| * | | Entity.cpp: Air timer comment fixarchshift2014-08-031-1/+1
| | | |
| * | | Code reduction and clarity fixesarchshift2014-08-032-29/+16
| | | |
| * | | Removed unused cPlayer::FoodPoison functionarchshift2014-08-032-12/+0
| | | |
| * | | Entity.cpp: On portal check, use if-else for current dimensionarchshift2014-08-031-60/+54
| | | | | | | | | | | | | | | | If current dimension corresponds with the portal (nether portal in the nether) send to the overworld, else send to the portal dimension. No need to switch on the dimension and exclude potential others.
* | | | VillageGen: Fixed a typo in commentSTRWarrior2014-08-031-1/+1
|/ / /
* | | Added proper trees and height for SwamplandM biomeSTRWarrior2014-08-023-2/+4
| | |
* | | Fixed a bug who can used from hacked clients.Howaner2014-08-022-1/+18
| | |
* | | Fixed issues with autocomplete and time loadingTiger Wang2014-08-011-7/+33
| | | | | | | | | | | | * Fixes #1274
* | | Improved endermen code a littleTiger Wang2014-08-013-20/+56
| | |
* | | Merge pull request #1255 from mc-server/NameToUUIDMattes D2014-08-0115-156/+716
|\ \ \ | | | | | | | | Name to UUID
| * \ \ Merged branch 'master' into NameToUUID.madmaxoft2014-07-3167-441/+1537
| |\ \ \
| * | | | Removed trailing whitespace.madmaxoft2014-07-311-2/+2
| | | | |
| * | | | Fixed UUIDs handling in cPlayer.madmaxoft2014-07-312-6/+9
| | | | | | | | | | | | | | | | | | | | The loading expected dashed UUIDs, MCS uses short UUIDs throughout.
| * | | | MojangAPI: Moved the settings to a separate ini section.madmaxoft2014-07-311-2/+2
| | | | |
| * | | | MojangAPI: Added a UseCachedOnly param to GetUUIDsFromPlayerNames().madmaxoft2014-07-313-9/+23
| | | | |
| * | | | MojangAPI: Renamed cache file to MojangAPI.sqlite.madmaxoft2014-07-301-2/+2
| | | | |
| * | | | MojangAPI: Clarified the UUID conversion code.madmaxoft2014-07-302-4/+17
| | | | |
| * | | | ManualBindings: Fixed alignment.madmaxoft2014-07-301-3/+3
| | | | |
| * | | | MojangAPI: Implemented UUID shortening and dashing.madmaxoft2014-07-305-22/+40
| | | | |
| * | | | Exported cMojangAPI to Lua.madmaxoft2014-07-304-5/+20
| | | | |
| * | | | Added a cMojangAPI class for PlayerName -> UUID lookups, with cache.madmaxoft2014-07-309-239/+564
| | | | | | | | | | | | | | | | | | | | The cache is persisted into a SQLite DB file on server shutdown.
| * | | | Added cClientHandle:GetUUIDsFromPlayerNames() to Lua API.madmaxoft2014-07-281-3/+62
| | | | |
| * | | | cAuthenticator: Added GetUUIDsFromPlayerNames().madmaxoft2014-07-282-3/+116
| | | | |
* | | | | Added missing HOOK_BLOCK_SPREAD call.Howaner2014-08-011-6/+14
| | | | |
* | | | | Merge pull request #1272 from Howaner/FoodMattes D2014-08-018-48/+177
|\ \ \ \ \ | | | | | | | | | | | | Fixed hunger bugs, Implemented golden apple, added jump statistic, added...
| * | | | | Compile fix.Howaner2014-08-011-2/+1
| | | | | |
| * | | | | Import Statistics.hHowaner2014-07-311-0/+1
| | | | | |
| * | | | | Fixed hunger bugs, Implemented golden apple, added jump statistic, added correct food effects.Howaner2014-07-318-48/+177
| | |/ / / | |/| | |
* | | | | Merge pull request #1269 from Howaner/BlockEntitysMattes D2014-08-0126-37/+864
|\ \ \ \ \ | | | | | | | | | | | | Added beacon.
| * | | | | Use "default:" in switch.Howaner2014-07-311-3/+6
| | | | | |
| * | | | | Renamed "select..." methods to "set..." and better IsValidEffect() function.Howaner2014-07-314-55/+19
| | | | | |
| * | | | | Updated documentation.Howaner2014-07-311-3/+3
| | | | | |
| * | | | | Renamed functions and added beacon json saving.Howaner2014-07-318-66/+84
| | | | | |
| * | | | | Added window update.Howaner2014-07-301-0/+23
| | | | | |
| * | | | | Added beacon load/save.Howaner2014-07-305-1/+74
| | | | | |
| * | | | | Changed return type from GetPrimaryPotion() and GetSecondaryPotion()Howaner2014-07-301-2/+2
| | | | | |
| * | | | | Exported the beacon.Howaner2014-07-3011-17/+107
| | | | | |
| * | | | | Added beacon.Howaner2014-07-3013-33/+689
| | | | | |
* | | | | | Merge pull request #1270 from Howaner/OptionsMattes D2014-07-311-5/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | Added a default value to WaterSimulator, LavaSimulator and RedstoneSimulator
| * | | | | | Capitalised "incremental"Howaner2014-07-311-4/+4
| | | | | | |
| * | | | | | Added a default value to WaterSimulator, LavaSimulator and RedstoneSimulator.Howaner2014-07-311-2/+2
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #1271 from Howaner/GlobalFixesMattes D2014-07-312-2/+13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fixed water from ice and removed packed ice drop.
| * | | | | | Changed IsSolid to FullyOccupiesVoxelHowaner2014-07-311-1/+1
| | | | | | |
| * | | | | | Fixed water from ice and removed packed ice drop.Howaner2014-07-312-2/+13
| |/ / / / /
* | | | | | Merge pull request #1047 from mc-server/EndermanTiger Wang2014-07-312-0/+121
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Enderman attacks a player if he's looking at him
| * | | | | Comment suggestionsTiger Wang2014-07-311-9/+8
| | | | | |
| * | | | | Added lighting code and added commentsSTRWarrior2014-07-301-0/+17
| | | | | |
| * | | | | Removed lighting code in cEnderman::CheckEventSeePlayerSTRWarrior2014-07-301-9/+1
| | | | | |
| * | | | | Changed commentworktycho2014-06-301-1/+1
| | | | | |
| * | | | | Replaced strange algebra with dot product.worktycho2014-06-181-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | 10 degrees is a completely arbitary constant I pulled from nowhere. Feel free to adjust this value.
| * | | | | Improved Enderman codeTiger Wang2014-06-182-14/+34
| | | | | |
| * | | | | Swapped m_Player and m_EndermanPosSTRWarrior2014-06-181-2/+2
| | | | | |
| * | | | | Enderman attacks a player if he's looking at him.STRWarrior2014-06-182-0/+91
| | | | | |
* | | | | | SuggestionsSTRWarrior2014-07-301-2/+2
| | | | | |
* | | | | | Moved GetRoofedForestTreeImage content to GetDarkoakTreeImageSTRWarrior2014-07-302-66/+55
| | | | | |
* | | | | | Fixed doxy commentSTRWarrior2014-07-301-1/+1
| | | | | |
* | | | | | Fixed comment at the end of a for-loopSTRWarrior2014-07-301-1/+1
| | | | | |
* | | | | | Fixed compiling using ClangSTRWarrior2014-07-301-4/+2
| | | | | |
* | | | | | Added RoofedForest trees.STRWarrior2014-07-302-2/+73
| | | | | | | | | | | | | | | | | | | | | | | | Could still be improved allot.
* | | | | | PreSimulator: Added configurations.STRWarrior2014-07-303-6/+30
| |/ / / / |/| | | | | | | | | | | | | | You can now choose if it should pregenerate something or not
* | | | | Merged branch 'howaner/Options'.madmaxoft2014-07-308-42/+57
|\ \ \ \ \
| * | | | | Change Group->SetColor() again.Howaner2014-07-271-1/+1
| | | | | |
| * | | | | Use AString(1, Color[0])Howaner2014-07-271-1/+1
| | | | | |
| * | | | | Use Color[0].Howaner2014-07-271-1/+1
| | | | | |
| * | | | | Fixed group color's.Howaner2014-07-272-16/+5
| | | | | |
| * | | | | Add "Broadcasting" settings to world.iniHowaner2014-07-275-11/+22
| | | | | |
| * | | | | Fixed plugin count and fixed plugin loading, when settings.ini was regenerated.Howaner2014-07-271-16/+30
| | | | | |
* | | | | | Fixed "Dependency" typosarchshift2014-07-302-6/+6
| | | | | |
* | | | | | Merge pull request #1262 from mc-server/CanBeTerraformedMattes D2014-07-304-44/+32
|\ \ \ \ \ \ | | | | | | | | | | | | | | Added cBlockInfo::CanBeTerraformed and made finishers use it
| * | | | | | Added soulsand to the terraformed list.STRWarrior2014-07-291-0/+1
| | | | | | |
| * | | | | | Added cBlockInfo::CanBeTerraformed and made finishers use itSTRWarrior2014-07-294-44/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | I might have forgotten some of them though
* | | | | | | Fixed FinishGen.h types.madmaxoft2014-07-301-2/+2
| | | | | | |
* | | | | | | Entity.h: Moved constants out of some unnamed enumarchshift2014-07-301-14/+14
| | | | | | |
* | | | | | | Changed size_t to 'unsigned long'Howaner2014-07-301-2/+2
| | | | | | |
* | | | | | | Fixed compile error with clang.Howaner2014-07-301-2/+2
| |_|_|_|_|/ |/| | | | |
* | | | | | Slight cleanup after portalsTiger Wang2014-07-298-20/+14
|/ / / / /
* | | | | Merge pull request #1061 from mc-server/portalsMattes D2014-07-2939-236/+643
|\ \ \ \ \ | | | | | | | | | | | | Portals and others
| * | | | | Detrailed whitespaceTiger Wang2014-07-291-3/+3
| | | | | |
| * | | | | Merge branch 'master' into portalsTiger Wang2014-07-29120-687/+1739
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/World.h
| * | | | | | SuggestionsTiger Wang2014-07-236-24/+28
| | | | | | |
| * | | | | | Speed improvements, crash fixes, & self-suggestionsTiger Wang2014-07-228-61/+55
| | | | | | |
| * | | | | | Suggestion and failed merge fixTiger Wang2014-07-222-1/+6
| | | | | | |
| * | | | | | Merge remote-tracking branch 'origin/master' into portalsTiger Wang2014-07-22177-1495/+2517
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Chunk.cpp src/Entities/Player.cpp src/Root.cpp src/World.cpp
| * | | | | | | SuggestionsTiger Wang2014-07-219-126/+160
| | | | | | | |
| * | | | | | | Bug and crash fixesTiger Wang2014-07-2012-65/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes end portals' solidity * Fixed crashes to do with multithreading and removing an entity from the wrong world * Fixed crashes due to bad merge * Fixed crashes due to an object being deleted twice * Simplified cWorld::Start() and added comments to configuration files
| * | | | | | | Fix failed merge and other issuesTiger Wang2014-07-1814-77/+28
| | | | | | | |
| * | | | | | | Merge branch 'master' into portalsTiger Wang2014-07-18357-4210/+7212
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Blocks/WorldInterface.h src/ClientHandle.cpp src/ClientHandle.h src/Entities/Player.cpp src/Entities/Player.h src/Generating/FinishGen.cpp src/Protocol/Protocol.h src/Protocol/Protocol125.cpp src/Protocol/Protocol125.h src/Protocol/Protocol16x.cpp src/Protocol/Protocol16x.h src/Protocol/Protocol17x.cpp src/Protocol/Protocol17x.h src/Protocol/ProtocolRecognizer.cpp src/Protocol/ProtocolRecognizer.h src/Root.h src/World.cpp
| * \ \ \ \ \ \ \ Merge branch 'master' of https://github.com/mc-server/MCServer into portalsTiger Wang2014-06-2417-98/+290
| |\ \ \ \ \ \ \ \
| * | | | | | | | | Conforms to standardsTiger Wang2014-06-221-1/+1
| | | | | | | | | |
| * | | | | | | | | Merge branch 'master' into portalsTiger Wang2014-06-2196-3442/+5529
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Chunk.cpp src/Entities/Entity.h src/Entities/Player.h
| * | | | | | | | | | Fixed invalid iteratorsTiger Wang2014-06-217-39/+26
| | | | | | | | | | |
| * | | | | | | | | | More suggestionsTiger Wang2014-06-214-5/+7
| | | | | | | | | | |
| * | | | | | | | | | Implemented PR suggestionsarchshift2014-06-164-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Furnace.txt: newline BlockID: removed extraneous dimension mapping cEntity: fixed typo cPlayer: WorldPtr typedef
| * | | | | | | | | | Reverted portal creation codeTiger Wang2014-06-142-103/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It wasn't really working and needs more development
| * | | | | | | | | | Cauldrons check the heightmapTiger Wang2014-06-143-8/+12
| | | | | | | | | | |
| * | | | | | | | | | Merge remote-tracking branch 'origin/master' into portalsTiger Wang2014-06-1411-404/+445
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/World.h
| * | | | | | | | | | | Fixed order of initalisationTycho2014-06-122-5/+6
| | | | | | | | | | | |
| * | | | | | | | | | | Removed unnessicary indirection from Entity iterator listTycho2014-06-122-6/+6
| | | | | | | | | | | |
| * | | | | | | | | | | Fixed compileworktycho2014-06-121-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Portals animate and delay correctlyTiger Wang2014-06-1219-117/+174
| | | | | | | | | | | |
| * | | | | | | | | | | Merge branch 'master' into portalsTiger Wang2014-06-1054-269/+2529
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ClientHandle.cpp src/Entities/Player.cpp src/Entities/Player.h src/Protocol/Protocol125.cpp src/Protocol/Protocol17x.cpp
| * | | | | | | | | | | | Portal improvements and suggestionsTiger Wang2014-06-109-54/+175
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed Time of dayworktycho2014-06-071-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | SuggestionsTiger Wang2014-06-055-14/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed decision failureTiger Wang2014-06-051-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed compilationTiger Wang2014-06-051-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | SuggestionsTiger Wang2014-06-042-2/+5
| | | | | | | | | | | | |
| * | | | | | | | | | | | Time and weather is saved, part of #1058Tiger Wang2014-06-042-3/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also fixed unreliability in Health and LootPickup loading.
| * | | | | | | | | | | | Health of monsters is now savedTiger Wang2014-06-042-0/+2
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed a NetherFinisher bugTiger Wang2014-06-043-24/+9
| | | | | | | | | | | | |
| * | | | | | | | | | | | Configurable portalsTiger Wang2014-06-044-14/+83
| | | | | | | | | | | | |
| * | | | | | | | | | | | SuggestionsTiger Wang2014-06-043-6/+10
| | | | | | | | | | | | |
| * | | | | | | | | | | | Removed use of autoTiger Wang2014-06-041-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added checks for no downfall biomesTiger Wang2014-06-043-3/+3
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge remote-tracking branch 'origin/master' into portalsTiger Wang2014-06-0482-1005/+21372
| |\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Implemented bed homesTiger Wang2014-06-014-16/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Implemented bed home positions * Fixed some inventory and health server/client mismatches after world change
| * | | | | | | | | | | | | Implemented end and nether portalsTiger Wang2014-05-3123-92/+254
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Very minor code changesTiger Wang2014-05-293-3/+3
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Cauldrons fillTiger Wang2014-05-294-3/+19
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #1254 from mc-server/SingleTopBlockFinisherMattes D2014-07-293-22/+92
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Renamed cFinishGenSingleBiomeSingleTopBlock to cFinishGenSingleTopBlock
| * | | | | | | | | | | | | | Some finishing touchesSTRWarrior2014-07-292-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed whitespace fixed dead bush comment
| * | | | | | | | | | | | | | Fixed comment above cFinishGenSingleTopBlockSTRWarrior2014-07-291-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | SingleTopBlock: All blocktypes and biometypes get initialized properlySTRWarrior2014-07-291-2/+14
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Using suggestionsSTRWarrior2014-07-281-25/+20
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Forgot Mesa Plateau biome.STRWarrior2014-07-281-0/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Renamed cFinishGenSingleBiomeSingleTopBlock to cFinishGenSingleTopBlockSTRWarrior2014-07-283-20/+82
| | |_|_|_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now accepts a vector of biomes and a vector of allowed blocks.
* | | | | | | | | | | | | | Merge pull request #1252 from mc-server/RoughRavinesGenMattes D2014-07-295-3/+451
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| | | | | | | | | | | | | Rough ravines gen
| * | | | | | | | | | | | | Added a missing include for abs(float).madmaxoft2014-07-271-0/+6
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | RoughRavines: Made floor and ceiling settings-adjustable.madmaxoft2014-07-274-20/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The world.ini has settings for the minimum and maximum height for each at the ravines' center and edges.
| * | | | | | | | | | | | | RoughRavines: Added per-height radius modifier. Ledges!madmaxoft2014-07-271-32/+73
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | RoughRavines: More settings - size, width, roughnessmadmaxoft2014-07-273-23/+84
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | RoughRavines: Initial generator implementation.madmaxoft2014-07-274-3/+264
| | |_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This provides the basic shape of the ravines, with the basic settings based on GridStructGen, and good default values.
* | | | | | | | | | | | | DistortedHeightmap: Now generates gravel in deep ocean.STRWarrior2014-07-281-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Hotfixed compilation problems.madmaxoft2014-07-272-2/+2
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #1236 from Howaner/Inventory2Mattes D2014-07-2717-72/+164
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix item durability.
| * | | | | | | | | | | | | Derp.Howaner2014-07-261-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Rename function.Howaner2014-07-264-6/+6
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'master' into Inventory2Howaner2014-07-26105-654/+942
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/BlockInfo.cpp
| * | | | | | | | | | | | | | Fix item durability.Howaner2014-07-2316-69/+149
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1181
* | | | | | | | | | | | | | | NetherClumpGenerator: Fixed generating stuff on halfslabs and fencesSTRWarrior2014-07-271-1/+1
| |_|_|_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | Updated NetherForts' weights.madmaxoft2014-07-271-2/+2
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Removed forgotten commentSTRWarrior2014-07-271-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Made nether ceiling smooth.STRWarrior2014-07-271-1/+8
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Added a ceiling to disguise the bedrock above it.STRWarrior2014-07-271-1/+9
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | NetherClumpFoliage: Fixed assertSTRWarrior2014-07-271-8/+39
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Updated NetherFort prefabs to latest Gallery content.madmaxoft2014-07-271-37/+752
| |_|/ / / / / / / / / / / |/| | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #1232 from mc-server/splash-entityMattes D2014-07-267-139/+162
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moved potion static functions to EntityEffect to create splash potions through the world
| * | | | | | | | | | | | | SplashPotionEntity: Use `const cItem &` instead of a cItemarchshift2014-07-262-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed indentations, removed redundant init code in SplashPotionEntity.cpparchshift2014-07-264-9/+7
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Moved potion static functions to EntityEffect to create splash potions through worldarchshift2014-07-267-139/+164
| | |/ / / / / / / / / / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | Change comment.Howaner2014-07-261-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge branch 'master' into InventoryHowaner2014-07-26248-1994/+3192
|\| | | | | | | | | | | |
| * | | | | | | | | | | | Endianness.h: undefined ntohll before redefiningarchshift2014-07-261-0/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Tweaks to NetherClumpFoliageSTRWarrior2014-07-251-34/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplefied the way NetherClupFoliage creates the X and Z coordinate.
| * | | | | | | | | | | | Speed up the NetherClumpFoliage finisher.STRWarrior2014-07-251-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using IntNoiseXX instead of CubicNoiseXX.
| * | | | | | | | | | | | Merge remote-tracking branch 'origin/master'Tiger Wang2014-07-2482-221/+462
| |\ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | Removed redundant semicolons and re-added warningarchshift2014-07-2473-103/+103
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Added a queue for setting chunk data.madmaxoft2014-07-2411-118/+349
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1196.
| | * | | | | | | | | | | | Made the cWorld::SpawnMobFinalize function more readable.STRWarrior2014-07-241-0/+10
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed block dropsTiger Wang2014-07-245-17/+59
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1242 (the issue addressed within)
| * | | | | | | | | | | | Moar view distance!tonibm192014-07-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Let's blow up our computers! :D
| * | | | | | | | | | | | TallGrass: Less grass on mountains.STRWarrior2014-07-231-0/+11
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed possible crash in the NetherClumpFoliage finisher.STRWarrior2014-07-231-0/+5
| | | | | | | | | | | | |
| * | | | | | | | | | | | BlockLeaves: Fixed comment style.madmaxoft2014-07-231-2/+2
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed MSVC bindings regeneration.madmaxoft2014-07-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still one typo had been left in the cmake file.
| * | | | | | | | | | | | Fixed Bindings generation in MSVC.madmaxoft2014-07-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bindings weren't regenerated because of the typo in the dependencies cmake variable.
| * | | | | | | | | | | | Merge pull request #1234 from mc-server/GeneratorTweaksarchshift2014-07-221-13/+3
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | ExtremeHillsPlus and ExtremeHills spawn with grass only
| | * | | | | | | | | | | | Extreme Hills M variant only spawn with grass and stoneSTRWarrior2014-07-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed gravel.
| | * | | | | | | | | | | | ExtremeHillsPlus and ExtremeHills spawn with grass onlySTRWarrior2014-07-211-12/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Turns out only the M variants have stone and gravel in them.
| * | | | | | | | | | | | | Export SendEntityAnimation to ToLuaarchshift2014-07-221-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fix misguided comment on bits...Tiger Wang2014-07-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...obviously written by someone very confused, also known as me
| * | | | | | | | | | | | | Export BroadcastEntityAnimation with ToLuaarchshift2014-07-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #752
| * | | | | | | | | | | | | Merge remote-tracking branch 'origin/master' into saplingsandleavesTiger Wang2014-07-22110-937/+1093
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|/ / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Defines.h
| | * | | | | | | | | | | | Updated prefabs to current Gallery content.madmaxoft2014-07-223-226/+243
| | |/ / / / / / / / / / /
| | * | | | | | | | | | | Merged branch 'origin/Foliage'.madmaxoft2014-07-213-0/+100
| | |\ \ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | Fixed a missing enter.STRWarrior2014-07-211-0/+1
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Removed y for-loop.STRWarrior2014-07-211-27/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only the top block now gets long grass.
| | | * | | | | | | | | | | Fixed indentationSTRWarrior2014-07-211-12/+12
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Changed CubicNoiseXX to IntNoiseXXSTRWarrior2014-07-202-40/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added some comments
| | | * | | | | | | | | | | Renamed cFinishGenFoliage to cFinishGenTallGrassSTRWarrior2014-07-203-17/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Better grass density Added double tall grass.
| | | * | | | | | | | | | | Fixed warningsSTRWarrior2014-07-202-5/+4
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | First attempt for a new foliage finisherSTRWarrior2014-07-203-0/+74
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Defines.h: Fixed a warning.madmaxoft2014-07-211-1/+1
| | | |/ / / / / / / / / / | | |/| | | | | | | | | |
| | * | | | | | | | | | | CheckBasicStyle: Added a lua shebang.madmaxoft2014-07-211-0/+1
| | | | | | | | | | | | |
| | * | | | | | | | | | | CheckBasicStyle: Doesn't require LuaFileSystem.madmaxoft2014-07-211-34/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead it uses the list of files generated by CMake.
| | * | | | | | | | | | | CMake: generates a list of all source files.madmaxoft2014-07-211-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will be used for the style-checking script.
| | * | | | | | | | | | | Normalized spaces after "catch".madmaxoft2014-07-212-3/+4
| | | | | | | | | | | | |
| | * | | | | | | | | | | CheckBasicStyle: Checks spaces after keywords, no space before ")".madmaxoft2014-07-211-1/+16
| | | | | | | | | | | | |
| | * | | | | | | | | | | Style: Normalized to no spaces before closing parenthesis.madmaxoft2014-07-2194-535/+541
| | | | | | | | | | | | |
| | * | | | | | | | | | | Style: Normalized spaces after if, for and while.madmaxoft2014-07-2128-135/+137
| | | | | | | | | | | | |
| | * | | | | | | | | | | Cuboid: added explicit copy assignment operatorarchshift2014-07-212-0/+13
| | | | | | | | | | | | |
| | * | | | | | | | | | | Merge pull request #1213 from mc-server/chat-colorMattes D2014-07-206-57/+59
| | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactored cChatColor
| | | * | | | | | | | | | | ChatColor.h: The @deprecated tag slipped. Oops.archshift2014-07-201-2/+2
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Fixed attempts to call c_str on ChatColorsarchshift2014-07-192-6/+6
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Removed references to deprecated cChatColor::Colorarchshift2014-07-192-2/+2
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Refactored cChatColorarchshift2014-07-192-49/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Changed std::string fields to const char-pointers in order to wipe out potential issues with static initialization and global destructors - Deprecated cChatColor::Color() because the name does not match the value
| | * | | | | | | | | | | | Revert "Only one instance of server can be started"Tiger Wang2014-07-201-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 6484e9814a3a540518606f552398e0b82f91ab4d. * Fixes #1200
| | * | | | | | | | | | | | Line tracer invalid chunk fixTiger Wang2014-07-202-26/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1230 * Additionally improved speed in some scenarios
| * | | | | | | | | | | | | Merge branch 'master' into saplingsandleavesTiger Wang2014-07-20339-2329/+3457
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Bindings/DeprecatedBindings.cpp src/Blocks/BlockSapling.h
| | * | | | | | | | | | | | NBTChunkSerializer.cpp: Added break after serializing the splash potionarchshift2014-07-201-0/+1
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Added m_TicksAlive to entities, allows projectiles to hit their creatorsarchshift2014-07-203-3/+14
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Added destroy-timer system to splash potion entitiesarchshift2014-07-202-3/+24
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | main.cpp: field style fixesarchshift2014-07-203-12/+12
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Socket: removed unused Socket destructorarchshift2014-07-192-10/+0
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | main.cpp: Fixed warnings with g_TERMINATE_EVENT_RAISED and g_SERVER_TERMINATEDarchshift2014-07-193-6/+6
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Monsters: Made IsUndead overridable by the respective mob classesarchshift2014-07-196-13/+11
| | |/ / / / / / / / / / /
| | * | | | | | | | | | | CheckBasicStyle: Checks for braces not on separate lines.madmaxoft2014-07-191-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only the opening braces at the end of a line are checked, others (such as inline getters and setters or initializers) are valid.
| | * | | | | | | | | | | Code style: Fixed braces on separate lines.madmaxoft2014-07-1914-20/+38
| | | | | | | | | | | | |
| | * | | | | | | | | | | CheckBasicStyle: Check spaces around commas.madmaxoft2014-07-191-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We want no space in front of and at least one space after a comma.
| | * | | | | | | | | | | Fixed spaces after commas in protocol data.madmaxoft2014-07-191-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The JSON data is well-formatted with spaces, too; we can afford to waste the few bytes.
| | * | | | | | | | | | | Fixed style: spaces after commas.madmaxoft2014-07-1942-101/+100
| | | | | | | | | | | | |
| | * | | | | | | | | | | Merge pull request #1214 from mc-server/anti-globMattes D2014-07-1916-214/+847
| | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | CMake - Explicitly lists all source files
| | | * | | | | | | | | | | Fixed MSVC bindings generation.madmaxoft2014-07-192-4/+4
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Moved Windows custom command to src/CMakeLists.txtarchshift2014-07-192-15/+20
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | CMakeLists: Moved Bindings-specific code to subdirarchshift2014-07-193-120/+125
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Blocks/CMakeLists.txt: Fixed header list after merge of masterarchshift2014-07-192-10/+6
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | CMake: Add Bindings library from subdirectoryarchshift2014-07-192-23/+12
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | src/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-192-20/+180
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On MSVC, CMake will traverse all the CMakeLists and add their source and header files to one conglomerate SOURCE list.
| | | * | | | | | | | | | | Subdirs: Only add_library if not using MSVCarchshift2014-07-1913-19/+45
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | src/CMakeLists: Small changes for increased readabilityarchshift2014-07-191-5/+9
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | OSSupport/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+32
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | HTTPServer/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+20
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Generating/Prefabs/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+22
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Simulator/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+28
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | WorldStorage/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+26
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Generating/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+54
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | BlockEntities/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+35
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | UI/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+9
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Protocol/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+23
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Blocks/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+92
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Items/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+47
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Entities/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+56
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Mobs/CMakeLists.txt: Replaced glob with list of filesarchshift2014-07-191-5/+69
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Merge pull request #1223 from mc-server/fixesMattes D2014-07-1910-61/+16
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed small issues throughout the codebase
| | | * | | | | | | | | | | | World.cpp: fixed not all enum fields being used in m_Dimension switcharchshift2014-07-191-1/+2
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Minecart: slimmed down SpawnOn by keeping subtype in the payload enumarchshift2014-07-192-20/+7
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Trees.cpp: removed unused "debug" fieldsarchshift2014-07-191-7/+1
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Fixed clamping issuesarchshift2014-07-196-33/+6
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Splash potions: Renamed PotionParticleType to PotionColor for clarityarchshift2014-07-195-15/+15
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fixed splash potion color on tossarchshift2014-07-192-0/+16
| | |/ / / / / / / / / / / /
| | * | | | | | | | | | | | Renamed AllToLua_lua script.madmaxoft2014-07-191-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1222.
| | * | | | | | | | | | | | Authenticator.cpp: Killed a global destructor warningarchshift2014-07-191-53/+56
| | |/ / / / / / / / / / /
| | * | | | | | | | | | | Merge branch 'Inventory2'madmaxoft2014-07-184-0/+59
| | |\ \ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | Clarified RemoveItem()'s comments.madmaxoft2014-07-182-2/+4
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Added RemoveItem() function to the player inventory.Howaner2014-07-184-0/+57
| | | | |_|_|_|_|_|_|/ / / | | | |/| | | | | | | | |
| | * | | | | | | | | | | Merge branch 'Entities'madmaxoft2014-07-184-11/+87
| | |\ \ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | Fixed slime-related comments.madmaxoft2014-07-183-5/+10
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Slime sizes are 1, 2 or 4 and not 1, 2 or 3.Howaner2014-07-183-4/+4
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Split into more lines.Howaner2014-07-172-6/+10
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Fixed many slime bugs.Howaner2014-07-173-7/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixed slime hurt/death sound - Added slime spawning on death. - Fixed the max health. - Fixed the attack damage. - Little slimes should not attack players.
| | * | | | | | | | | | | | Merge branch 'Sign'madmaxoft2014-07-184-34/+122
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | |_|/ / / / / / / / / / | | |/| | | | | | | | | | |
| | | * | | | | | | | | | | Normalized code style for both sign handlers.madmaxoft2014-07-182-16/+20
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Removed cBlockSignPostHandler descend.Howaner2014-07-181-2/+28
| | | | | | | | | | | | | |
| | | * | | | | | | | | | | Added a extra wall sign handler.Howaner2014-07-184-27/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1119
| | * | | | | | | | | | | | Monster fixesTiger Wang2014-07-187-35/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1203 * Fixes #627
| | * | | | | | | | | | | | Fixed creative players not being able to drinkarchshift2014-07-181-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1215
| | * | | | | | | | | | | | CheckBasicStyle: Proper spaces with commas.madmaxoft2014-07-181-21/+48
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Fixed spaces before commas.madmaxoft2014-07-187-14/+14
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Removed duplicate IPvX labels.madmaxoft2014-07-183-6/+6
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Merge pull request #1208 from Howaner/MobInventoryMattes D2014-07-182-0/+17
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Spawns skeletons with a bow in their hands
| | | * | | | | | | | | | | | Skeletons should spawn with a bow in the hand.Howaner2014-07-182-0/+17
| | | |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1184
| | * | | | | | | | | | | | Moved ChatColor.h out of defines where it was not neededarchshift2014-07-182-1/+1
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | ProtocolRecognizer.cpp: removed unused NumBytesReadarchshift2014-07-181-2/+0
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Generator: removed rnd definitions that are never readarchshift2014-07-182-2/+0
| | |/ / / / / / / / / / /
| * | | | | | | | | | | | Proper comment for DropBlock()Tiger Wang2014-07-201-2/+5
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed issues relating to saplings and leavesTiger Wang2014-07-1710-139/+32
| | |/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed cBlockInfo::RequiresSpecialTool * Fixes #1195 * Fixes #1201
* | | | | | | | | | | | Add armor items directly to the armor slots.Howaner2014-07-203-3/+16
| | | | | | | | | | | |
* | | | | | | | | | | | Moved comment.Howaner2014-07-181-1/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed the armor slot in creative mode. Also removed that armor get directly to the armor slot. It is extremely buggy and unnecessary.Howaner2014-07-182-9/+13
| | | | | | | | | | | |
* | | | | | | | | | | | Items should first added to the first slot, not the latest.Howaner2014-07-181-3/+3
| |/ / / / / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | Fixed NULL being passed instead of a double to AddEntityEffectarchshift2014-07-171-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Fixed code style in Trees.cpp.madmaxoft2014-07-171-24/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The src folder now has zero BasicStyle violations.
* | | | | | | | | | | Fixed tabs used for alignment.madmaxoft2014-07-1729-99/+115
| | | | | | | | | | |
* | | | | | | | | | | More trailing whitespace fixes.madmaxoft2014-07-1713-25/+25
| | | | | | | | | | |
* | | | | | | | | | | Player.cpp: Fixed compile errorarchshift2014-07-171-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Player.cpp: Added Wither death messagearchshift2014-07-171-0/+1
| | | | | | | | | | |
* | | | | | | | | | | Basic style fixes.madmaxoft2014-07-17130-286/+290
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServermadmaxoft2014-07-173-25/+12
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Fix sapling drop.Howaner2014-07-171-1/+1
| |/ / / / / / / / / /
| * | | | | | | | | | Fixed mob knockbackTiger Wang2014-07-171-23/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #901
| * | | | | | | | | | Fixed crash with entities in unloaded chunksTiger Wang2014-07-171-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1190
* | | | | | | | | | | Initial version of a script to check basic style.madmaxoft2014-07-171-0/+188
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This script reports basic violations of the style, such as indentation using spaces, alignment using tabs, trailing whitespace etc. Passing this script does NOT mean that the style is clean, it's only for fast-checking purposes.
* | | | | | | | | | | Normalized comments.madmaxoft2014-07-17173-867/+893
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 spaces around single-line comments.madmaxoft2014-07-1734-139/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There should be at least two spaces in front and one space after //-style comments.
* | | | | | | | | | | Fixed basic whitespace problems.madmaxoft2014-07-1752-298/+306
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Indenting by spaces and alignment by spaces, as well as trailing whitespace on non-empty lines.
* | | | | | | | | | Merge pull request #1183 from Howaner/SoundsTiger Wang2014-07-171-2/+2
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Reset meta to zero when the blocks explode
| * | | | | | | | | | Derp.Howaner2014-07-151-2/+2
| | | | | | | | | | |
| * | | | | | | | | | Reset meta to zero when the block explode.Howaner2014-07-141-4/+4
| | | | | | | | | | |
* | | | | | | | | | | Fixed 3 MSVC warnings in SplashPotionEntity.madmaxoft2014-07-171-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Updated cPawn::KilledBy signature for custom death messages.madmaxoft2014-07-172-3/+3
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' into potionsmadmaxoft2014-07-1721-41/+62
|\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge pull request #1193 from mc-server/deathmessagesMattes D2014-07-1721-41/+62
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Death messages
| | * | | | | | | | | | | Resolved backwards compatibility issuesTiger Wang2014-07-167-9/+9
| | | | | | | | | | | | |
| | * | | | | | | | | | | Tailored death messagesTiger Wang2014-07-0420-40/+61
| | | | | | | | | | | | |
* | | | | | | | | | | | | Reformatted cItemPotionHandler.madmaxoft2014-07-172-48/+79
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixed formatting for cWitherSkullEntitymadmaxoft2014-07-172-3/+13
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge remote-tracking branch 'origin/master' into potionsmadmaxoft2014-07-1716-124/+261
|\| | | | | | | | | | | |
| * | | | | | | | | | | | Another fix for excessive food drainTiger Wang2014-07-162-1/+10
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed a bug with bucketsTiger Wang2014-07-162-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Additionally fixed cLineBlockTracer's EntryFace parameter when a block was hit on the first iteration along the projected line
| * | | | | | | | | | | | Fixed another redstone simulator crashTiger Wang2014-07-161-0/+7
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge pull request #1192 from mc-server/skinuuidMattes D2014-07-1611-113/+233
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Skins
| | * | | | | | | | | | | | SuggestionsTiger Wang2014-07-161-2/+5
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Function renameTiger Wang2014-07-162-3/+3
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Unified functionsTiger Wang2014-07-162-34/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks @Howaner!
| | * | | | | | | | | | | | Store properties as Json::ValueTiger Wang2014-07-169-21/+44
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Player properties are now retrievedTiger Wang2014-07-1411-116/+216
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed a DropSpenser AddFace bugTiger Wang2014-07-151-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge remote-tracking branch 'origin/master' into potionsmadmaxoft2014-07-157-80/+246
|\| | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge pull request #1191 from Masy98/BlocksTiger Wang2014-07-151-13/+0
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed stairs and carpet from IsSolid
| | * | | | | | | | | | | | | Removed Stairs and carpet from the "isSolid" list to prevent mobs falling through them.Masy982014-07-151-1/+0
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Removed Stairs and carpet from the "isSolid" list to prevent mobs falling through them.Masy982014-07-151-12/+0
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Merge pull request #1189 from Masy98/BlocksMattes D2014-07-152-63/+214
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added various missing blocks in the lists in BlockInfo.cpp
| | * | | | | | | | | | | | | Added Brick fence to m_TransparentMasy982014-07-151-0/+1
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Added various missing blocks in the lists in BlockInfo.cppMasy982014-07-152-64/+214
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed code formatting.madmaxoft2014-07-152-6/+9
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Merge remote-tracking branch 'origin/ClearMetaMixin'madmaxoft2014-07-154-12/+34
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | Added super typedefTycho2014-07-153-3/+6
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | COnverted Lilypad back to mixinTycho2014-07-151-8/+2
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Revert "Converted some blockhandlers to use cClearMetaOnDrop"Tycho2014-07-159-21/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 333f4f982cbd24ffcb376594eddef439b3f05e9e.
| | * | | | | | | | | | | | | | Added documentationTycho2014-07-141-0/+6
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Converted some blockhandlers to use cClearMetaOnDropTycho2014-07-149-67/+21
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Simplified ClearMetaOnDropTycho2014-07-141-1/+1
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Added cClearOnDrop Mixin to cPumpkinTycho2014-07-141-2/+2
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Added first implementation of cClearMetaOnDropTycho2014-07-142-2/+21
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fixed FindClosestPlayerTycho2014-07-151-3/+6
| | |_|_|_|_|/ / / / / / / / / | |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | | Restructured cSplashPotionEntity code.madmaxoft2014-07-155-72/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The callback doesn't need declaration in the header. Renamed PotionName to PotionParticleType.
* | | | | | | | | | | | | | | Only the cEntityEffect::effXXX constants are Lua-exported.madmaxoft2014-07-152-72/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The rest of the classes don't need exporting, there's no interface using them anyway.
* | | | | | | | | | | | | | | Reformatted EntityEffect code.madmaxoft2014-07-151-25/+29
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Fixed a MSVC warning in cEntityEffect::CreateEntityEffect().madmaxoft2014-07-151-0/+1
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge branch 'master' into potionsmadmaxoft2014-07-1569-425/+679
|\| | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Pass cItem by reference.madmaxoft2014-07-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 66445.
| * | | | | | | | | | | | | | Added missing member initialization to cGridStructGen.madmaxoft2014-07-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 68228.
| * | | | | | | | | | | | | | Fixed redstone simulator crashTiger Wang2014-07-152-8/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1176 * Fixed #1186
| * | | | | | | | | | | | | | Fixed some meta resetting bugsTiger Wang2014-07-146-27/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1174 * Fixes #1171
| * | | | | | | | | | | | | | Maybe improved arrow sinkingTiger Wang2014-07-141-2/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed placing liquids over liquidsTiger Wang2014-07-141-1/+1
| |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1182
| * | | | | | | | | | | | | Merge pull request #1177 from mc-server/ChestFixMattes D2014-07-141-7/+7
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed Issue with Comparing agast the wrong chest, potentially causing crashes
| | * \ \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' into ChestFixTycho2014-07-135-8/+9
| | |\ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | Fixed Issue with Comparing agast the wrong chest, potentially causing crashes.worktycho2014-07-131-7/+7
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Merge pull request #1172 from mc-server/coverity_fixesMattes D2014-07-133-4/+14
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | Coverity fixes
| | * | | | | | | | | | | | | | Added parenthasiesworktycho2014-07-131-1/+1
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | CopyPaste Errorworktycho2014-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 70460.
| | * | | | | | | | | | | | | | Another COpyPaste Errorworktycho2014-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 70461
| | * | | | | | | | | | | | | | Fix CopyPaste error that ment a_MaxRelX wasdn't checkedworktycho2014-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 70464
| | * | | | | | | | | | | | | | Check GridSize for 0worktycho2014-06-261-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 68226 and CID 66437
| | * | | | | | | | | | | | | | Add Null check to SendBlockToworktycho2014-06-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 43611
| * | | | | | | | | | | | | | | Adjusted calls to CreateProjectile that passed ItemsTycho2014-07-131-2/+2
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Made CreateProjectile a pointerworktycho2014-07-134-6/+7
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed MSVC warnings in SoundEffect functions.madmaxoft2014-07-133-15/+7
| | |_|_|_|/ / / / / / / / / | |/| | | | | | | | | | | |
| * | | | | | | | | | | | | Update.Howaner2014-07-131-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'master' into SoundsHowaner2014-07-137-16/+81
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / / / / | | |/| | | | | | | | | | |
| | * | | | | | | | | | | | Merge pull request #1133 from Howaner/SheepMattes D2014-07-134-10/+75
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sheep fixes
| | | * | | | | | | | | | | | Changed comments.Howaner2014-07-131-3/+5
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Merge branch 'master' into SheepHowaner2014-07-1398-1538/+2247
| | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | | | Add doxy-comments.Howaner2014-07-011-1/+4
| | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | Moved the random code to a function (cSheep::GenerateNaturalRandomColor())Howaner2014-06-302-36/+47
| | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | Code fixes.Howaner2014-06-291-1/+1
| | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | Save IsSheared from Sheep.Howaner2014-06-282-4/+14
| | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | Fix sheep color's, add shear sound.Howaner2014-06-283-3/+42
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Merge pull request #1166 from Howaner/GlobalFixesMattes D2014-07-133-6/+6
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|/ / / / / / / / / / | | |/| | | | | | | | | | | | | Fixed wrong types. (BLOCKTYPE -> NIBBLETYPE)
| | | * | | | | | | | | | | | | Fixed wrong types. (BLOCKTYPE -> NIBBLETYPE)Howaner2014-07-133-6/+6
| | | | |/ / / / / / / / / / / | | | |/| | | | | | | | | | |
| * | / | | | | | | | | | | | Changed BroadcastSoundEffect function to take floating pos.Howaner2014-07-1336-83/+77
| |/ / / / / / / / / / / / /
| * | | | | | | | | | | | | Only one instance of server can be startedTiger Wang2014-07-131-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This disallows the UDP multicasting that the original code enabled. xoft deterrent, in PR #1151 you implied that this was unwanted behaviour (but comments gone now as I force pushed - check emails?). Revert at will if unsatisfactory :P
| * | | | | | | | | | | | | Revert failed fix for #31Tiger Wang2014-07-132-31/+4
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 69dc9b4c9aea58ebd95e2dbd0205701dfc4ce54e.
| * | | | | | | | | | | | Merge pull request #1154 from mc-server/trappedchestsTiger Wang2014-07-1326-218/+387
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented trapped chests & others
| | * | | | | | | | | | | | cNBTChunkSerializer: Fixed alignment.madmaxoft2014-07-121-14/+14
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | cHopperEntity: Simplified chest conditions.madmaxoft2014-07-121-10/+4
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | cChestEntity: Renamed a member to avoid confusion.madmaxoft2014-07-122-8/+9
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Fixed alignment.madmaxoft2014-07-121-2/+3
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Suggestions and bug fixTiger Wang2014-07-127-30/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed hoppers pushing/pulling to/from (trapped)chests that do not form a double-chest with the chest type directly connected to said hopper; thank you, @madmaxoft
| | * | | | | | | | | | | | SuggestionsTiger Wang2014-07-113-2/+6
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | SuggestionsTiger Wang2014-07-114-14/+18
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Improved LinkedPowering speedTiger Wang2014-07-111-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Additionally fixed wires powering other wires through blocks
| | * | | | | | | | | | | | Made things consistentTiger Wang2014-07-082-6/+9
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Fixed compilation and pressure platesTiger Wang2014-07-071-8/+4
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Implemented trapped chests & othersTiger Wang2014-07-0726-179/+340
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Added trapped chests * Fixed a bunch of bugs in the redstone simulator concerning wires and repeaters * Other potential bugfixes
| * | | | | | | | | | | | | Comment grammar correctionTiger Wang2014-07-121-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Simplified buckets code slightlyTiger Wang2014-07-121-32/+15
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge pull request #1162 from daniel0916/FixesTiger Wang2014-07-121-23/+67
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix for bucket placing
| | * | | | | | | | | | | | | Changesdaniel09162014-07-121-5/+4
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Changesdaniel09162014-07-111-24/+16
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Changesdaniel09162014-07-101-20/+22
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Maybe fixed whitespacesdaniel09162014-07-101-7/+7
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Maybe fixed whitespacesdaniel09162014-07-101-1/+1
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fixed Bucket Placingdaniel09162014-07-101-6/+57
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fixed Bucket placingdaniel09162014-07-091-1/+1
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | ItemHandler.cpp: removed redundant food and drink checksarchshift2014-07-141-33/+0
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Readability and clarity changesarchshift2014-07-144-59/+68
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | EntityEffect: Inlined functions, added explicit copy constructor and operator.archshift2014-07-142-20/+29
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Changed separating comment style from asterisks to slashes.archshift2014-07-142-93/+93
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Added splash potions to NBT serialization and retrievalarchshift2014-07-126-1/+50
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge remote-tracking branch 'origin/master' into potionsarchshift2014-07-1212-161/+371
|\| | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Simplified the player data loading.madmaxoft2014-07-111-9/+8
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Player data filenames are based on UUID.madmaxoft2014-07-114-67/+155
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed a missing return value.madmaxoft2014-07-111-0/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Preparation for player UUID-based storage: LoadFromFile()madmaxoft2014-07-112-21/+42
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed style consistency.madmaxoft2014-07-102-61/+64
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Implemented support for forced chunk ticking.madmaxoft2014-07-106-8/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1160.
| * | | | | | | | | | | | | | Fixed a missing "inline" keyword.madmaxoft2014-07-101-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed Vector3.h compilation in MSVC2008.madmaxoft2014-07-101-0/+9
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Removed lilypad from plains village prefabs.madmaxoft2014-07-101-7/+8
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | For now, removed creator member from Entity Effect for pointer safetyarchshift2014-07-1212-104/+94
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge remote-tracking branch 'origin/master' into potionsarchshift2014-07-10135-4674/+6956
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Entities/Player.cpp src/Entities/ProjectileEntity.cpp
| * | | | | | | | | | | | | | Merge pull request #1157 from Howaner/WindowMattes D2014-07-093-41/+237
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add more inventory actions.
| | * | | | | | | | | | | | | | Removed unused include line.Howaner2014-07-091-1/+0
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Added inventory number click.Howaner2014-07-092-1/+43
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Added drop window action.Howaner2014-07-063-25/+113
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Add middle click.Howaner2014-07-052-21/+88
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fixed bow chargeTiger Wang2014-07-091-11/+2
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fixed arrow collection animationTiger Wang2014-07-095-33/+4
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed piston extension non-solidness
| * | | | | | | | | | | | | | Merge pull request #1135 from mc-server/fixesTiger Wang2014-07-0919-110/+272
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes to projectiles and the undead
| | * | | | | | | | | | | | | | Added extra space before commentsTiger Wang2014-07-071-6/+6
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Changed everything to callbacksTiger Wang2014-07-054-82/+53
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Crash and compile fixTiger Wang2014-07-043-5/+10
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Compile fixTiger Wang2014-07-041-1/+1
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | SuggestionsTiger Wang2014-07-047-11/+20
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Various fixedTiger Wang2014-07-044-17/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed potential invalid pointer dereferencing, fixes #1117 * Fixed ender pearls not being loaded properly
| | * | | | | | | | | | | | | | Eps comparisonTiger Wang2014-07-042-2/+2
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | SuggestionsTiger Wang2014-07-024-19/+31
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Vector clamping fixesTiger Wang2014-07-012-21/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thank you, @madmaxoft.
| | * | | | | | | | | | | | | | Implemented Vector3<>::Floor()Tiger Wang2014-06-302-10/+19
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | SuggestionsTiger Wang2014-06-293-3/+20
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | An unification of code styleTiger Wang2014-06-281-1/+1
| | | |_|_|/ / / / / / / / / / | | |/| | | | | | | | | | | |
| | * | | | | | | | | | | | | Bettered zombie and skeleton AITiger Wang2014-06-222-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed potential issues with skylight detection
| | * | | | | | | | | | | | | Some Entity.cpp style improvementsTiger Wang2014-06-222-13/+8
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fixed multiple issues with projectilesTiger Wang2014-06-228-63/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed arrows not being collectable/not truly hitting a block/not lodging into blocks/not going in far enough * Fixed projectiles not playing their block hit animation owning to being destroyed too quickly
| * | | | | | | | | | | | | | Updated generator prefabs to current Gallery contents.madmaxoft2014-07-083-7/+8
| | |_|/ / / / / / / / / / / | |/| | | | | | | | | | | |
| * | | | | | | | | | | | | Merge pull request #1144 from mc-server/LuaCodeGenMattes D2014-07-065-624/+227
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lua code gen
| | * | | | | | | | | | | | | Tolua generates LuaState_Call.inc file.madmaxoft2014-07-014-624/+31
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Initial codegen for LuaState_Call.inc.madmaxoft2014-07-011-0/+196
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed crafting grid updating.Mattes D2014-07-062-2/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1152.
| * | | | | | | | | | | | | | Fixed slime handling in cMonster::StringToMobType().madmaxoft2014-07-061-1/+1
| | |_|/ / / / / / / / / / / | |/| | | | | | | | | | | |
| * | | | | | | | | | | | | Merge pull request #1151 from mc-server/immediatesocketrebindMattes D2014-07-041-0/+2
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MCS sockets can be rebound immediately
| | * | | | | | | | | | | | | MCS WebAdmin sockets rebinds instantlyTiger Wang2014-07-041-0/+2
| | | |_|_|/ / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #272 * Fixes #1150
| * | | | | | | | | | | | | cPluginManager: Reformatted the switch statement.madmaxoft2014-07-041-7/+34
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge remote-tracking branch 'origin/HandleCommand'madmaxoft2014-07-042-30/+36
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | Moved sending error messages to cPluginManager:CallHookChatSTRWarrior2014-07-041-4/+6
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fixed doxycommentsSTRWarrior2014-06-281-3/+3
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | (Force)ExecuteCommand returns the CommandResult enumsSTRWarrior2014-06-182-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exported and documented the CommandResult enums
| | * | | | | | | | | | | | | Added crBlocked and crNoPermissionSTRWarrior2014-06-172-2/+4
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | HandleCommand now returns an CommandResult enum.STRWarrior2014-06-172-23/+19
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fixed possible confusion.STRWarrior2014-06-172-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a command handler gets an error then the player will receive an unknown command error. This can be confusing for players.
| | * | | | | | | | | | | | | Fixed a copypasta error in WormNestCaves generator settings.madmaxoft2014-06-161-1/+1
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Updated the SandFlatRoofVillage prefabs.madmaxoft2014-06-161-288/+381
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Added random offsets to cGridStructGen.madmaxoft2014-06-1517-85/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #740.
| | * | | | | | | | | | | | | Merge pull request #1090 from mc-server/saveoncrashMattes D2014-06-152-2/+22
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Data is saved on crash
| | | * | | | | | | | | | | | | Players are saved regularlyTiger Wang2014-06-152-2/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1076
| | * | | | | | | | | | | | | | Fixed bad comparison crashTiger Wang2014-06-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1095
| | * | | | | | | | | | | | | | Fixed daylight sensor unpoweringTiger Wang2014-06-151-6/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1094
| | * | | | | | | | | | | | | | Merge pull request #1019 from mc-server/cPlayerSetSpeedMattes D2014-06-144-31/+59
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cPlayer set speed
| | | * | | | | | | | | | | | | | Removed an unused tolua_end and tolua_begin pair.madmaxoft2014-06-141-2/+0
| | | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | | Simplified speed clamping.madmaxoft2014-06-141-8/+3
| | | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | | Refactored speed-setting to use a common function for all cases.madmaxoft2014-06-144-93/+44
| | | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | | Merge branch 'master' into cPlayerSetSpeedmadmaxoft2014-06-14139-1776/+24668
| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | | | | | Player.h: Moved doxy-comments to Entity.harchshift2014-06-112-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moved doxy-comments to the defining function in Entity.h rather than the overloaded functions in Player.h Comment for each function (instead of assumed encapsulating comments) @deprecated tag for ForceSetSpeed()
| | | * | | | | | | | | | | | | | | Added doxy-commentsSTRWarrior2014-05-221-6/+8
| | | | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | | | cEntity::SetSpeed(a_Vector3d) isn't virtualized anymoreSTRWarrior2014-05-222-2/+2
| | | | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | | | cPlayer overrides the SetSpeedXX functionsSTRWarrior2014-05-223-4/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed compile error
| | | * | | | | | | | | | | | | | | Both SetSpeed functions are now overridden by cPlayerSTRWarrior2014-05-223-6/+32
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Fixed c1deda5d8f01811efa5094e9375166acb69d50edTiger Wang2014-07-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I keep on breaking stuff :P
| * | | | | | | | | | | | | | | | | Removed world-saving log messages.madmaxoft2014-07-043-35/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: http://forum.mc-server.org/showthread.php?tid=1518
| * | | | | | | | | | | | | | | | | Changed OnWeatherChanging hook to always read the returned weather.madmaxoft2014-07-033-4/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: http://forum.mc-server.org/showthread.php?tid=1512
| * | | | | | | | | | | | | | | | | CMake: Changed slash format to support MSYS.madmaxoft2014-07-031-1/+1
| | |_|_|_|/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #1044
| * | | | | | | | | | | | | | | | Merge pull request #1138 from mc-server/enderchestMattes D2014-07-027-113/+78
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Properly implemented enderchests
| | * | | | | | | | | | | | | | | | SuggestionTiger Wang2014-07-021-13/+13
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Removed unneeded codeTiger Wang2014-06-304-38/+1
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Removed bad commentTiger Wang2014-06-291-1/+0
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Properly implemented enderchestsTiger Wang2014-06-2910-99/+102
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Merge remote-tracking branch 'origin/master'Tiger Wang2014-07-028-30/+69
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Entities/Player.cpp
| | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #1139 from Howaner/HooksMattes D2014-07-027-28/+67
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add hook HOOK_PLAYER_FOOD_LEVEL_CHANGE
| | | * | | | | | | | | | | | | | | | | Removed foodlevel-change possibility. Plugins can cancel the event and use cPlayer:SetFoodLevel()Howaner2014-07-025-6/+6
| | | | | | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | | | | | Fixes.Howaner2014-06-302-4/+4
| | | | | | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | | | | | Add new hook: HOOK_PLAYER_FOOD_LEVEL_CHANGEHowaner2014-06-306-26/+67
| | | | | | | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | | | | | | Unnecessary returnHowaner2014-06-301-2/+0
| | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | CMake: Use cmake for file-copying.madmaxoft2014-07-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should enable MSYS builds.
| * | | | | | | | | | | | | | | | | | | Fixed player teleport food drainTiger Wang2014-07-022-1/+14
| | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | Redstone simulator is alerted to lever unpoweringTiger Wang2014-07-024-1/+6
| |/ / / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed the "fix" that broke the fix for #535, thereby fixing said issue * Fixed #535
| * | | | | | | / / / / / / / / / / / Fixed printf formats for Win buildsmadmaxoft2014-07-012-4/+4
| | |_|_|_|_|_|/ / / / / / / / / / / | |/| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Fixed a possibly unused variable.madmaxoft2014-07-011-1/+1
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Only fixes the server crash.Howaner2014-07-012-7/+1
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Fix server-crash with non-existing items.Howaner2014-07-012-2/+8
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Fixed linking order under MinGW.Mattes D2014-07-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #1044
| * | | | | | | | | | | | | | | | | Fixed size_t printfing under MinGW.Mattes D2014-06-301-3/+18
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Fixed cFile compilation under MinGW.madmaxoft2014-06-301-0/+3
| |/ / / / / / / / / / / / / / / /
| * | | | | | | | | | | | | | | | Fixed respawningTiger Wang2014-06-2912-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1103
| * | | | | | | | | | | | | | | | Fixed offline UUID generator.Mattes D2014-06-291-2/+4
| |/ / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It generated invalid UUIDs, too many hex chars.
| * | | | | | | | | | | | | | | Send statistics to the player, when he logged in.Howaner2014-06-292-2/+4
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Merge pull request #1132 from mc-server/RemoveMD5Mattes D2014-06-293-24/+22
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed the md5 library, obsoleted by PolarSSL.
| | * | | | | | | | | | | | | | | Fixed a silly path error in #include.Mattes D2014-06-281-1/+1
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | CMake: Added polarssl include dir as non-system.Mattes D2014-06-281-1/+2
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Changed include folders to work for Bindings, too.Mattes D2014-06-281-3/+3
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Added PolarSSL dependency to Bindings.Mattes D2014-06-271-1/+1
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Removed the md5 library, obsoleted by PolarSSL.Mattes D2014-06-273-19/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1130.
| * | | | | | | | | | | | | | | | Likely fixed too quick food depletionTiger Wang2014-06-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes FS427 properly, hopefully
| * | | | | | | | | | | | | | | | Fixed issue with breaking blocks at -1 coordinatesTiger Wang2014-06-281-6/+1
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Implemented tripwire(s) (hooks)Tiger Wang2014-06-289-17/+324
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #944
| * | | | | | | | | | | | | | | | Added more block exceptions to torchesTiger Wang2014-06-281-0/+4
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Minor change to buttons and leversTiger Wang2014-06-282-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + They now detect if the block they are on occupies its voxel, instead of just being solid
| * | | | | | | | | | | | | | | | Fixed bad water/redstone simulator communicationTiger Wang2014-06-281-32/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #713
| * | | | | | | | | | | | | | | | Fixed server forcing players afloatTiger Wang2014-06-281-1/+4
| | |_|_|_|_|_|/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #1131
| * | | | | | | | | | | | | | | Added generic entity-collecting.Mattes D2014-06-2717-25/+36
| |/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now any cEntity can be collected, not only cPickups. This should help PR #1098.
| * | | | | | | | | | | | | | Merged branch 'howaner/Bow'.Mattes D2014-06-264-23/+61
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed the pickup collection broadcast due to bad code.
| | * | | | | | | | | | | | | | Add comment.Howaner2014-06-261-0/+1
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | GameMode checkHowaner2014-06-261-1/+1
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Merge branch 'master' into BowHowaner2014-06-2678-3424/+5240
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | | derpHowaner2014-06-171-3/+3
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | The same: Float, not DoubleHowaner2014-06-171-1/+1
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Float, not DoubleHowaner2014-06-171-1/+1
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Split Broadcast Sound Effect function call in multiple lines.Howaner2014-06-162-3/+24
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | This isn't neededHowaner2014-06-161-1/+0
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Fix bow sound and creative arrow pickup.Howaner2014-06-162-19/+30
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Add bow charging animationHowaner2014-06-162-2/+6
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Merged branch 'howaner/Pickups'.Mattes D2014-06-262-7/+28
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | | | Fixed a comment and changed CombineCount to short.Howaner2014-06-261-2/+2
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Merge branch 'master' into PickupsHowaner2014-06-264-397/+382
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | |/ / / / / / / / / / / / / / | | | |/| | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Optimize combining.Howaner2014-06-241-3/+3
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Better combining.Howaner2014-06-241-3/+20
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Fix pickup combining over the maximum stack size.Howaner2014-06-242-5/+9
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | FurnaceRecipe parsing: Fixed whitespace removing.Mattes D2014-06-261-1/+1
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Fixed misformed trimming.Mattes D2014-06-261-1/+1
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | FurnaceRecipe: Moved the parsing into separate functions for clarity.Mattes D2014-06-262-60/+68
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | FurnaceRecipe parser: Made the parser more forgiving.Mattes D2014-06-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Errors don't cause a stop in the parsing, but rather just skip the offending line.
| * | | | | | | | | | | | | | | | | FurnaceRecipe parser: Added an else branch, changed to a switch.Mattes D2014-06-261-45/+69
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Merge remote-tracking branch 'origin/furnaceparsing'Mattes D2014-06-262-92/+170
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | | | | Parenthesised comparisonTiger Wang2014-06-231-1/+1
| | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | Merge remote-tracking branch 'origin/furnaceparsing' into furnaceparsingTiger Wang2014-06-222-4/+4
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/FurnaceRecipe.cpp
| | | * | | | | | | | | | | | | | | | | Fixed compile errorsworktycho2014-06-221-2/+2
| | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | SuggestionsTiger Wang2014-06-221-6/+7
| | |/ / / / / / / / / / / / / / / / /
| | * | | | | | | | | | | | | | | | | SuggestionsTiger Wang2014-06-222-40/+30
| | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | Removed debugging codeTiger Wang2014-06-211-1/+0
| | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | Rewrote furnace recipe parserTiger Wang2014-06-212-93/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #110
| * | | | | | | | | | | | | | | | | | Merged branch 'tonibm19/master'.Mattes D2014-06-262-0/+21
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | Added pig riding.tonibm192014-06-202-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now you can ride a pig using a carrot on a stick.
| * | | | | | | | | | | | | | | | | | Merge pull request #1126 from mc-server/BlockInfoInitMattes D2014-06-252-381/+374
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | BlockInfo is now a proper C++ singleton.
| | * | | | | | | | | | | | | | | | | BlockInfo is now a proper C++ singleton.madmaxoft2014-06-252-381/+374
| | | |_|/ / / / / / / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is properly initialized before it is ever used.
| * / | | | | | | | | | | | | | | | Add entity health saving.Howaner2014-06-242-16/+8
| |/ / / / / / / / / / / / / / / /
| * | | | | | | | | | | | | | | | Fixed BlockInfo initialization.madmaxoft2014-06-241-15/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now cBlockInfo is initialized in the getter, instead of "at any time during startup", which included "after it was already needed".
| * | | | | | | | | | | | | | | | Added asserts for cChunk::GetBlockEntity() coords.Mattes D2014-06-241-0/+6
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Fixed crashes in HopperEntity.Mattes D2014-06-241-19/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of the coords were off and some functions were assuming too much. Fixes the crash reported in http://forum.mc-server.org/showthread.php?tid=1497
| * | | | | | | | | | | | | | | | VoronoiMap: Added a missing initializer.madmaxoft2014-06-231-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 68410.
| * | | | | | | | | | | | | | | | Added a (disabled) block meta mirror / rotate test code.madmaxoft2014-06-231-2/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will perform basic sanity checks on block metadata mirroring and rotating. cMetaRotator must disable its asserts in order for this to work.
| * | | | | | | | | | | | | | | | Fixed the slab vertical mirroring.madmaxoft2014-06-231-9/+6
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Fixed sign and lever rotations.madmaxoft2014-06-232-8/+9
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Prefabs don't draw into chunk if they don't intersect.madmaxoft2014-06-231-0/+11
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Merge pull request #1105 from Howaner/BlocksMattes D2014-06-223-4/+18
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | Added door and fence gate sounds.
| | * | | | | | | | | | | | | | | Changed 0xFFFFFFFB to ~0x04Howaner2014-06-221-1/+1
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Merge branch 'master' into BlocksHowaner2014-06-171-2/+1
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | |_|_|_|_|_|_|_|_|_|_|_|/ / | | | |/| | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Fix fence gate sound (Redstone simulator).Howaner2014-06-171-4/+10
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Add fence gate sound.Howaner2014-06-171-0/+1
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Add UNUSED() TagsHowaner2014-06-171-0/+6
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Add door soundHowaner2014-06-171-0/+1
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-06-223-4/+42
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | | | Fixed missing breakworktycho2014-06-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 68409
| | * | | | | | | | | | | | | | | | Fixed invalid iteratorworktycho2014-06-221-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 60408
| | * | | | | | | | | | | | | | | | Added cClientHandle::IsUUIDOnline function.madmaxoft2014-06-212-2/+38
| | | |_|_|_|_|_|_|_|_|_|_|_|_|/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #771
| * | | | | | | | | | | | | | | | Fixed another daylight sensor bugTiger Wang2014-06-221-20/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Additionally fixed unpowering across chunks.
| * | | | | | | | | | | | | | | | Chests don't open if obstructedTiger Wang2014-06-221-0/+13
| |/ / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes FS383
| * | | | | | | | | | | | | | | Added a TestRails generator.madmaxoft2014-06-215-0/+667
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is for debugging purposes only.
| * | | | | | | | | | | | | | | Fixed a caching bug in GridStructGen.madmaxoft2014-06-211-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The elements in cache were queried wrong, so sometimes they wouldn't be used even if they were the ones to use.
| * | | | | | | | | | | | | | | Updated prefabs to the latest Gallery content.madmaxoft2014-06-214-2049/+2644
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Updated all prefabs to current Gallery content.madmaxoft2014-06-202-650/+824
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | MCA saver marks chunks as populated.madmaxoft2014-06-201-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #140.
| * | | | | | | | | | | | | | | Optimized Voronoi calculation.madmaxoft2014-06-204-21/+81
| | |_|/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #818.
| * | | | | | | | | | | | | | Nullify deleted pointers.archshift2014-06-1935-18/+75
| | |_|/ / / / / / / / / / / | |/| | | | | | | | | | | |
| * | | | | | | | | | | | | Merge pull request #1096 from mc-server/redstonerefactorAlexander Harkness2014-06-183-140/+79
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moved delayed repeaters to be handled in a seperate pass
| | * | | | | | | | | | | | | FIxed second weird enumTycho2014-06-161-20/+1
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Refactored reversing logic into seperate functionTycho2014-06-162-16/+16
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fixed tigers weird enumsTycho2014-06-161-14/+6
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Merge branch 'master' into redstonerefactorTycho2014-06-1630-455/+819
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Simulator/IncrementalRedstoneSimulator.cpp
| | * | | | | | | | | | | | | | Moved repeater handling to seperate passTycho2014-06-162-97/+64
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Merge pull request #1045 from Howaner/GlobalFixesMattes D2014-06-1812-61/+158
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Little fixes
| | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' into GlobalFixesHowaner2014-06-17149-1814/+25012
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | |_|/ / / / / / / / / / / / | | | |/| | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Check block type from cBlockEntityHowaner2014-06-171-8/+8
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Add more documentation.Howaner2014-06-171-0/+2
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Add comment.Howaner2014-06-171-0/+1
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Revert "Fix right click bugs."Howaner2014-06-171-41/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 61b6fdde7553dac6e2d5c5a071b9a13fa0d71b2f.
| | * | | | | | | | | | | | | | | The motion is already set in AddBasicEntity()Howaner2014-06-171-5/+0
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Add DoWithBlockEntityAt() to WorldInterface.hHowaner2014-06-174-40/+64
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Wrong arrow commit.Howaner2014-05-301-4/+0
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Code improvementsHowaner2014-05-283-12/+4
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Fix hay place sound.Howaner2014-05-282-1/+31
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Fix fire break.Howaner2014-05-282-18/+19
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Add throw sound and fix arrow server crash.Howaner2014-05-284-5/+16
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Fix Y-Position from arrow entity.Howaner2014-05-281-0/+1
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Fix right click bugs.Howaner2014-05-281-40/+41
| | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Fix skull bugs.Howaner2014-05-282-2/+46
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Merge pull request #1100 from Howaner/Slabsarchshift2014-06-181-0/+1
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / / / / / / / / / | |/| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | Fix doubleslab meta.Howaner2014-06-161-0/+1
| | | |_|_|_|/ / / / / / / / / / | | |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | | | EntityEffects.x -> EntityEffect.x, Object-Oriented effectsarchshift2014-06-1915-320/+748
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed effect map to take a pointer of the effect as a result.
* | | | | | | | | | | | | | | | Entity effects: changed User to Creator, removed pawn pass-by-valuearchshift2014-06-176-36/+20
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Added the OnEntityAddEffect hook.madmaxoft2014-06-177-0/+57
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Entity Effects: Clarified user, added it to AddEntityEffectarchshift2014-06-177-15/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added second AddEntityEffect with a pass-by-value of the class.
* | | | | | | | | | | | | | | | Changed the AddEntityEffect() params for easier calls.madmaxoft2014-06-177-50/+52
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Entity Effect: Separates total duration and ticks of activityarchshift2014-06-173-22/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed HandleEntityEffect to use cEntityEffect's ticks instead of a static counter
* | | | | | | | | | | | | | | | Fixed MSVC compilation.madmaxoft2014-06-173-14/+17
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Pawn: renamed HandleEntityEffects to HandleEntityEffectarchshift2014-06-177-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exported entity effect functions for ToLua and documented them in APIDesc.lua
* | | | | | | | | | | | | | | | Cave spider now poisons its victim, added IsPawn function to Entityarchshift2014-06-175-5/+24
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Added wither damage type, wither entity effect.archshift2014-06-174-1/+21
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Monster: added IsUndead(), undead-specific entity effectsarchshift2014-06-173-6/+71
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Applies splash potion effects to mobs as well as playersarchshift2014-06-172-8/+12
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Removed long function wrappingarchshift2014-06-172-12/+3
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | ItemHandler: changed IsDrinkable() to take a short argumentarchshift2014-06-175-18/+14
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Splash potion: Adjusted speed, fixed spawn positionarchshift2014-06-171-6/+3
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Entity effect type: use 'eff' as a prefix instead of 'ef'archshift2014-06-175-74/+74
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Added splash potion functionalityarchshift2014-06-176-15/+122
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Entity: only fire critical hit if damage type is physicalarchshift2014-06-171-1/+2
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Player: made healing instantaneousarchshift2014-06-172-2/+2
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Implemented drinkable potions, noeffect entity effect,archshift2014-06-178-6/+165
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clears entity effects on death
* | | | | | | | | | | | | | | | Implemented milk, added documentation to Pawn.harchshift2014-06-177-5/+86
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Pawn.cpp: fixed effect iterator BAD_ACCESSarchshift2014-06-172-9/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Erasure was occurring before the iterator increased, causing a bad access. Solved by storing map pairs in variables and manually updating iterator before erasure. Fixed mix-up in function arguments on food poisoning
* | | | | | | | | | | | | | | | Pawn: Enabled entity effect broadcast, added typedefarchshift2014-06-172-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Typedef'd std::map<cEntityEffect::eType, cEntityEffect> to tEffectMap
* | | | | | | | | | | | | | | | EntityEffect: read-only getters, added user and distance modifier fieldsarchshift2014-06-173-11/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | User: the pawn that uses or produces the entity effect (drinks/throws a potion) Distance modifier: the potency modifier from splash potion effectivity radius
* | | | | | | | | | | | | | | | Player: Removed food-poisoning-specific code, set duration to 30 secondsarchshift2014-06-173-27/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://minecraft.gamepedia.com/Hunger#Behavior
* | | | | | | | | | | | | | | | Entity effects: Added handlers for entity effectsarchshift2014-06-174-13/+138
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented hunger, instant health, damage, poison, regen Added "template" entity effect implementations
* | | | | | | | | | | | | | | | Added iterator on tick to manage entity effect durationarchshift2014-06-171-1/+18
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | cPawn: Remove unused m_bBurnablearchshift2014-06-172-2/+0
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Moved Effects.h to EntityEffects.h, added initial implarchshift2014-06-179-36/+115
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Added classes for splash potions and wither skullsarchshift2014-06-175-0/+149
|/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Merge pull request #1101 from Howaner/FenceGateworktycho2014-06-171-2/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / |/| | | | | | | | | | | | | | Fix fence gate redstone simulator.
| * | | | | | | | | | | | | | Fix fence gate redstone simulator.Howaner2014-06-171-2/+1
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #1099 from Howaner/BlocksMattes D2014-06-171-0/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Glass-made blocks don't drop pickups.
| * | | | | | | | | | | | | | | Glass shouldn't drop.Howaner2014-06-161-0/+3
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | | Add parenthesisHowaner2014-06-171-2/+2
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Add end lines to BlockPressurePlate.hHowaner2014-06-171-1/+5
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Add pressure plate handlerHowaner2014-06-173-0/+41
| |/ / / / / / / / / / / / / |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | Fixed GCC compilation.madmaxoft2014-06-161-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Fixed MSVC builds.madmaxoft2014-06-161-9/+0
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Merge pull request #883 from mc-server/CutOffLightingworktycho2014-06-163-16/+96
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lighting reads blocktypes only for blocks under heightmap.
| * | | | | | | | | | | | | Fixed link errorsTycho2014-04-121-0/+9
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed member construction order.madmaxoft2014-04-121-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Lighting reads blocktypes only for blocks under heightmap.madmaxoft2014-04-122-16/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should theoretically speed it up, since less data is copied back and forth. Also implemented a possibly more cache-friendly blocklight starter algorithm (PrepareBlockLight2()), is disabled by default, needs perf testing.
* | | | | | | | | | | | | | Fixed gcc compilation.madmaxoft2014-06-161-1/+1
| |_|_|/ / / / / / / / / / |/| | | | | | | | | | | |
* | | | | | | | | | | | | Merge branch 'master' of github.com:mc-server/MCServerTycho2014-06-1630-455/+820
| |_|/ / / / / / / / / / |/| | | | | | | | | | |
* | | | | | | | | | | | Fix a few warningsTycho2014-06-161-3/+3
| |_|/ / / / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | Fixed bindings generation for Win64 builds.Mattes D2014-06-143-9/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1092.
* | | | | | | | | | | Fixed MSVC Bindings generation.Mattes D2014-06-141-0/+3
| | | | | | | | | | |
* | | | | | | | | | | Remove windows bindings crutchworktycho2014-06-141-10/+0
| |_|_|/ / / / / / / |/| | | | | | | | |
* | | | | | | | | | Fixed a repeater issueTiger Wang2014-06-142-17/+16
| |_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Repeaters now properly continuously update their powering * Minor cosmetic improvements
* | | | | | | | | Reduced cPluginManager code duplicationTiger Wang2014-06-141-286/+178
| | | | | | | | |
* | | | | | | | | Merge pull request #1089 from mc-server/tolua-autoMattes D2014-06-132-84/+85
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | automaticlly build tolua and generate bindings as part of build.
| * | | | | | | | | automaticlly build tolua and generate bindings as part of build.tycho2014-06-122-84/+85
| | |_|_|/ / / / / | |/| | | | | | |
* / | | | | | | | Removed an unused fwd declaration.madmaxoft2014-06-131-1/+0
|/ / / / / / / /
* | | | | | | | Fixed two redstone bugsTiger Wang2014-06-121-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed chunk border powering * Fixed quick place-replace powering
* | | | | | | | Merge pull request #1082 from mc-server/cauldronfixesAlexander Harkness2014-06-121-3/+31
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add biome-aware downfall functions.
| * | | | | | | | Fixed constnessworktycho2014-06-111-5/+5
| | | | | | | | |
| * | | | | | | | Compile fixTiger Wang2014-06-111-1/+1
| | | | | | | | |
| * | | | | | | | Reduced code duplicationTiger Wang2014-06-111-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | call @maxmaxoft! calling... call connected (0:20) call ended
| * | | | | | | | IsWeatherSunnyAt does something useful :DTiger Wang2014-06-111-9/+5
| | | | | | | | |
| * | | | | | | | SMICOLOSLAlexander Harkness2014-06-111-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Meant to be semicolons up there.
| * | | | | | | | Updated unnecessary function :/Tiger Wang2014-06-111-1/+5
| | | | | | | | |
| * | | | | | | | Add DoxyComments to he weather things. Alexander Harkness2014-06-111-7/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | Also changed the function names.
| * | | | | | | | Add new IsWeatherWet hook for cauldrons.Alexander Harkness2014-06-111-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | @madmaxoft can you comment?
* | | | | | | | | Merge pull request #1084 from mc-server/PlankRoadsSTRWarrior2014-06-111-4/+17
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Plank Roads
| * | | | | | | | | Roads in villages are made out of wooden planks if they generate on water.STRWarrior2014-06-111-4/+17
| | | | | | | | | |
* | | | | | | | | | DispenserEntity code cleanup after PR merge.madmaxoft2014-06-112-30/+30
| | | | | | | | | |
* | | | | | | | | | Merge remote-tracking branch 'joannis/master'madmaxoft2014-06-112-19/+91
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | - Fixed a lot of alignmentJoannisO2014-06-051-7/+7
| | | | | | | | | | |
| * | | | | | | | | | - Removed the code that removed fireworks from a dispenser even thoughtJoannisO2014-06-041-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | they weren't launched.
| * | | | | | | | | | - Fixed variable names in a function.JoannisO2014-06-041-2/+2
| | | | | | | | | | |
| * | | | | | | | | | - Fixed a lot of astethicsJoannisO2014-06-042-14/+17
| | | | | | | | | | |
| * | | | | | | | | | - Fixed an issue where there were 2 "DispChunk"-s in the same function.JoannisO2014-06-031-16/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resused the initial one.
| * | | | | | | | | | - Fixed a bug where I didn't return anything in the GetShootVectorJoannisO2014-06-031-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | function. This was however passed as "working" by GCC.
| * | | | | | | | | | - Fixed a bug where I used the FireCharge ITEM instead of the ProjectileJoannisO2014-06-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ENUM
| * | | | | | | | | | - Cleaned up the code massivelyJoannisO2014-06-032-90/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Stopped using cChunk in the GetShootVector class. Parameter is now the Metadata of the block - Stopped using cChunk in the SpawnProjectileFromDispenser method now using coordinates and finding the chunk by itself. - Removed the matrix calculations from GetShootVector.
| * | | | | | | | | | - Added doxy comments and exported to luaJoannis2014-06-032-22/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Manipulation of the ShootVector is not to be done by the function that wants to spawn a projectile.
| * | | | | | | | | | - Changed the name of the ProjectileLookVector method.JoannisO2014-05-312-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note: I still think the new name is unclear. Any other suggestions are welcome.
| * | | | | | | | | | - Prefixed all args with "a_"JoannisO2014-05-292-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added braces around the cases.
| * | | | | | | | | | - Removed breaks. I thought it wouldn't compile without them but theJoannisO2014-05-281-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | issue was appearantly solved with an earlier commit.
| * | | | | | | | | | - Fixed an issue where dispensers would only shoot arrows (appearantlyJoannisO2014-05-281-33/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | some commits didn't come through) - Cleaned up the code according to suggestions.
| * | | | | | | | | | - Implemented vertical dispensing for projectiles.Joannis2014-05-282-16/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixed some terrible commit issues on my side.
| * | | | | | | | | | - Fixed the ampersands and asterisks to fit the format.Joannis2014-05-272-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixed the method "SpawnProjectileFromDispenser" to use CamelCasing.
| * | | | | | | | | | - Added support for more types of projectiles in the DispenserJoannisO2014-05-262-38/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Improved the method of spawning projectiles in the world - Added another method for spawning the projectiles
| * | | | | | | | | | Added Arrow- and FireCharge-Dispensing to DispenserEntity.JoannisO2014-05-262-27/+95
| | | | | | | | | | |
* | | | | | | | | | | Changed the teleport permissions to the new ones.Alexander Harkness2014-06-111-1/+1
| |/ / / / / / / / / |/| | | | | | | | |
* | | | | | | | | | Added cBlockArea:GetCoordRange to Lua API.madmaxoft2014-06-111-0/+32
| | | | | | | | | |
* | | | | | | | | | Revert "Initial Mesa Bryce implementation."madmaxoft2014-06-114-116/+4
| |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 1ff1a93866ab81e3868588a256f446a902a1a8c4.
* | | | | | | | | Removed assert that is now informed by type systemworktycho2014-06-111-1/+0
| | | | | | | | |
* | | | | | | | | Initial Mesa Bryce implementation.madmaxoft2014-06-104-4/+116
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | Fixed clang warnings about abs() in Noise.cpp.madmaxoft2014-06-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MSVC provides a float overload of abs(), clang does not. Using the proper fabs().
* | | | | | | | Fixed a race condition when adding a player to a world.madmaxoft2014-06-103-4/+29
| | | | | | | |
* | | | | | | | Fixed gcc compilation.madmaxoft2014-06-101-2/+2
| | | | | | | |
* | | | | | | | Added an experimental height generator, Mountains.madmaxoft2014-06-092-0/+87
| | | | | | | |
* | | | | | | | Added cRidgedMultiNoise, fixed cPerlinNoise.madmaxoft2014-06-092-1/+233
| | | | | | | |
* | | | | | | | Added Y coord checks and documentation to cBlockDoorHandler.madmaxoft2014-06-091-19/+40
| | | | | | | |
* | | | | | | | Merge remote-tracking branch 'howaner/Redstone'madmaxoft2014-06-093-35/+62
|\ \ \ \ \ \ \ \
| * | | | | | | | Moved the IsDoor check before the meta get.Howaner2014-05-311-2/+1
| | | | | | | | |
| * | | | | | | | Add doxy-commentHowaner2014-05-311-3/+4
| | | | | | | | |
| * | | | | | | | Better SetOpen() and IsOpen() function from the doors.Howaner2014-05-302-77/+27
| | | | | | | | |
| * | | | | | | | Add SetOpen() and IsOpen() to BlockDoor.h and fix door redstone bug.Howaner2014-05-292-13/+90
| |/ / / / / / /
* | | | | | | | ToLua can now be run in pure-lua mode.madmaxoft2014-06-091-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See the src/Bindings/AllToLua_lua.bat for usage example.
* | | | | | | | Fixed a crash when creating negative-size blockareas.madmaxoft2014-06-091-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now the server emits a warning instead and continues execution.
* | | | | | | | Fixed deadlock when moving players to other worlds.Mattes D2014-06-0832-96/+204
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1039, fixes #851
* | | | | | | | Added queue for adding entities to cWorld.Mattes D2014-06-086-7/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This alone doesn't work properly yet, further changes to cPlayer are needed.
* | | | | | | | Proper fix for long interaction.madmaxoft2014-06-081-7/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1078 and #1038.
* | | | | | | | docs/Generator: Added the easy Finishers.madmaxoft2014-06-071-1/+13
| | | | | | | |
* | | | | | | | Added RainbowRoads finisher generator.madmaxoft2014-06-075-3/+1594
| | | | | | | |
* | | | | | | | Further improvements on redstone speedTiger Wang2014-06-073-68/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on suggestions of @worktycho * Repeaters now walk their data structure only when needed * Fixed a bug with cChunkData returning an incorrect value for whether a meta had changed
* | | | | | | | Fixed mob hitbox sizes, removed TODOsarchshift2014-06-073-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Measured bat and blaze in vanilla, updated values. Cavespiders are, in fact, passive in the day.
* | | | | | | | Further reduced redstone idle CPU consumptionTiger Wang2014-06-061-7/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Repeaters and wires are no longer unnecessarily ticked * Fixed #1063, likely addressed #1062 * Fixed bugs regarding duplicate values
* | | | | | | | Redstone fixes and improvements [SEE DESC]Tiger Wang2014-06-053-61/+96
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Haha, see desc. * Improved redstone speed through a marking dirty system. Only a select few devices are still continuously simulated * Fixed redstone crashing with recent piston changes
* | | | | | | | Merge pull request #1011 from SphinxC0re/SomeWarningFixesMattes D2014-06-043-3/+16
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fixed some warnings
| * | | | | | | | Update IncrementalRedstoneSimulator.cppJulian Laubstein2014-06-041-8/+8
| | | | | | | | |
| * | | | | | | | Changed the m_slotarea positionJulian Laubstein2014-05-191-2/+2
| | | | | | | | |
| * | | | | | | | Fixed warnings in IncrementalRedstoneSimulatorJulian Laubstein2014-05-191-1/+7
| | | | | | | | |
| * | | | | | | | Fixed some warnings in Server.cpp, and in UI/Julian Laubstein2014-05-193-3/+11
| | | | | | | | |
| * | | | | | | | Rolled some changes backJulian Laubstein2014-05-191-12/+2
| | | | | | | | |
| * | | | | | | | Fixed some warningsJulian Laubstein2014-05-191-2/+12
| | | | | | | | |
* | | | | | | | | Fix itemframe break.Howaner2014-06-041-1/+3
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | derpworktycho2014-06-041-1/+1
| | | | | | | |
* | | | | | | | Fixed bad coordinateworktycho2014-06-041-1/+1
| | | | | | | |
* | | | | | | | Make sure m_StackSizeToBeUsedInRepair Always has a valid valueworktycho2014-06-041-1/+3
| | | | | | | |
* | | | | | | | Removed unused field testworktycho2014-06-041-1/+0
| | | | | | | |
* | | | | | | | Initialise m_Callbacks field to NULL in empty constructor.worktycho2014-06-041-1/+2
| | | | | | | |
* | | | | | | | Exploded creepers drop nothing, part of #1058Tiger Wang2014-06-041-2/+8
| | | | | | | |
* | | | | | | | Fixed mob loading, part of #1058Tiger Wang2014-06-041-1/+1
| | | | | | | |
* | | | | | | | Fixed #1057Tiger Wang2014-06-041-1/+1
| | | | | | | |
* | | | | | | | Player permissions aren't logged to console anymore.madmaxoft2014-06-031-7/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was only logspam on most servers and there are alternative ways to list players' permissions.
* | | | | | | | Merge remote-tracking branch 'howaner/Inventory'madmaxoft2014-06-032-2/+133
|\ \ \ \ \ \ \ \
| * | | | | | | | Players can't set items in the result slot, when they shift a item.Howaner2014-06-012-0/+39
| | | | | | | | |
| * | | | | | | | Add HandleSmeltItem() call for achievements.Howaner2014-06-011-7/+11
| | | | | | | | |
| * | | | | | | | Missing return;Howaner2014-06-011-0/+1
| | | | | | | | |
| * | | | | | | | Set DraggingItem to Slot directly.Howaner2014-05-311-1/+1
| | | | | | | | |
| * | | | | | | | Fix DBL bug.Howaner2014-05-311-5/+4
| | | | | | | | |
| * | | | | | | | Change "Slot.IsEmpty()" to "Slot.m_ItemCount <= 0"Howaner2014-05-311-1/+1
| | | | | | | | |
| * | | | | | | | Fix the furnace result slot.Howaner2014-05-301-2/+90
| | | | | | | | |
* | | | | | | | | Fixed OnProjectileHitBlock bindings.madmaxoft2014-06-033-82/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also sorted the various cLuaState::Push() functions.
* | | | | | | | | Merge pull request #1028 from mc-server/pistonfixesMattes D2014-06-0315-457/+401
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Piston fixes
| * \ \ \ \ \ \ \ \ Merge remote-tracking branch 'origin/pistonfixes'Tiger Wang2014-06-0215-457/+401
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Chunk.cpp
| | * | | | | | | | | Suggestions twoTiger Wang2014-06-012-10/+12
| | | | | | | | | | |
| | * | | | | | | | | SuggestionsTiger Wang2014-05-291-1/+6
| | | | | | | | | | |
| | * | | | | | | | | More comments!Tiger Wang2014-05-291-5/+4
| | | | | | | | | | |
| | * | | | | | | | | Revert "Fixed a food saturation issue"Tiger Wang2014-05-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 67308e4337b422ebefb249049e662266072b0ba2.
| | * | | | | | | | | Changed block send queue to use vectorsTiger Wang2014-05-293-21/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As suggested by @worktycho.
| | * | | | | | | | | Fixed piston power checkingTiger Wang2014-05-291-11/+6
| | | | | | | | | | |
| | * | | | | | | | | Fixed a food saturation issueTiger Wang2014-05-251-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Hopefully fixed piston duplication issuesTiger Wang2014-05-2515-437/+372
| | | |_|/ / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #879 * Fixes #714
* | | | | | | | | | Merge pull request #1052 from mc-server/UnderwaterBaseGenMattes D2014-06-025-0/+2489
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | Underwater base gen
| * | | | | | | | | Update UnderwaterBase prefabs.madmaxoft2014-06-011-12/+378
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added the waterfall room and the decaying sphere room. Re-tweaked the pieces' weights.
| * | | | | | | | | Updated UnderwaterBase prefabs.madmaxoft2014-06-011-103/+123
| | | | | | | | | |
| * | | | | | | | | Added an initial version of the underwater base generator.madmaxoft2014-05-315-0/+2103
| | | | | | | | | |
* | | | | | | | | | Small tweak for mobsSTRWarrior2014-06-021-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mobs move a bit smoother and aren't able to move allot when in air.
* | | | | | | | | | cBlockArea reading hotfix.madmaxoft2014-06-021-63/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should fix the crashes introduced with chunksparsing. Not the most performant solution, but at least it should work. Ref.: #1056
* | | | | | | | | | Merge pull request #844 from mc-server/ProjectileHitBlockMattes D2014-06-016-9/+9
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | OnProjectileHitBlock tweak.
| * | | | | | | | | | Made a_BlockHitPos a referenceSTRWarrior2014-06-015-6/+6
| | | | | | | | | | |
| * | | | | | | | | | Used recommendationsSTRWarrior2014-05-316-9/+8
| | | | | | | | | | |
| * | | | | | | | | | Using recommendations (I think)STRWarrior2014-03-306-6/+7
| | | | | | | | | | |
| * | | | | | | | | | Added a BlockHitPos parameter to OnProjectileHitBlockSTRWarrior2014-03-306-9/+9
| | | | | | | | | | |
| * | | | | | | | | | Added a blockface parameter to the OnProjectileHitBlock hook.STRWarrior2014-03-306-8/+8
| | | | | | | | | | |
* | | | | | | | | | | abort does not take a parameter.worktycho2014-06-011-2/+2
| | | | | | | | | | |
* | | | | | | | | | | Use abort in SIGSEGV and SIGABRT handlersworktycho2014-06-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should cause Mcserver to generate core dumps when it crashes.
* | | | | | | | | | | Updated AlchemistVillage prefabs.madmaxoft2014-06-011-103/+105
| |/ / / / / / / / / |/| | | | | | | | |
* | | | | | | | | | Merge pull request #1018 from mc-server/VillageGenMattes D2014-05-3125-23/+17115
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Village gen
| * | | | | | | | | | Updated PlainsVillage prefabs.madmaxoft2014-05-311-73/+85
| | | | | | | | | | |
| * | | | | | | | | | Fixed a memory leak in VillagGen.madmaxoft2014-05-311-0/+5
| | | | | | | | | | |
| * | | | | | | | | | Updated PlainsVillage and AlchemistVillage.madmaxoft2014-05-302-239/+1270
| | | | | | | | | | |
| * | | | | | | | | | Fixed a memory leak in cPOCPieceGeneratormadmaxoft2014-05-291-0/+5
| | | | | | | | | | |
| * | | | | | | | | | Merge remote-tracking branch 'origin/master' into VillageGenmadmaxoft2014-05-292-1/+34
| |\ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|/ / | | |/| | | | | | | |
| * | | | | | | | | | Fixed a crash in message formatter.madmaxoft2014-05-281-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code would fail if a message is sent to a player not yet added to a world.
| * | | | | | | | | | Merge branch 'master' into VillageGenmadmaxoft2014-05-2711-64/+140
| |\ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|/ / / | | |/| | | | | | | |
| * | | | | | | | | | Added AlchemistVillage prefabs (Thanks, KingsCraftAu).madmaxoft2014-05-273-9/+3007
| | | | | | | | | | |
| * | | | | | | | | | Fixed testing weights in PlainsVillages.madmaxoft2014-05-271-3/+3
| | | | | | | | | | |
| * | | | | | | | | | cPieceGenerator chooses starting pieces based on weights.madmaxoft2014-05-274-1/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1033.
| * | | | | | | | | | Biome generators: biome lists can contain spaces.madmaxoft2014-05-271-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Fixed prefab test initialization.madmaxoft2014-05-261-0/+3
| | | | | | | | | | |
| * | | | | | | | | | Added support for Miners' Village.madmaxoft2014-05-2510-2234/+4438
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The village contains both prefabs that snap to ground and prefabs that connect strictly via connectors. Fixes #1027.
| * | | | | | | | | | Added Japanese village prefabs.madmaxoft2014-05-245-4/+2442
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'master' into VillageGenMattes D2014-05-2310-17/+160
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Fixed profiling flags for MSVC. Fixed cWither::KilledBy Cleaned up cPlayer::UpdateMovementStats; Wither achievements Fixed MCADefrag compilation. Derp Should have fixed assumptions about entity width. Fixed clanging errors. Implemented cacti damage
| * | | | | | | | | | | Updated plains village prefabs.madmaxoft2014-05-221-186/+171
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Expanded the hitboxes so that houses don't touch each other. Fixed minor visual defects.
| * | | | | | | | | | | Villages have min and max density setting.madmaxoft2014-05-225-17/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also made roads use 3+9 scheme, instead of 3+5, for the house connectors. Fixes #1020.
| * | | | | | | | | | | Updated plains village prefabs.madmaxoft2014-05-221-44/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The DoublePlantBed had sponges in wrong places, plus a few cosmetic fixes.
| * | | | | | | | | | | Changed desert village roads to gravel.madmaxoft2014-05-211-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Added second kind of desert village (FlatRoof).madmaxoft2014-05-213-4/+1535
| | | | | | | | | | | |
| * | | | | | | | | | | Merged branch 'master' into VillageGen.madmaxoft2014-05-1854-323/+1559
| |\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Updated SandVillage prefabs to latest Gallery content.madmaxoft2014-05-181-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes sand village generation.
| * | | | | | | | | | | | Village roads are drawn properly.madmaxoft2014-05-172-8/+35
| | | | | | | | | | | | |
| * | | | | | | | | | | | Village houses are height-adjusted onto the terrain.madmaxoft2014-05-175-7/+67
| | | | | | | | | | | | |
| * | | | | | | | | | | | Updated PlainsVillage prefabs to the latest Gallery contents.madmaxoft2014-05-171-2265/+2892
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed a NULL ptr failure in GridStructGen.madmaxoft2014-05-152-9/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the descendant generator returned a NULL structure, the generator would crash. Now it uses a special cEmptyStructure class instead.
| * | | | | | | | | | | | Changed village generator defaults to more reasonable values.madmaxoft2014-05-151-2/+2
| | | | | | | | | | | | |
| * | | | | | | | | | | | Changed village road generation to use multiple prefabs.madmaxoft2014-05-153-39/+38
| | | | | | | | | | | | |
| * | | | | | | | | | | | VillageGen rewritten using BFSPieceGenerator.madmaxoft2014-05-155-412/+406
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Piece composition is not good yet, the buildings aren't height-adjusted and the road pieces will need special processing. This is mainly for adjusting the per-piece params.
| * | | | | | | | | | | | cPrefab can be constructed in code.madmaxoft2014-05-152-0/+51
| | | | | | | | | | | | |
| * | | | | | | | | | | | VillageGen: Added well placement and the general algorithm description.madmaxoft2014-05-123-6/+152
| | | | | | | | | | | | |
| * | | | | | | | | | | | Initial VillageGen implementation.madmaxoft2014-05-116-0/+5807
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WIP, doesn't generate anything yet. Ref.: 740.
* | | | | | | | | | | | | Merge pull request #951 from worktycho/chunksparsing/structsMattes D2014-05-3124-449/+1072
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ / / / / |/| | | | | | | | | | | | Chunksparsing with segments
| * | | | | | | | | | | | removed NULL assignment to const valueTycho2014-05-301-1/+0
| | | | | | | | | | | | |
| * | | | | | | | | | | | removed unneded addressofTycho2014-05-301-7/+11
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed cChunkData nibble copying.madmaxoft2014-05-301-9/+9
| | | | | | | | | | | | |
| * | | | | | | | | | | | Test failures break into MSVC debugger.madmaxoft2014-05-301-0/+6
| | | | | | | | | | | | |
| * | | | | | | | | | | | Test failures are reported verbosely and into the debug console on Win.madmaxoft2014-05-301-2/+18
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed sign comparison.madmaxoft2014-05-301-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed wrong copy sizes in cChunkData.madmaxoft2014-05-301-10/+10
| | | | | | | | | | | | |
| * | | | | | | | | | | | Attempt at fixing an unresolved symbol in gcc / clang.madmaxoft2014-05-291-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fix bug when a_Idx is not a multiple of SectionBLockCountworktycho2014-05-291-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Derpworktycho2014-05-291-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | fix underflowworktycho2014-05-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Wish c++ could specify saturating unsigned underflow.
| * | | | | | | | | | | | Fixed wrong block sizes for copying / setting.madmaxoft2014-05-292-42/+36
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed Wrong types in nibble sizeofsworktycho2014-05-291-3/+3
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed overflow bugworktycho2014-05-291-6/+9
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added comments, reformatted code.madmaxoft2014-05-296-280/+226
| | | | | | | | | | | | |
| * | | | | | | | | | | | Add commentworktycho2014-05-291-0/+4
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed forgotten changes.madmaxoft2014-05-291-3/+3
| | | | | | | | | | | | |
| * | | | | | | | | | | | cChunkData: Normalized code style.madmaxoft2014-05-282-89/+106
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed cChunkData formatting.madmaxoft2014-05-282-39/+101
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed test globals to work with precompiled headersTycho2014-05-272-16/+36
| | | | | | | | | | | | |
| * | | | | | | | | | | | inject TestGlobals.h correctlyTycho2014-05-241-3/+7
| | | | | | | | | | | | |
| * | | | | | | | | | | | Moved accessors to cpp fileTycho2014-05-242-216/+241
| | | | | | | | | | | | |
| * | | | | | | | | | | | Implemented style changesTycho2014-05-246-92/+95
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'master' into chunksparsing/structsTycho2014-05-2470-1163/+2294
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|/ / / / / | | |/| | | | | | | | | |
| * | | | | | | | | | | | Fixed if spacesTycho2014-05-212-22/+23
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed reversed comparisons to nullTycho2014-05-212-17/+17
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added space to ChunkData.cppTycho2014-05-211-20/+100
| | | | | | | | | | | | |
| * | | | | | | | | | | | Changed cChunkData::SetMeta to return a bool indicating whether the value changedTycho2014-05-212-7/+9
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed stylistic issuesTycho2014-05-214-25/+25
| | | | | | | | | | | | |
| * | | | | | | | | | | | Renamed cChunkBuffer to cChunkDataTycho2014-05-219-67/+67
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed minor style issuesTycho2014-05-213-7/+7
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed issue with types not being defined for an unused parameterTycho2014-05-188-107/+111
| | | | | | | | | | | | |
| * | | | | | | | | | | | derpTycho2014-05-171-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | fixed assignment bugs and Skylight bugTycho2014-05-171-3/+5
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fix assignment ops 2worktycho2014-05-171-3/+8
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fix assignment operatorsworktycho2014-05-171-10/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added several more testsfor arrays and coordinatesTycho2014-05-111-4/+16
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed bug that caused Array Setters to always create segmentsTycho2014-05-111-4/+4
| | | | | | | | | | | | |
| * | | | | | | | | | | | SkyLight defaults to 0xFFTycho2014-05-111-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed a bug in writting zeros to a non-allocated sectionTycho2014-05-112-0/+23
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed stupid errorTycho2014-05-101-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'master' into chunksparsing/structsTycho2014-05-102-1/+15
| |\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Fixed stupid buffer overflow in array setblocksTycho2014-05-102-5/+5
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed bug in setting metasTycho2014-05-102-19/+7
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'master' into chunksparsing/structsTycho2014-05-10102-936/+1998
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Chunk.h
| * \ \ \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' into chunksparsing/structsTycho2014-05-0333-81/+138
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Chunk.cpp
| * | | | | | | | | | | | | | | cCHunkBuffer that compiles with TestGlobals.hTycho2014-05-034-1/+13
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Merge branch 'master' into chunksparsing/structsTycho2014-05-01120-2375/+3985
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Fixed bad commentTycho2014-04-271-1/+1
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Fixed a couple of segfaults and made Free a seperate functionTycho2014-04-272-6/+39
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Added other half of implementationTycho2014-04-271-14/+133
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Fixed issues with gccTycho2014-04-271-6/+7
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Fixed MobProximity Counter to remove chunk copysTycho2014-04-272-5/+4
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Fixed bad mergeTycho2014-04-271-13/+9
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Merge branch 'master' into chunksparsing/structsTycho2014-04-27166-3545/+9240
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Chunk.cpp src/Chunk.h
| * | | | | | | | | | | | | | | | | Implemented Chunk Sparsing with segmentsTycho2014-04-2617-401/+610
| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Fixed bindings for cCompositeChat:SetMessageType().madmaxoft2014-05-301-2/+2
| |_|_|_|_|_|_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Fixed a memory leak in cPrefabPiecePool.madmaxoft2014-05-282-1/+34
| |_|_|_|_|_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pool pieces weren't freed upon pool destruction.
* | | | | | | | | | | | | | | | ClientHandle.cpp: Process look before posarchshift2014-05-271-1/+1
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | ClientHandle.cpp: remove redundant codearchshift2014-05-261-22/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HandlePlayerMoveLook() calls HandlePlayerPos() and HandlePlayerLook() to reduce code redundancy.
* | | | | | | | | | | | | | | | Revert "Add more move checks"madmaxoft2014-05-262-59/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 989312c4e7f517ae324e857cb255211e3fd8bb06.
* | | | | | | | | | | | | | | | Merge pull request #1003 from Howaner/GlobalFixesMattes D2014-05-262-17/+59
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add more move checks
| * | | | | | | | | | | | | | | | Add more move checksHowaner2014-05-162-17/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Invalid X/Y/Z/Stance check (std::isnan) - Illegal stance - Illegal position (32.000.000 is the world size)
* | | | | | | | | | | | | | | | | SEMICOLONS!Alexander Harkness2014-05-251-2/+2
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Update GroupManager.hworktycho2014-05-251-2/+2
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | A fix that is better than #950.Alexander Harkness2014-05-251-5/+15
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge branch 'master' into achievementtranslateTiger Wang2014-05-2510-18/+142
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Entities/Player.cpp
| * | | | | | | | | | | | | | | | Fixed Mineshaft system size.Mattes D2014-05-231-1/+1
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Auto-enlargement for cGridStructGen cache.Mattes D2014-05-231-0/+9
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Fixed datatype conversion warning.Mattes D2014-05-231-2/+2
| | |_|_|_|_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Merge pull request #1015 from mc-server/Statsxdot2014-05-217-15/+130
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | Statistics
| | * | | | | | | | | | | | | | Fixed cWither::KilledByandrew2014-05-212-1/+3
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Cleaned up cPlayer::UpdateMovementStats; Wither achievementsandrew2014-05-207-15/+128
| | | |_|_|_|_|_|_|_|/ / / / / | | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | | Update CompositeChat.hTiger Wang2014-05-201-2/+4
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Update Player.cppAlexander Harkness2014-05-201-19/+19
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Fixed a cactus Y position issueTiger Wang2014-05-191-2/+3
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Simplified cacti conditionsTiger Wang2014-05-191-2/+2
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | cCompositeChat message type is now formattedTiger Wang2014-05-194-5/+13
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Added client translation to achievementsTiger Wang2014-05-194-4/+70
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #1010 from mc-server/cactidamageAlexander Harkness2014-05-193-2/+30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| | | | | | | | | | | | | Implemented cacti damage
| * | | | | | | | | | | | | DerpAlexander Harkness2014-05-191-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Should have fixed assumptions about entity width.Alexander Harkness2014-05-191-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | @madmaxoft can you comment?
| * | | | | | | | | | | | | Fixed clanging errors.Alexander Harkness2014-05-191-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Please @tigerw make sure this is correct.
| * | | | | | | | | | | | | Implemented cacti damageTiger Wang2014-05-183-2/+29
| | |_|_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Implemented cacti damage * Fixed pickup tossing (PR #994 bug)
* | | | | | | | | | | | | There's no "round" function in MSVC2008.madmaxoft2014-05-182-4/+4
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixed datatype truncation in Diff() template.madmaxoft2014-05-181-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #998 from mc-server/StatManagerMattes D2014-05-1824-61/+711
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | | Statistic Manager
| * | | | | | | | | | | | Fixesandrew2014-05-135-20/+23
| | | | | | | | | | | | |
| * | | | | | | | | | | | Movement Statisticsandrew2014-05-126-14/+101
| | | | | | | | | | | | |
| * | | | | | | | | | | | cEntity::Killed(cEntity *) Handler; Achievement triggers; cPlayer::AwardAchievement()andrew2014-05-128-10/+143
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed compilationandrew2014-05-111-0/+2
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed stat serializationandrew2014-05-114-24/+44
| | | | | | | | | | | | |
| * | | | | | | | | | | | Statistic Managerandrew2014-05-1116-43/+448
| | |_|_|_|_|/ / / / / / | |/| | | | | | | | | |
* | | | | | | | | | | | removed the <list> includeJulian Laubstein2014-05-181-1/+0
| | | | | | | | | | | |
* | | | | | | | | | | | Added unload <pluginname> commandJulian Laubstein2014-05-181-5/+9
| | | | | | | | | | | |
* | | | | | | | | | | | Added load cmdJulian Laubstein2014-05-171-5/+29
| | | | | | | | | | | |
* | | | | | | | | | | | Added load command in the cServer classJulian Laubstein2014-05-171-0/+6
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed anvil exp removingtonibm192014-05-161-1/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #994 from Howaner/GlobalFixesMattes D2014-05-155-36/+125
|\ \ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / | |/| | | | | | | | | | Add place/break radius, add dig cancel packet and add item resend on break/place cancel.
| * | | | | | | | | | | Fix compile error.Howaner2014-05-151-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Move radius check.Howaner2014-05-151-25/+40
| | | | | | | | | | | |
| * | | | | | | | | | | Rename HandleBlockDigCancel to FinishDigAnimtion.Howaner2014-05-112-5/+5
| | | | | | | | | | | |
| * | | | | | | | | | | Add block place/break distance check.Howaner2014-05-092-0/+31
| | | | | | | | | | | |
| * | | | | | | | | | | Add DIG_STATUS_CANCELLED packet and add item resend, when a block can't place/break.Howaner2014-05-094-36/+79
| |/ / / / / / / / / /
* | | | | | | | | | | More switch warnings.archshift2014-05-122-7/+34
| | | | | | | | | | |
* | | | | | | | | | | Fixed a few more switch warnings.archshift2014-05-123-32/+35
| | | | | | | | | | |
* | | | | | | | | | | Fixed a warning and a complaint about a never-read variable.archshift2014-05-112-15/+11
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' into SslWebAdminMattes D2014-05-10125-1826/+2692
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / / / | |/| | | | | | | | |
| * | | | | | | | | | Merge pull request #993 from mc-server/GridStructGenMattes D2014-05-1012-838/+581
| |\ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / / / | |/| | | | | | | | | Grid struct gen
| | * | | | | | | | | Merged branch 'master' into GridStructGen.Mattes D2014-05-099-31/+38
| | |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | | Removed unused constants from MineShafts and Ravines.Mattes D2014-05-092-9/+0
| | | | | | | | | | | |
| | * | | | | | | | | | Removed an unused NetherFortGen variable.Mattes D2014-05-091-6/+0
| | | | | | | | | | | |
| | * | | | | | | | | | Removed an unused macro.Mattes D2014-05-091-7/+0
| | | | | | | | | | | |
| | * | | | | | | | | | Ravines rewritten using cGridStructGen.Mattes D2014-05-092-182/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #987.
| | * | | | | | | | | | cWormNestCaves rewritten using cGridStructGen.Mattes D2014-05-092-223/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #987.
| | * | | | | | | | | | Mineshafts generator rewritten to use GridStructGen.Mattes D2014-05-092-156/+33
| | | | | | | | | | | |
| | * | | | | | | | | | Fixed cGridStructGen.Mattes D2014-05-081-18/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now cNetherFortGen works with the new architecture.
| | * | | | | | | | | | Merge branch 'master' into GridStructGenMattes D2014-05-0884-344/+1148
| | |\ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | Fixed MSVC 64-bit build warnings.Mattes D2014-05-0846-156/+173
| | | | | | | | | | | | |
| | * | | | | | | | | | | cNetherFortGen uses cGridStructGen.madmaxoft2014-05-075-264/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WIP, this doesn't work properly yet.
| | * | | | | | | | | | | Initial cPrefabPiecePool refactoring.madmaxoft2014-05-072-0/+196
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #986.
| | * | | | | | | | | | | Initial cGridStructGen refactoring.madmaxoft2014-05-062-0/+262
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #987.
| * | | | | | | | | | | | Fixed the console saying no plugins are loaded.STRWarrior2014-05-101-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed compile problem.STRWarrior2014-05-101-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | A portal block now chooses a number between 2000 and 0STRWarrior2014-05-101-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Each time a portal block receives a tick it has a 1 in 500 chance of spawning a zombie pigman.STRWarrior2014-05-101-0/+14
| | |_|_|/ / / / / / / / | |/| | | | | | | | | |
| * | | | | | | | | | | Merge pull request #992 from mc-server/coverity_fixesMattes D2014-05-092-1/+9
| |\ \ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / / | |/| | | | | | | | | | Coverity fixes
| | * | | | | | | | | | Range Check on schematic sizeworktycho2014-05-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 55830
| | * | | | | | | | | | Check the height and width values read.worktycho2014-05-091-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 55831
| * | | | | | | | | | | Fixed size_t in FireworksSerializer.Mattes D2014-05-091-2/+2
| | | | | | | | | | | |
| * | | | | | | | | | | Fixed message formatting.Mattes D2014-05-091-2/+2
| | | | | | | | | | | |
| * | | | | | | | | | | Even more size_t fixes.Mattes D2014-05-091-4/+4
| | | | | | | | | | | |
| * | | | | | | | | | | More size_t fixes.Mattes D2014-05-092-6/+6
| | | | | | | | | | | |
| * | | | | | | | | | | Build fixes after the last size_t batch.Mattes D2014-05-096-15/+15
| | | | | | | | | | | |
| * | | | | | | | | | | World pre-generation distance is settable in world.ini.Mattes D2014-05-091-2/+6
| | | | | | | | | | | |
| * | | | | | | | | | | Lighting thread disabled its chunkstays before deleting them.Mattes D2014-05-091-0/+2
| | | | | | | | | | | |
| * | | | | | | | | | | Fixed MSVC 64-bit build warnings.Mattes D2014-05-0946-156/+173
| |/ / / / / / / / / /
| * | / / / / / / / / Initialise m_HasTeleported in both constructorsworktycho2014-05-091-0/+1
| | |/ / / / / / / / | |/| | | | | | | |
| * | | | | | | | | Merge pull request #989 from Howaner/AnvilMattes D2014-05-079-55/+118
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix ...
| | * | | | | | | | | Missing commaHowaner2014-05-071-2/+2
| | | | | | | | | | |
| | * | | | | | | | | Send item back to the client when the item get damage.Howaner2014-05-071-0/+1
| | | | | | | | | | |
| | * | | | | | | | | Change m_RepairCost to int.Howaner2014-05-076-16/+10
| | | | | | | | | | |
| | * | | | | | | | | Where is the problem with clang?Howaner2014-05-071-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix anvil bugs.Howaner2014-05-078-57/+125
| | | | | | | | | | |
| * | | | | | | | | | Merge pull request #853 from Howaner/SlabsMattes D2014-05-0710-4/+53
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Grass now grows under up-side-down slabs
| | * | | | | | | | | | Superfluous method override.Howaner2014-05-071-6/+0
| | | | | | | | | | | |
| | * | | | | | | | | | Add lava and water check to block handlers.Howaner2014-05-072-2/+14
| | | | | | | | | | | |
| | * | | | | | | | | | Rename CanChangeDirtToGrass to CanDirtGrowGrassHowaner2014-05-076-9/+9
| | | | | | | | | | | |
| | * | | | | | | | | | Merge branch 'master' into SlabsHowaner2014-05-07242-5938/+14161
| | |\ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | Remove old importHowaner2014-04-062-3/+2
| | | | | | | | | | | | |
| | * | | | | | | | | | | Merge branch 'master' into SlabsHowaner2014-04-0653-328/+514
| | |\ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | Add CanChangeDirtToGrass function to Block Handlers.Howaner2014-04-069-4/+45
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Merge branch 'master' into SlabsHowaner2014-04-03292-3468/+12905
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Blocks/BlockDirt.h
| | * | | | | | | | | | | | | Remove old functionHowaner2014-04-031-6/+0
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Grass now grows under up-side-down slabsHowaner2014-04-031-3/+12
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fix MagmaCube save.Howaner2014-05-072-3/+9
| | |_|_|/ / / / / / / / / / | |/| | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed wires powering wires diagonally below themTiger Wang2014-05-071-5/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge pull request #985 from Howaner/AnvilMattes D2014-05-0616-3/+671
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|/ / / / / / / / / | | |/| | | | | | | | | | | Add anvil inventory.
| | * | | | | | | | | | | | Rename CanRepairWithItem to CanRepairWithRawMaterial and rename Size() to Count()Howaner2014-05-069-34/+33
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Simplified the HandleAnvilItemName() code.Howaner2014-05-061-7/+2
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Change int to size_t return.Howaner2014-05-052-3/+3
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Fix SetRepairedItemName() in SlotArea.cppHowaner2014-05-051-1/+1
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add comments to CanTakeResultItem()Howaner2014-05-051-5/+5
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add doxycomments to cSlotAreaAnvil functions.Howaner2014-05-051-0/+2
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Changed HandleAnvilItemName() length to size_t in ClientHandle.hHowaner2014-05-051-1/+1
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add anvil shift click.Howaner2014-05-052-5/+86
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | This isn't a enchantment table :DHowaner2014-05-051-1/+1
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add clicks, exp subtraction, item check, ...Howaner2014-05-057-18/+210
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add MC|ItemName plugin message.Howaner2014-05-056-8/+51
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add anvil window and slot area.Howaner2014-05-0513-0/+356
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge pull request #927 from mc-server/fixesMattes D2014-05-0612-155/+160
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | Small fixes
| | * | | | | | | | | | | | Merge branch 'master' into fixesTiger Wang2014-05-0619-506/+704
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Vector3.h
| | * | | | | | | | | | | | Suggestions'd #2Tiger Wang2014-05-062-1/+6
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Suggestions'dTiger Wang2014-05-063-7/+11
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | A bit of reformatting.madmaxoft2014-05-021-5/+10
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Merge branch 'master' into fixes.madmaxoft2014-05-02162-2490/+4545
| | |\ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | A tiny speed improvement in ApplyFoodExhaustion()Tiger Wang2014-04-271-5/+5
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | More comments!Tiger Wang2014-04-272-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Also fixed a potential issue with position sending - if someone moved slowly enough, their position would never be updated.
| | * | | | | | | | | | | | | Implemented suggestionsTiger Wang2014-04-241-7/+6
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Merge branch 'master' into fixesTiger Wang2014-04-2472-527/+2943
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/World.h
| | * | | | | | | | | | | | | | Some change to Entity.cppTiger Wang2014-04-237-123/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added comments to BroadcastMovementUpdate() and the collision tracer
| | * | | | | | | | | | | | | | Small changesTiger Wang2014-04-234-12/+15
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Changed cPieceGenerator to support pairings.madmaxoft2014-05-053-57/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #982.
| * | | | | | | | | | | | | | | Prefabs can specify that they don't want flooring.madmaxoft2014-05-051-30/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the flag was ignored.
| * | | | | | | | | | | | | | | Fixed a flipped condition in cBlockArea::Merge().madmaxoft2014-05-051-2/+2
| | |_|_|/ / / / / / / / / / / | |/| | | | | | | | | | | | |
| * | | | | | | | | | | | | | Merge pull request #978 from mc-server/VectorAssignmentOperatorMattes D2014-05-051-12/+32
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Vector3 warning fixes
| | * | | | | | | | | | | | | | Removed convert-assign operator.madmaxoft2014-05-041-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We want all conversions to be explicit, not hidden.
| | * | | | | | | | | | | | | | Removed the controversial Vector3::operator <.madmaxoft2014-05-031-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It hasn't been used in any C++ code and Lua doesn't need it.
| | * | | | | | | | | | | | | | Fixed float comparison warnings in Vector3.madmaxoft2014-05-031-5/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There's a bitwise comparison (Equals), and there's Eps-based comparison (EqualsEps).
| | * | | | | | | | | | | | | | Implemented a true assignment operator for Vector3.madmaxoft2014-05-031-1/+9
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | Attempted fix for CLang warnings in Vector3.h.madmaxoft2014-05-021-1/+9
| | | |_|_|_|_|_|_|_|_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | C++11 seems to have deprecated classes that have custom copy-constructor but not a custom assignment operator.
| * | | | | | | | | | | | | | Fixed crash on creating a world during plugin initialisationworktycho2014-05-051-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed formattingTiger Wang2014-05-051-4/+5
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed 027efe09ea3d3222c3cbf169643e57773c1614aeTiger Wang2014-05-041-3/+49
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Merge branch 'master' into redstoneimprovementsTiger Wang2014-05-04133-2294/+3963
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ClientHandle.cpp src/Entities/FallingBlock.cpp src/Mobs/AggressiveMonster.cpp src/Simulator/IncrementalRedstoneSimulator.cpp
| | * | | | | | | | | | | | | | Fixed pressure plate oversightsTiger Wang2014-05-041-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed stone pressure plates not checking for the correct distance for players * Fixed pressure plates in general not link powering the blocks beneath them
| | * | | | | | | | | | | | | | Fixed portal Z direction loop coding failureTiger Wang2014-05-041-10/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed portals created in the ZP/ZM direction eating its frame * Changed return type of a function
| | * | | | | | | | | | | | | | Hotfixed Chunked transfer encoding in Yggdrasil.madmaxoft2014-05-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By using HTTP/1.0, we're disabling the support for the Chunked encoding on the server. This is a hotfix for #979, a proper parser implementation is still needed.
| | * | | | | | | | | | | | | | Fixed connection encryption.madmaxoft2014-05-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #975.
| | * | | | | | | | | | | | | | Fixed vanilla fluid simulator.madmaxoft2014-05-031-4/+1
| | |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #919.
| | * | | | | | | | | | | | | Fixed vanilla fluid simulator.madmaxoft2014-05-024-14/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #919.
| | * | | | | | | | | | | | | Fixed a buffer overflow in cChunk:SetLight().madmaxoft2014-05-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are only half as many bytes for light than there are blocktypes.
| | * | | | | | | | | | | | | Open files in shared mode on windows, so that other tools may read them.madmaxoft2014-05-021-2/+2
| | | |_|/ / / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was the behavior before fopen_s() was used for implementation; unlike fopen(), fopen_s() opens the file in exclusive mode.
| | * | | | | | | | | | | | Fixed MagmaCube spawning.madmaxoft2014-05-021-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #928.
| | * | | | | | | | | | | | Added a sanitizer for Spawn egg damage value.madmaxoft2014-05-021-1/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This disallows spawning unknown mobs from unknown spawn eggs. Ref.: #928.
| | * | | | | | | | | | | | HOOK_DISCONNECT has cClientHandle as its first parameter.madmaxoft2014-05-026-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #655.
| | * | | | | | | | | | | | Fixed warnings in ManualBindings.madmaxoft2014-05-011-20/+20
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Fixed warnings in Lua helpers.madmaxoft2014-05-012-3/+3
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed lever and button powering directionTiger Wang2014-05-041-16/+8
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Redstone simulator now directly accesses cChunkTiger Wang2014-04-2710-453/+586
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Redstone simulator performance improvements * Added return values to some functions * Minor fixes
* | | | | | | | | | | | | | Client cert is not requested.Mattes D2014-05-101-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Fixed an extra space.madmaxoft2014-05-061-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | WebAdmin outputs a log message about HTTP / HTTPS status.madmaxoft2014-05-021-18/+31
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merged branch 'master' into SslWebAdmin.madmaxoft2014-05-0117-31/+34
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / / / | |/| | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed a warning in Noise.madmaxoft2014-05-011-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | More ClientHandle fixes.madmaxoft2014-05-012-3/+3
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed warnings in ClientHandle.madmaxoft2014-05-018-9/+9
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed warnings in cByteBuffer.madmaxoft2014-05-012-14/+14
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed warning in BlockID.madmaxoft2014-05-011-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed warnings in cBlockArea.madmaxoft2014-05-011-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed warnings in FastNBT.madmaxoft2014-05-011-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed warning in cCallbackSslContext::cDataCallbacks.madmaxoft2014-05-011-0/+3
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed warning in cBlockArea.madmaxoft2014-05-011-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge branch 'master' into SslWebAdminmadmaxoft2014-05-013-1/+12
|\| | | | | | | | | | | | |
| * | | | | | | | | | | | | Removed the explicit copy constructor for cItem.madmaxoft2014-05-011-0/+6
| | |_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The compiler generates an implicit one with the same contents and warns about it. The function left in for ToLua to generate the binding for it.
| * | | | | | | | | | | | Fixed MSVC2013 compilation.Mattes D2014-05-011-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Anvil saver pads data to 4K boundaries.madmaxoft2014-05-011-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #524.
* | | | | | | | | | | | | Added a missing return statement.madmaxoft2014-05-011-0/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | cSslContext has virtual destructor now.madmaxoft2014-05-011-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Renamed PublicKey to CryptoKey in CMakeLists.txtMattes D2014-05-011-3/+2
| | | | | | | | | | | | |
* | | | | | | | | | | | | Renamed cPublicKey to cCryptoKey.madmaxoft2014-05-019-41/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The class can hold both the private key and the public key, bad naming on PolarSSL's part. Also somewhat fixed the cert and key loading in cHTTPServer.
* | | | | | | | | | | | | Fixed crashes in the SSL HTTP connection.madmaxoft2014-05-019-23/+36
| | | | | | | | | | | | |
* | | | | | | | | | | | | Implemented SSL connection for WebAdmin.madmaxoft2014-05-014-2/+191
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes FS-319.
* | | | | | | | | | | | | Fixed HTTP message parsing, prepared for SSL.madmaxoft2014-05-012-3/+4
| | | | | | | | | | | | |
* | | | | | | | | | | | | Added a (disabled) test of low-security ciphersuites.madmaxoft2014-05-011-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enabling this allows the connection to be sniffed and decoded using Wireshark, when given the SSL private key.
* | | | | | | | | | | | | Fixed BufferedSslContext's buffer reading and writing.madmaxoft2014-05-011-2/+2
| | | | | | | | | | | | |
* | | | | | | | | | | | | cSslContext supports setting own cert / privkey.madmaxoft2014-05-015-7/+187
| | | | | | | | | | | | |
* | | | | | | | | | | | | Added cBufferedSslContext implementation.madmaxoft2014-05-012-20/+51
|/ / / / / / / / / / / /
* | | | | | | | | | | | If webadmin.ini doesn't exist, example one is written immediately.madmaxoft2014-04-301-0/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed a warning when an empty item is being created.madmaxoft2014-04-301-1/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Ladders set as transparent.madmaxoft2014-04-301-0/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Removed the unused cBlockingTCPLink class.madmaxoft2014-04-303-171/+0
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #965 from mc-server/SslWrappersMattes D2014-04-3038-857/+2089
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Ssl wrappers
| * | | | | | | | | | | | Removed unneeded #includes.madmaxoft2014-04-291-6/+0
| | | | | | | | | | | | |
| * | | | | | | | | | | | Moved the rest of the Crypto objects into their own respective files.madmaxoft2014-04-2913-422/+465
| | | | | | | | | | | | |
| * | | | | | | | | | | | Moved cPublicKey to its separate file in PolarSSL++.madmaxoft2014-04-296-109/+124
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'master' into SslWrappersmadmaxoft2014-04-293-12/+29
| |\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Added BiomeToString() API function.madmaxoft2014-04-292-81/+106
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Added missing initialization.madmaxoft2014-04-291-2/+5
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Moved cRsaPrivateKey to PolarSSL++, rewritten using existing objects.madmaxoft2014-04-299-225/+244
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merged branch 'master' into SslWrappers.madmaxoft2014-04-28106-1343/+2177
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Added the G1 root cert.madmaxoft2014-04-281-2/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now the authenticator finally works.
| * | | | | | | | | | | | | | Added a debug cert printing function.madmaxoft2014-04-282-0/+65
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Reordered constructors.madmaxoft2014-04-271-2/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed a late-night typo.madmaxoft2014-04-271-2/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Rewritten cAuthenticator to use the new PolarSSL++ wrapper classes.madmaxoft2014-04-271-91/+45
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | PolarSSL wrappers for the SSL context.madmaxoft2014-04-2710-5/+847
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | cSocket creates the socket in Connect if no socket is present yet.madmaxoft2014-04-271-2/+8
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed C++11 check for SharedPtr.madmaxoft2014-04-251-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Added shared_ptr handling for C++03 mode.madmaxoft2014-04-251-3/+7
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Replaced MSVC-specific decorators with our universal ones.madmaxoft2014-04-242-2/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | cByteBuffer uses void * instead of char * in data interface.madmaxoft2014-04-242-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it compatible with any pointer type.
| * | | | | | | | | | | | | | Declared a SharedPtr that hopefully resolves on all platforms.madmaxoft2014-04-241-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MSVC2008 has it in std::tr1, all the others in std.
| * | | | | | | | | | | | | | Fixed filename case.madmaxoft2014-04-241-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Attempted CMake inclusion for PolarSSL++.madmaxoft2014-04-242-2/+19
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Authenticator uses some C++ SSL objects.madmaxoft2014-04-241-19/+40
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Initial C++ SSL classes.madmaxoft2014-04-247-2/+248
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Delayed sending the KeepAlive packet for 3 seconds after login.madmaxoft2014-04-291-0/+5
| |_|/ / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should alleviate #889.
* | | | | | | | | | | | | | Added BiomeToString() API function.madmaxoft2014-04-292-81/+106
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Disabled MSVC warnings about constant bool expressions.madmaxoft2014-04-281-2/+19
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Hopefully fixed repeated clang warnings.madmaxoft2014-04-281-9/+9
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Fixed a MSVC warning.madmaxoft2014-04-281-1/+1
| |/ / / / / / / / / / / / |/| | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #940 from Howaner/GlobalFixesMattes D2014-04-2826-68/+132
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add entity invulnerable
| * | | | | | | | | | | | | Revert "Withers now use the new invulnerable."Howaner2014-04-282-10/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 619592b5a0ab651e714d55932bc7909e4204cee9.
| * | | | | | | | | | | | | Revert "Changed the old invulnerable methods from the wither to the new."Howaner2014-04-285-28/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit d50f8f6f11f69e7e1e56be92fb2d72a5014a3e34.
| * | | | | | | | | | | | | Changed the old invulnerable methods from the wither to the new.Howaner2014-04-265-4/+28
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Withers now use the new invulnerable.Howaner2014-04-262-26/+10
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | FixesHowaner2014-04-268-23/+26
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Change m_InvulnerableTicks description again again :DHowaner2014-04-261-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Change m_InvulnerableTicks description again.Howaner2014-04-261-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Change m_InvulnerableTicks descriptionHowaner2014-04-261-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'master' into GlobalFixesHowaner2014-04-261-7/+34
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Add entity invulnerableHowaner2014-04-2622-50/+111
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Fixed braces.madmaxoft2014-04-281-1/+5
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Fixed missing return value warning in MSVC.madmaxoft2014-04-281-0/+1
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge remote-tracking branch 'worktycho/master'madmaxoft2014-04-287-177/+225
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Removed static from combinators.Tycho2014-04-281-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | THis allows us to use the functions in template params at the cost of polluting the global namespace.
| * | | | | | | | | | | | | | Fixed unbraced ifsTycho2014-04-281-10/+40
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Removed inlines from combinatorsTycho2014-04-281-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gcc requires external linkage for functions provided to template parameters
| * | | | | | | | | | | | | | Template MagicTycho2014-04-284-173/+183
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed need to allocate a fake meta block by using templates to provide a version of the code that does not use metas. Also changed the function to a template argument to make sure that the compilier is able to inline it.
| * | | | | | | | | | | | | | Worked around const pointerTycho2014-04-271-2/+3
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixes to uninitallsed array access in Noise.cppTycho2014-04-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CID 43634, 43634
| * | | | | | | | | | | | | | Initalize counter in fastrandomTycho2014-04-271-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 43622
| * | | | | | | | | | | | | | Initialised MetaArrays in BlockAreaTycho2014-04-271-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CID 43621
| * | | | | | | | | | | | | | Removed unneeded assertTycho2014-04-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed CID 43610
* | | | | | | | | | | | | | | Merge pull request #954 from mc-server/projectiles-splitMattes D2014-04-2827-857/+932
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Totally refactored ProjectileEntity.h, splitting up into several files.
| * | | | | | | | | | | | | | | Fixed projectile source filenames, indentationsarchshift2014-04-2826-80/+80
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fixed ToLua errors, added newlinesarchshift2014-04-2718-19/+19
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fixed ToLua issuesarchshift2014-04-279-19/+24
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Moved cFireworkEntity out of ProjectileEntity.harchshift2014-04-275-115/+116
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Moved cGhastFireballEntity out of ProjectileEntity.harchshift2014-04-276-74/+85
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Moved cFireChargeEntity out of ProjectileEntity.harchshift2014-04-276-82/+90
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Moved cThrownSnowballEntity out of ProjectileEntity.harchshift2014-04-275-74/+84
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Moved cExpBottleEntity out of ProjectileEntity.harchshift2014-04-274-52/+61
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Moved cThrownEnderPearl out of ProjectileEntity.harchshift2014-04-275-86/+95
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Moved cThrownEggEntity out of ProjectileEntity.harchshift2014-04-275-91/+100
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Moved cArrowEntity out of ProjectileEntity.harchshift2014-04-2710-284/+297
| | |_|_|_|/ / / / / / / / / / | |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | | Fixed warnings.madmaxoft2014-04-272-2/+3
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Fixed player spawning #953.madmaxoft2014-04-271-1/+4
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #958 from worktycho/bugfixMattes D2014-04-273-8/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bugfix
| * | | | | | | | | | | | | | | Removed Old AssertsTycho2014-04-271-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed asserts about non-negative numbers on what are now unsigned types Fixes CID 43608
| * | | | | | | | | | | | | | | Removed old unused codeTycho2014-04-271-5/+0
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fixed OnPluginMessage hook not exiting early.Tycho2014-04-271-1/+1
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OnPluginMessage hook would call all plugins even after one returned true. Fixes CID 43512
* | | | | | | | | | | | | | | Merge pull request #959 from mc-server/fixes-2worktycho2014-04-274-2/+7
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | Coverity fixes
| * | | | | | | | | | | | | | Revert "Creative players cannot throw ender pearls."archshift2014-04-271-16/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 75bb36574b4bb78e8b5975bf905a97402fd8a4bb.
| * | | | | | | | | | | | | | Creative players cannot throw ender pearls.archshift2014-04-271-0/+16
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Added static const, initialized fields.archshift2014-04-274-2/+7
| |/ / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #864 from mc-server/StatMattes D2014-04-272-0/+255
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Statistic/Achievement defs
| * | | | | | | | | | | | | | Added some commentsandrew2014-04-272-2/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Statistic/Achievement defsandrew2014-04-072-0/+255
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Another attempt at #889.madmaxoft2014-04-271-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The packet was being sent after the state was adjusted, so another thread *may* have sent another packet in the meantime.
* | | | | | | | | | | | | | | Merge pull request #948 from jfhumann/staticFixesMattes D2014-04-275-3/+49
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | Fixes motivated by Coverity #1
| * | | | | | | | | | | | | | Fixed unitialized member in gZipFile (CID 43673)jfhumann2014-04-261-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed a memory leak in tolua_cWorld_ChunkStay. (CID 43618)jfhumann2014-04-261-1/+4
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixes resource leaks in the yggdrasil authenticator. (CID 43617)jfhumann2014-04-261-0/+33
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fix for minor resource leak (CID 43616)jfhumann2014-04-261-1/+9
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Should fix CIDs 43631, 43632 and 43633jfhumann2014-04-251-0/+2
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #941 from archshift/masterMattes D2014-04-2619-174/+172
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|/ / / |/| | | | | | | | | | | | | | Fixed lots of warnings, and other small changes.
| * | | | | | | | | | | | | | More small fixes.archshift2014-04-263-11/+11
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Moar alignment.archshift2014-04-261-7/+7
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Further refactored, Reverted Minecart changearchshift2014-04-2611-90/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Other small changes.
| * | | | | | | | | | | | | | Fixed mobs that don't naturally spawn.archshift2014-04-263-7/+11
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Moved switch{} out of GetArmorCoverAgainst().archshift2014-04-262-5/+29
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Removed unused assignments.archshift2014-04-263-6/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed a couple more warnings.archshift2014-04-262-21/+17
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Moved the weather picker out of TickWeather(), squashing a warning and improving readability.archshift2014-04-262-25/+30
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Removed impossible default case.archshift2014-04-261-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed a warning.
| * | | | | | | | | | | | | | Removed extraneous switch{} in Start()archshift2014-04-262-17/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed a warning.
| * | | | | | | | | | | | | | Moved huge conditional out of InStateChasing(), improving readabilityarchshift2014-04-262-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed a warning.
| * | | | | | | | | | | | | | Merge remote-tracking branch 'upstream/master'archshift2014-04-2518-17/+201
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | Small changes; warning fixing.archshift2014-04-256-14/+12
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Oops, fixed that.archshift2014-04-251-0/+2
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Giants!archshift2014-04-252-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed mfMaxplusone to mfUnhandled for readability, and fixed a default case warning.
| * | | | | | | | | | | | | | | Refactored SendChat(), placing the message-type formatting into its own function.archshift2014-04-252-84/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed default case warning in the process.
* | | | | | | | | | | | | | | | Merge pull request #863 from mc-server/chunkysparsingMattes D2014-04-263-67/+166
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / / / / / |/| | | | | | | | | | | | | | | Chunky sparsing
| * | | | | | | | | | | | | | | Implemented commentsTiger Wang2014-04-253-33/+52
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fixed indentTiger Wang2014-04-241-1/+1
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Another small speed improvement?Tiger Wang2014-04-241-12/+2
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Implemented suggestionsTiger Wang2014-04-242-89/+16
| | |_|_|_|_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | |
| * | | | | | | | | | | | | | Replaced all the .data() calls so the code compiles in VS2008Tycho2014-04-101-5/+5
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Maybe speed improvements?Tiger Wang2014-04-072-48/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use a single index to determine from when to begin copying data * Use heightmap to determine first nonair block
| * | | | | | | | | | | | | | Attempt to fix errorsTiger Wang2014-04-072-12/+12
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Blocklight and skylight now compressedTiger Wang2014-04-073-32/+90
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Nibbletypes are compressedTiger Wang2014-04-053-18/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Added nibble compression * Fixed an off by one
| * | | | | | | | | | | | | | Speed and memory improvementsTiger Wang2014-04-042-62/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Changed array to be continuous, so no more layer splitting
| * | | | | | | | | | | | | | Merge remote-tracking branch 'origin/master' into chunkysparsingTiger Wang2014-04-03138-955/+5608
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | Fixed some bugsTiger Wang2014-04-031-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed undefined behaviour * Fixed compression failure
| * | | | | | | | | | | | | | | Performance improvements and chunk flipping fixedTiger Wang2014-04-021-30/+32
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Sort of implementation of chunk sparsingTiger Wang2014-03-232-18/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issues: * Chunks are flipped * Slow/inefficient/badly coded * Only blocktypes are 'compressed'
* | | | | | | | | | | | | | | | Merge pull request #920 from axisd/masterMattes D2014-04-251-7/+34
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / / / / / / / |/| | | | | | | | | | | | | | | Mobs shouldn't burn when it's Raining
| * | | | | | | | | | | | | | | Fix formattingr.ramazanov2014-04-251-9/+15
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fix for clangr.ramazanov2014-04-251-5/+1
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Mobs shouldn't burn when it's Raining & Mob Knockback is far too muchr.ramazanov2014-04-251-8/+5
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerr.ramazanov2014-04-2512-23/+17
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' of https://github.com/mc-server/MCServerr.ramazanov2014-04-243-8/+31
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' of https://github.com/mc-server/MCServerr.ramazanov2014-04-2356-521/+1252
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | Mobs shouldn't burn when it's Raining #906r.ramazanov2014-04-231-9/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mob Knockback is far too much #776
| * | | | | | | | | | | | | | | | | | Mobs shouldn't burn when it's Raining #906r.ramazanov2014-04-211-5/+12
| | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | Merge pull request #935 from archshift/projectile-fixesMattes D2014-04-252-7/+69
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Chicken eggs and ender pearls can hit entities.
| * | | | | | | | | | | | | | | | | | | Creator not user.archshift2014-04-252-5/+5
| | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | Comments for TrySpawnChicken() and TeleportUser().archshift2014-04-251-0/+2
| | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | Rename spawn chicken method, Initialize m_HasTeleported.archshift2014-04-252-4/+5
| | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | Chicken eggs and ender pearls can hit entities.archshift2014-04-252-7/+66
| | |_|_|_|_|_|/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed warning by adding dedicated m_HasTeleported for fired arrows.
* | | | | | | | | | | | | | | | | | | Missed these CMakeLists.archshift2014-04-252-1/+7
| |_|_|_|_|_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Cmake generated projects for IDEs include headers in project files.archshift2014-04-2512-0/+12
| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Merge pull request #932 from Howaner/InventoryMattes D2014-04-256-17/+189
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | Fix armor in survival mode.
| * | | | | | | | | | | | | | | | | Add commit what the code is doing.Howaner2014-04-251-0/+1
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Add unkown armor warning and fix armor stacks.Howaner2014-04-251-2/+14
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Add armor to switch() in ItemHandler.cppHowaner2014-04-242-7/+26
| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Fix armor in survival mode.Howaner2014-04-246-17/+157
| | |_|_|/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #929 from archshift/masterMattes D2014-04-2410-21/+15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / / / / / / | |/| | | | | | | / / / / / / / / | |_|_|_|_|_|_|_|/ / / / / / / / |/| | | | | | | | | | | | | | | Renamed mob source files to better fit the CamelCase naming style.
| * | | | | | | | | | | | | | | Fixed class capitalization for the cave spider.archshift2014-04-244-7/+7
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fixed references to renamed files.archshift2014-04-245-8/+8
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Rename mob source files to fit CamelCase.archshift2014-04-246-6/+0
| |/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename Cavespider.cpp to CaveSpider.cpp Rename Cavespider.h to CaveSpider.h Rename Magmacube.cpp to MagmaCube.cpp Rename Magmacube.h to MagmaCube.h Rename Zombiepigman.cpp to ZombiePigman.cpp Rename Zombiepigman.h to ZombiePigman.h
* / / / / / / / / / / / / / / Changed cByteBuffer constructor to take a size_t instead of int.madmaxoft2014-04-242-2/+2
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Updated docs for StringToEnchantmentID.madmaxoft2014-04-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: mc-server/Core#67
* | | | | | | | | | | | | | Updated NetherFort prefabs to latest Gallery content.madmaxoft2014-04-231-7/+29
| |_|_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | |
* | | | | | | | | | | | | The new leaves don't decay anymore.STRWarrior2014-04-231-0/+1
| |/ / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #792
* | | | | | | | | | | | Merge pull request #925 from archshift/masterMattes D2014-04-233-0/+19
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Added monsters.ini rule for fireproof mobs.
| * | | | | | | | | | | | Renamed getter and setter for IsFireproof.archshift2014-04-233-4/+4
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added IsFireproof hook for monsters.iniarchshift2014-04-231-0/+3
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fireproof status getter and setter.archshift2014-04-232-0/+16
| | | | | | | | | | | | |
* | | | | | | | | | | | | Updated NetherFort prefabs from the Gallery server.madmaxoft2014-04-221-274/+785
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #923 from archshift/masterMattes D2014-04-222-3/+15
|\| | | | | | | | | | | | | |_|_|_|/ / / / / / / / |/| | | | | | | | | | | Added flag for fireproof entities.
| * | | | | | | | | | | Fixed indentation and changed m_Fireproof to m_IsFireproof.archshift2014-04-222-14/+14
| | | | | | | | | | | |
| * | | | | | | | | | | Lay foundation for fireproof entities.archshift2014-04-222-3/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevent any entities with the m_Fireproof flag from taking fire or lava damage.
* | | | | | | | | | | | Merge pull request #909 from jfhumann/fixesMattes D2014-04-2248-218/+263
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug fixes and optimizations. We need to visit the API functions and check that they return only those values expected. `cWorld::CreateProjectile()` seems affected, too, by the same issue of ToLua returning extra values. In the cleanest form, these functions will need moving to ManualBindings.cpp
| * | | | | | | | | | | reverted the revert of the minecart collision detection fix.jfhumann2014-04-211-2/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Fixed Flint and Steel, reverted Minecart change, renamed a parameter namejfhumann2014-04-194-9/+10
| | | | | | | | | | | |
| * | | | | | | | | | | Declared one mutex as mutable in order to allow for const correct get accessors.jfhumann2014-04-193-7/+7
| | | | | | | | | | | |
| * | | | | | | | | | | Fixed clang compilation errors. Apparently gcc and MSVC do not care about the order of initializer lists, but clang does.jfhumann2014-04-182-2/+2
| | | | | | | | | | | |
| * | | | | | | | | | | Small style changesjfhumann2014-04-184-9/+9
| | | | | | | | | | | |
| * | | | | | | | | | | Merge remote-tracking branch 'origin/master' into fixesjfhumann2014-04-1843-793/+2133
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Authenticator.cpp src/ClientHandle.cpp src/Entities/Minecart.cpp src/Protocol/Protocol17x.cpp
| * | | | | | | | | | | | Did some static analysis, fixed some bugs and optimized a lot of codejfhumann2014-04-1848-212/+257
| | | | | | | | | | | | |
* | | | | | | | | | | | | Added prefab hitboxes.madmaxoft2014-04-213-11/+138
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The nether forts should quite limit their bridge-to-floor overlaps. Cannot eliminate, but at least severely diminish.
* | | | | | | | | | | | | Added enchantment combining into cEnchantments.madmaxoft2014-04-212-16/+33
| | | | | | | | | | | | |
* | | | | | | | | | | | | Replaced X.size() with X.empty(), where applicable.madmaxoft2014-04-211-3/+3
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixed a warning in CraftingRecipes.Mattes D2014-04-211-1/+1
| |_|/ / / / / / / / / / |/| | | | | | | | | | |
* | | | | | | | | | | | Allow 1.6.4 Forge clients to log in.Mattes D2014-04-212-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #913.
* | | | | | | | | | | | Fixed enchanting return values.Mattes D2014-04-211-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Items are enchanted in those cases, so return true. Ref.: #914.
* | | | | | | | | | | | Fixed MSVC compilation.madmaxoft2014-04-201-1/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed Codedaniel09162014-04-192-145/+148
| | | | | | | | | | | |
* | | | | | | | | | | | Merge branch 'master' into Enchantingdaniel09162014-04-197-2/+182
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Fixed formatting, made function static.madmaxoft2014-04-192-13/+18
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge remote-tracking branch 'origin/Beacons'madmaxoft2014-04-194-0/+159
| |\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | |
| | * | | | | | | | | | | Some tweaksSTRWarrior2014-04-121-5/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GetPyramidLevel returns 0 when no layers were found, 1 for one layer etc. Auto adjust the minY and/or maxY to 0 if the beacon is low.
| | * | | | | | | | | | | Removed debug message.STRWarrior2014-04-121-1/+0
| | | | | | | | | | | | |
| | * | | | | | | | | | | Simplefied GetPyramidLevelSTRWarrior2014-04-121-10/+3
| | | | | | | | | | | | |
| | * | | | | | | | | | | Implemented the skeleton code for the beacon.STRWarrior2014-04-124-0/+155
| | | |_|_|_|_|_|_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is no handling for the GUI. It can now check how big the pyramid is under the beacon.
| * | | | | | | | | | | Compilation fixTiger Wang2014-04-181-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-04-182-0/+35
| |\ \ \ \ \ \ \ \ \ \ \ | | | |_|/ / / / / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | Fixed #906Tiger Wang2014-04-182-1/+12
| | | | | | | | | | | |
| * | | | | | | | | | | Fixed #904Tiger Wang2014-04-182-1/+6
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed Code (2)daniel09162014-04-191-97/+93
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed Codedaniel09162014-04-195-411/+418
| | | | | | | | | | | |
* | | | | | | | | | | | Merge branch 'master' into Enchantingdaniel09162014-04-1827-424/+1496
|\ \ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / | |/| | | | | | | | | |
| * | | | | | | | | | | Added performance test of the nether fort generator.madmaxoft2014-04-182-0/+35
| |/ / / / / / / / / /
| * | | | | | | | | | Removed unsupported C++11 features.madmaxoft2014-04-181-13/+19
| | | | | | | | | | |
| * | | | | | | | | | Merge pull request #891 from mc-server/fixesMattes D2014-04-1717-330/+449
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fixes to redstone & general
| | * | | | | | | | | | Compile fix?Tiger Wang2014-04-171-2/+2
| | | | | | | | | | | |
| | * | | | | | | | | | Implemented weighted pressure platesTiger Wang2014-04-173-29/+175
| | | | | | | | | | | |
| | * | | | | | | | | | Rewrote redstone powering to use power levelsTiger Wang2014-04-156-183/+157
| | | | | | | | | | | |
| | * | | | | | | | | | Entities handle chunks properly againTiger Wang2014-04-1210-123/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Entities properly handle chunks * Changed EntityStatus enums to be less shouty
| | * | | | | | | | | | Simplified pickup speed randomisationTiger Wang2014-04-121-4/+3
| | | | | | | | | | | |
| * | | | | | | | | | | Added area flooring.madmaxoft2014-04-171-1/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #743.
| * | | | | | | | | | | Added new AI rulesTiger Wang2014-04-176-53/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Added new AI rules handling cacti and large heights * Fixed cIniFile not recognising comments in cIniFile::ReadFile() * Fixed users.ini not being properly generated * Changed all instances of (int)floor(GetPosXXX()) to POSXXX_TOINT
| * | | | | | | | | | | Added Prefab initializers to SELFTEST code.madmaxoft2014-04-171-1/+13
| | | | | | | | | | | |
| * | | | | | | | | | | Prefabs can have per-piece per-placement weights.madmaxoft2014-04-175-32/+752
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #753. Also upgraded NetherFortPrefabs to lates Gallery contents.
| * | | | | | | | | | | Merge pull request #896 from axisd/masterMattes D2014-04-171-4/+6
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Mobs rotation
| | * | | | | | | | | | | Mobs rotationr.ramazanov2014-04-171-4/+6
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added asserts for proper game state.madmaxoft2014-04-161-5/+131
| |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is to help hunt #889.
* | | | | | | | | | | | Fixed Errorsdaniel09162014-04-183-5/+23
| | | | | | | | | | | |
* | | | | | | | | | | | Removed old includedaniel09162014-04-182-2/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed some Errors (not all)daniel09162014-04-174-20/+21
| | | | | | | | | | | |
* | | | | | | | | | | | Modified many thingsdaniel09162014-04-1710-918/+1000
| | | | | | | | | | | |
* | | | | | | | | | | | Fixed conflicting enchantments checkingdaniel09162014-04-162-24/+24
| | | | | | | | | | | |
* | | | | | | | | | | | Added deletions from merge conflictdaniel09162014-04-161-0/+875
| | | | | | | | | | | |
* | | | | | | | | | | | Merge branch 'master' into Enchantingdaniel09162014-04-1623-382/+661
|\| | | | | | | | | | |
| * | | | | | | | | | | Attempted fix for the client crash with the new protocols.madmaxoft2014-04-152-6/+16
| | | | | | | | | | | |
| * | | | | | | | | | | Added support for per-piece per-placement weights in cPieceGenerator.madmaxoft2014-04-152-28/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref.: #753.
| * | | | | | | | | | | NetherFortPrefabs: Fixed a connector in MidStaircase.madmaxoft2014-04-151-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Implemented the 1.7.6 protocol and authenticator.madmaxoft2014-04-1410-128/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Server works both in online and offline modes with 1.7.9.
| * | | | | | | | | | | A client UUID is generated when the server is in offline mode.madmaxoft2014-04-143-5/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1.7.9 client works with these changes in offline mode.
| * | | | | | | | | | | Merge remote-tracking branch 'daniel0916/YggdrasilAuthentication' into Proto176madmaxoft2014-04-1410-296/+362
| |\ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | Fixed mistakedaniel09162014-04-132-2/+2
| | | | | | | | | | | | |
| | * | | | | | | | | | | Fixed Error?daniel09162014-04-131-2/+2
| | | | | | | | | | | | |
| | * | | | | | | | | | | Code Updatedaniel09162014-04-131-4/+5
| | | | | | | | | | | | |
| | * | | | | | | | | | | Added Yggdrasil Authentication Systemdaniel09162014-04-139-295/+360
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code by Howaner. Fixes/Changes by me.
| * | | | | | | | | | | | Initial 1.7.6 protocol support.madmaxoft2014-04-144-2/+69
| | |_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Doesn't work yet because of missing UUIDs.
| * | | | | | | | | | | ChunkStay must be disabled while being deleted.ProtoProxy_1.7.2_001madmaxoft2014-04-123-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #758.
| * | | | | | | | | | | Fixed chunkstays not being removed on auto-delete.madmaxoft2014-04-122-10/+19
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #837.
* | | | | | | | | | | Fixed merge conflictdaniel09162014-04-161-877/+0
| | | | | | | | | | |
* | | | | | | | | | | Fixed double enchanting itemsdaniel09162014-04-161-2/+2
| | | | | | | | | | |
* | | | | | | | | | | Code Optimizationdaniel09162014-04-152-358/+183
| | | | | | | | | | |
* | | | | | | | | | | Added Book Enchantingdaniel09162014-04-152-2/+311
| | | | | | | | | | |
* | | | | | | | | | | Add more checks to cSlotAreaEnchantingHowaner2014-04-153-99/+212
| | | | | | | | | | |
* | | | | | | | | | | Modified namesdaniel09162014-04-152-49/+49
| | | | | | | | | | |
* | | | | | | | | | | Add linux compatibilityHowaner2014-04-151-61/+71
| | | | | | | | | | |
* | | | | | | | | | | Added ItemPlaceCount in SlotAreadaniel09162014-04-142-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to Howaner for helping
* | | | | | | | | | | Removed Debug Messagedaniel09162014-04-141-2/+0
| | | | | | | | | | |
* | | | | | | | | | | Added/Modified last things for Enchanting Systemdaniel09162014-04-141-15/+53
| | | | | | | | | | |
* | | | | | | | | | | Blocked enchanting a item twicedaniel09162014-04-142-8/+10
| | | | | | | | | | |
* | | | | | | | | | | Fixed Bookshelf Checkingdaniel09162014-04-141-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code by LO1ZB
* | | | | | | | | | | Bug fixesdaniel09162014-04-144-26/+21
| | | | | | | | | | |
* | | | | | | | | | | Fixed invisibility enchantmentsdaniel09162014-04-134-1/+8
| | | | | | | | | | |
* | | | | | | | | | | Fixed mistakedaniel09162014-04-131-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Fixed Server Crashdaniel09162014-04-131-0/+6
| | | | | | | | | | |
* | | | | | | | | | | Some Fixesdaniel09162014-04-132-2/+9
| | | | | | | | | | |
* | | | | | | | | | | Merge remote-tracking branch 'upstream/master' into Enchantingdaniel09162014-04-1211-2051/+3448
|\| | | | | | | | | |
| * | | | | | | | | | Updated the NetherFort prefabs to current Gallery contents.madmaxoft2014-04-123-1958/+3329
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Code exported from the Gallery server by the GalExport plugin.
| * | | | | | | | | Fixed issues with 64-bit MSVC compilation.madmaxoft2014-04-113-21/+35
| |/ / / / / / / /
| * | | | | | | | Fixed enchantment parsing.madmaxoft2014-04-101-12/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #880. Enchantment parsing now reports in detail which value failed to parse
| * | | | | | | | Fixed GitHuB WebEdit fail.Alexander Harkness2014-04-101-0/+1
| | | | | | | | |
| * | | | | | | | Update Monster.cppAlexander Harkness2014-04-101-2/+4
| | | | | | | | |
| * | | | | | | | Merge pull request #871 from worktycho/worldstorageMattes D2014-04-081-1/+1
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Removed check for enqueuing a chunk that is already enqueued to be loaded
| | * | | | | | | | Removed check for enqueuing a chunk that is already enqueued to be loadedTycho2014-04-081-1/+1
| | | |_|_|_|_|/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This remaval is safe as cWorldStorage checks for duplicate chunks when dequeuing and removes an expensive iteration whilst holding the queue lock
| * | | | | | | | cRedstoneSimulator.cpp style improvementsTiger Wang2014-04-081-40/+41
| | | | | | | | |
| * | | | | | | | Merge pull request #872 from worktycho/bugfixAlexander Harkness2014-04-081-1/+1
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fixed missing - that caused all neighbour lookups to go to the chunkmap
| | * | | | | | | | Fixed missing - that caused all neighbour lookups to go to the chunkmapTycho2014-04-081-1/+1
| | |/ / / / / / /
| * | | | | | | | Uppercased Zwiseoldman952014-04-081-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | Minor, no code changed.
| * | | | | | | | Comments: Inverted Z axis.wiseoldman952014-04-081-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -Comments fix, No code has been changed. -Inverted the Z axis in the comments and changed all dependent comments accordingly. -Added NORTH/SOUTH/EAST/WEST in addition to LEFT/RIGHT/UP/DOWN.
| * | | | | | | | Added comments regarding latching and orientationwiseoldman952014-04-081-9/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | No real code was changed.
| * | | | | | | | Fixed the thing properly.Alexander Harkness2014-04-081-8/+8
| | | | | | | | |
| * | | | | | | | Merge pull request #862 from mc-server/redstonefixAlexander Harkness2014-04-081-23/+3
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fixed #859
| | * | | | | | | | Fixed #859Tiger Wang2014-04-071-23/+3
| | | |_|_|_|_|/ / | | |/| | | | | |
| * | | | | | | | Fixed IsOnwiseoldman952014-04-071-3/+2
| | | | | | | | |
| * | | | | | | | Removed stray IsLockedwiseoldman952014-04-071-2/+2
| | | | | | | | |
| * | | | | | | | Removed unneeded spacingswiseoldman952014-04-071-6/+3
| | | | | | | | |
| * | | | | | | | Slight cleanupwiseoldman952014-04-071-13/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | It is more efficient and readable if we do nothing unless we're not locked.
* | | | | | | | | Fixed Bookshelves Checking (not completly)daniel09162014-04-121-7/+10
| | | | | | | | |
* | | | | | | | | Added complete Enchanting Systemdaniel09162014-04-128-147/+803
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://minecraft.gamepedia.com/Enchantment_mechanics
* | | | | | | | | Modified commentdaniel09162014-04-071-1/+1
| | | | | | | | |
* | | | | | | | | Fixed Errorsdaniel09162014-04-072-3/+3
| | | | | | | | |
* | | | | | | | | Added deleted things for mergingdaniel09162014-04-071-0/+3
| | | | | | | | |
* | | | | | | | | Merge remote-tracking branch 'upstream/master' into Enchantingdaniel09162014-04-07435-8455/+29130
|\| | | | | | | |
| * | | | | | | | Fixed some more minor issues with the redstone simulator.Alexander Harkness2014-04-071-34/+39
| | | | | | | | |
| * | | | | | | | Improved the speed a little more.Alexander Harkness2014-04-071-1/+1
| | | | | | | | |
| * | | | | | | | Fixed the redstone simulator.Alexander Harkness2014-04-071-49/+40
| | |_|_|_|/ / / | |/| | | | | |
| * | | | | | | Fix some of the comments in the PR tycho just did.Alexander Harkness2014-04-071-8/+6
| | | | | | | |
| * | | | | | | Merge pull request #861 from worktycho/simulatorAlexander Harkness2014-04-072-2/+65
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Added support for redstone latching
| | * | | | | | | Added support for redstone latchingTycho2014-04-062-2/+65
| | | |/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | fixes #856
| * | | | | | | Fixed HTTP chunked encoding.madmaxoft2014-04-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #858.
| * | | | | | | Fixed 1.6.4 client crash on composite chat messages.madmaxoft2014-04-062-0/+14
| | | | | | | |
| * | | | | | | Fixed crash in protocols sending 64-bit ints.madmaxoft2014-04-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #855.
| * | | | | | | Updated the tolua executable for Windows.madmaxoft2014-04-061-0/+0
| | | | | | | |
| * | | | | | | Merge branch 'master' into overrideTycho2014-04-05180-1316/+6155
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lib/tolua++/CMakeLists.txt
| | * | | | | | Fixed Endiannes conversion routines for floats and doubles.madmaxoft2014-04-052-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This bug has been introduced in 8825d30aabbee8cb2e452dc5a17deb6f9b6892a7. This change fixes #854.
| | * | | | | | Fixed double projectile spawning.madmaxoft2014-04-051-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Two spawn packets were sent per projectile.
| | * | | | | | Removed debugging log from entity physics handling.madmaxoft2014-04-051-1/+2
| | | | | | | |
| | * | | | | | Added cPlayer:SendRotation() API function.madmaxoft2014-04-052-0/+17
| | | | | | | |
| | * | | | | | Merge pull request #840 from Howaner/NewBlocksMattes D2014-04-043-5/+152
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add tall flower handler.
| | | * | | | | | Change CanBeAt() from big flowerHowaner2014-04-031-5/+1
| | | | | | | | |
| | | * | | | | | Add "a_RelY < cChunkDef::Height" to BlockBigFlowerHowaner2014-03-291-0/+1
| | | | | | | | |
| | | * | | | | | Add tallgrass drop to big flowers.Howaner2014-03-282-8/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | Add tallgrass drop, when a players break a tallgrass with the shear.
| | | * | | | | | door -> flowerHowaner2014-03-281-1/+1
| | | | | | | | |
| | | * | | | | | Add tall flower handler.Howaner2014-03-282-0/+99
| | | | | | | | |
| | * | | | | | | Merge branch 'master' into HTTPSizeTmadmaxoft2014-04-0436-574/+348
| | |\ \ \ \ \ \ \
| | | * | | | | | | Explicit change record size.madmaxoft2014-04-041-1/+1
| | | | | | | | | |
| | | * | | | | | | Changed cNoise seed to signed.madmaxoft2014-04-042-4/+4
| | | | | | | | | |
| | | * | | | | | | Fixed format string mismatch.madmaxoft2014-04-041-1/+1
| | | | | | | | | |
| | | * | | | | | | More Clang warning fixes in the protocols.madmaxoft2014-04-046-81/+82
| | | | | | | | | |
| | | * | | | | | | Fixed CreateHexDump's format string.madmaxoft2014-04-041-2/+2
| | | | | | | | | |
| | | * | | | | | | Fixed CreateHexDump's signedness.madmaxoft2014-04-043-11/+11
| | | | | | | | | |
| | | * | | | | | | More Clang warning fixes in the protocols.madmaxoft2014-04-043-30/+39
| | | | | | | | | |
| | | * | | | | | | Fixed silly Clang's warnings in FastNBT.madmaxoft2014-04-041-28/+28
| | | | | | | | | |
| | | * | | | | | | Fixed some Clang warnings in protocols.madmaxoft2014-04-0413-43/+51
| | | | | | | | | |
| | | * | | | | | | Fixed Clang warnings in itemhandlers.madmaxoft2014-04-046-20/+21
| | | | |/ / / / / | | | |/| | | | |
| | | * | | | | | Documented the units and range for entity rotations.madmaxoft2014-04-031-7/+7
| | | | | | | | |
| | | * | | | | | Removed unneeded asserts.madmaxoft2014-04-031-2/+0
| | | | |_|/ / / | | | |/| | | |
| | | * | | | | Fixed a few MSVC type warnings.Mattes D2014-04-033-2/+5
| | | | | | | |
| | | * | | | | Removed the bindings to set old g_BlockXXX arrays.Mattes D2014-04-031-297/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Those were supposed to be read-only; there's no point in writing to them anyway. Also fixed MSVC type warnings in the code.
| | | * | | | | Merge pull request #849 from mc-server/minorfixesMattes D2014-04-026-48/+34
| | | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | Minor fixes
| | | | * | | | | With eXtra line!Tiger Wang2014-04-021-0/+1
| | | | | | | | |
| | | | * | | | | Removed extra bracketsTiger Wang2014-04-021-5/+2
| | | | | | | | |
| | | | * | | | | Final realisation of suggestionsTiger Wang2014-03-311-5/+7
| | | | | | | | |
| | | | * | | | | Realised suggestionsTiger Wang2014-03-312-6/+12
| | | | | | | | |
| | | | * | | | | Simplified and fixed slabs, fixes #835Tiger Wang2014-03-313-36/+13
| | | | | | | | |
| | | | * | | | | Fixed a few Y too high/low assertsTiger Wang2014-03-313-12/+15
| | | | | | | | |
| | * | | | | | | Merge branch 'master' into HTTPSizeTTycho2014-04-0223-29/+44
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/HTTPServer/EnvelopeParser.h src/HTTPServer/HTTPFormParser.h src/HTTPServer/MultipartParser.h
| | | * | | | | | Fixed boat placement code.madmaxoft2014-04-021-9/+17
| | | | | | | | |
| | | * | | | | | Fixed more virtual destructors for interfaces.madmaxoft2014-04-024-0/+12
| | | | | | | | |
| | | * | | | | | Merge branch 'MacFixes'Tycho2014-04-0218-18/+20
| | | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/DeadlockDetect.cpp src/World.cpp
| | | | * | | | | | More fixes to get it to compile for me on Mac 10.9. Mostly just newline additions, but some of the unused variables were causing errors, so I wrapped them in #ifndef __APPLE__ calls, since I didn't know if they were going to be used in the future.Samuel Barney2014-03-2515-14/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also had to undefine TOLUA_TEMPLATE_BIND a couple of times.
| | | | * | | | | | Added one more missing newline.Samuel Barney2014-03-251-1/+1
| | | | | | | | | |
| | | | * | | | | | Added newlines. Without them, the files would not compile.Samuel Barney2014-03-254-4/+4
| | | | | | | | | |
| | * | | | | | | | Merge branch 'master' into HTTPSizeTTycho2014-04-0212-10/+315
| | |\| | | | | | |
| | | * | | | | | | Merge pull request #831 from mc-server/WitherMattes D2014-04-025-3/+153
| | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Wither
| | | | * | | | | | | Fixed clang compilationandrew2014-03-252-14/+17
| | | | | | | | | | |
| | | | * | | | | | | Fixed wither summoningandrew2014-03-253-3/+37
| | | | | | | | | | |
| | | | * | | | | | | Protocol: Wither metadataandrew2014-03-255-3/+116
| | | | | | | | | | |
| | | * | | | | | | | Added schematic string serializer self-test.madmaxoft2014-04-021-0/+33
| | | | | | | | | | |
| | | * | | | | | | | Fixed StringCompression's GZIP handling for larger strings.madmaxoft2014-04-022-5/+7
| | | | | | | | | | |
| | | * | | | | | | | Exported the Base64 encoding and decoding functions to Lua API.madmaxoft2014-04-012-2/+48
| | | | | | | | | | |
| | | * | | | | | | | Merged branch 'msDifference'.madmaxoft2014-04-012-0/+35
| | | |\ \ \ \ \ \ \ \
| | | | * | | | | | | | Added new merge strategy "msDifference"STRWarrior2014-03-312-0/+35
| | | | | | | | | | | |
| | | * | | | | | | | | cBlockArea: Added the msMask merge strategy.madmaxoft2014-04-012-0/+39
| | | | | | | | | | | |
| | * | | | | | | | | | Fixed All signedness warnings in HTTPServer.cppTycho2014-04-0210-14/+17
| | | | | | | | | | | |
| | * | | | | | | | | | Fixed format string in HTTPConnectionTycho2014-04-021-1/+1
| | | | | | | | | | | |
| | * | | | | | | | | | Fixed Comparison to -1 in HTTPMessage.hTycho2014-04-021-1/+1
| | | | | | | | | | | |
| | * | | | | | | | | | Rewritten HTTPServer to use size_t for data lengths.madmaxoft2014-04-0116-90/+97
| | |/ / / / / / / / /
| | * | | | | | | | | More cFile warning fixes.madmaxoft2014-04-011-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Fixed clang warnings in cGZipFile.madmaxoft2014-04-011-2/+2
| | | | | | | | | | |
| | * | | | | | | | | Fixed clang warnings in BlockHandlers.madmaxoft2014-04-014-5/+6
| | | | | | | | | | |
| | * | | | | | | | | Fixed clang warnings in cFile.madmaxoft2014-04-011-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We only support 32-bit filesizes (files < 2 GiB).
| | * | | | | | | | | Simplified the anvil placement code.madmaxoft2014-04-011-11/+9
| | | | | | | | | | |
| | * | | | | | | | | Removed an unneeded code branch.madmaxoft2014-04-011-5/+0
| | | | | | | | | | |
| | * | | | | | | | | LOG() API reads the LogLevel from the cCompositeChat's MessageType.madmaxoft2014-04-015-22/+79
| | | | | | | | | | |
| | * | | | | | | | | Console logging supports cCompositeChat as its parameters.madmaxoft2014-03-314-34/+69
| | | | | | | | | | |
| | * | | | | | | | | cCompositeChat has a MessageType param in the constructor.madmaxoft2014-03-312-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should make it easier to use.
| | * | | | | | | | | Fixed a few Clang warnings in BlockHandlers.madmaxoft2014-03-3011-48/+54
| | | |_|_|/ / / / / | | |/| | | | | | |
| | * | | | | | | | Fixed a few clang warnings.madmaxoft2014-03-304-7/+13
| | | | | | | | | |
| | * | | | | | | | Merge branch 'NetherFortGen'.madmaxoft2014-03-3011-22/+3228
| | |\| | | | | | |
| | | * | | | | | | Added all current NetherFort prefabs.madmaxoft2014-03-301-3/+1547
| | | | | | | | | |
| | | * | | | | | | Added asserts for critical data in cPrefab.madmaxoft2014-03-301-0/+4
| | | | | | | | | |
| | | * | | | | | | Re-fixed nether fort piece count check.madmaxoft2014-03-301-2/+2
| | | | | | | | | |
| | | * | | | | | | Fixed chest rotator.madmaxoft2014-03-301-2/+2
| | | | | | | | | |
| | | * | | | | | | NetherForts have a minimum number of pieces.madmaxoft2014-03-301-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fort will generate a different image if it has less than the minimum; the max depth affects the minimum number of pieces.
| | | * | | | | | | Merge branch 'master' into NetherFortGenmadmaxoft2014-03-2914-15/+224
| | | |\ \ \ \ \ \ \
| | | * | | | | | | | NetherFortGen: Added several more prefabs.madmaxoft2014-03-282-2/+783
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also extended the defauls MaxDepth value to 12.
| | | * | | | | | | | Added Prefabs to *nix builds.madmaxoft2014-03-281-1/+1
| | | | | | | | | | |
| | | * | | | | | | | Merge branch 'master' into NetherFortGenmadmaxoft2014-03-2811-37/+61
| | | |\ \ \ \ \ \ \ \
| | | * | | | | | | | | Implemented the msSpongePrint merge strategy.madmaxoft2014-03-283-9/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Similar to msImprint, but allows prefabs to carve out air pockets, too. The sponge block is used as the NOP block.
| | | * | | | | | | | | NetherFort: Added BalconyTee2 prefab.madmaxoft2014-03-281-29/+158
| | | | | | | | | | | |
| | | * | | | | | | | | Fixed a memory leak in NetherFortGen.madmaxoft2014-03-281-0/+7
| | | | | | | | | | | |
| | | * | | | | | | | | Sponged the netherfort balcony prefab.madmaxoft2014-03-281-30/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a preparation for the msSpongePrint merge strategy, used for imprinting most prefabs. It will carve out even air, but will ignore sponge blocks.
| | | * | | | | | | | | Merge branch 'master' into NetherFortGenmadmaxoft2014-03-281-1/+1
| | | |\ \ \ \ \ \ \ \ \ | | | | | |_|_|_|/ / / / | | | | |/| | | | | | |
| | | * | | | | | | | | Initial NetherFortGen import.madmaxoft2014-03-288-15/+713
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simple fortresses of 2 different rooms will generate.
| | * | | | | | | | | | Merge pull request #834 from narroo/issue503Mattes D2014-03-3023-121/+372
| | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Issue503 pull Request
| | | * | | | | | | | | | Added in MetaMirrorXY and MetaMirrorYZ to cBlockSignHandler.narroo2014-03-291-0/+19
| | | | | | | | | | | | |
| | | * | | | | | | | | | Altered the rotates for cBlockSignHandler. The functions as a whole is still unfinished though; no wall sign or mirroring support yet.narroo2014-03-261-2/+2
| | | | | | | | | | | | |
| | | * | | | | | | | | | Fixed Minor typos.narroo2014-03-263-9/+12
| | | | | | | | | | | | |
| | | * | | | | | | | | | Added a comment about the behavior of doors under mirros. Simply put, the current implementation of MetaMirror causes glitchy behavior. The door class itself needs to be edited. (I've got an idea on that....)narroo2014-03-251-2/+8
| | | | | | | | | | | | |
| | | * | | | | | | | | | Fixed spelling; Rotater to Rotator.narroo2014-03-2515-46/+46
| | | | | | | | | | | | |
| | | * | | | | | | | | | Changed Rotater to Rotator. Added partial sign post rotation support.narroo2014-03-252-0/+12
| | | | | | | | | | | | |
| | | * | | | | | | | | | Added MetaRotate/Mirror Support for a number of classes.narroo2014-03-2412-84/+295
| | | | | | | | | | | | |
| | * | | | | | | | | | | Merge pull request #838 from mc-server/lilypadsworktycho2014-03-3010-13/+162
| | |\ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|/ / / / / / | | |/| | | | | | | | | | Lilypads
| | | * | | | | | | | | | Another curlyTiger Wang2014-03-301-1/+2
| | | | | | | | | | | | |
| | | * | | | | | | | | | Compare for inequality in FACE_NONE checksTiger Wang2014-03-291-3/+3
| | | | | | | | | | | | |
| | | * | | | | | | | | | Removed leftover clienthandle codeTiger Wang2014-03-291-10/+6
| | | | | | | | | | | | |
| | | * | | | | | | | | | Curly bracketsTiger Wang2014-03-291-1/+4
| | | | | | | | | | | | |
| | | * | | | | | | | | | Fixed infinite minecart itemsTiger Wang2014-03-281-0/+3
| | | | | | | | | | | | |
| | | * | | | | | | | | | Fixed block interaction rate checkTiger Wang2014-03-281-2/+4
| | | | | | | | | | | | |
| | | * | | | | | | | | | Fixed a potential crashTiger Wang2014-03-281-1/+1
| | | | | | | | | | | | |
| | | * | | | | | | | | | Some fixes to lilypadsTiger Wang2014-03-285-62/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 placementTiger Wang2014-03-234-8/+98
| | | | | | | | | | | | |
| | * | | | | | | | | | | cPrefab now uses a struct for block type definition in CharMap.madmaxoft2014-03-292-10/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As suggested by worktycho in 7b585290fccd3dc074b1f9feef0af754ab3dd632, instead of packing the two values into a single int, they're packed into a struct. Also added a test code for the prefab parsing in SELF_TEST.
| | * | | | | | | | | | | Merge pull request #842 from mc-server/ProjectileHooksMattes D2014-03-298-1/+118
| | |\ \ \ \ \ \ \ \ \ \ \ | | | | |_|_|_|_|_|_|_|_|/ | | | |/| | | | | | | | | Projectile hooks
| | | * | | | | | | | | | Fixed the OnProjectileHitBlock hook not stopping projectiles.STRWarrior2014-03-291-1/+1
| | | | | | | | | | | | |
| | | * | | | | | | | | | Added HOOK_PROJECTILE_HIT_BLOCK.STRWarrior2014-03-296-0/+50
| | | | | | | | | | | | |
| | | * | | | | | | | | | Fixed error when the hook gets called.STRWarrior2014-03-293-1/+14
| | | | | | | | | | | | |
| | | * | | | | | | | | | Added HOOK_PROJECTILE_HIT_ENTITYSTRWarrior2014-03-296-0/+54
| | | | |_|_|_|/ / / / / | | | |/| | | | | | | |
| | * | | | | | | | | | Renamed lua dll for tolua++.exe.madmaxoft2014-03-291-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #843.
| | * | | | | | | | | | Fixed players not updating after world changeTiger Wang2014-03-291-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Addendum to 6dea7993f2a563a8b3a0746feeb2174922631526
| | * | | | | | | | | | Fixed #721 and FS439Tiger Wang2014-03-291-0/+1
| | | | | | | | | | | |
| | * | | | | | | | | | Fixed a minor ini key duplication bugTiger Wang2014-03-291-0/+1
| | |/ / / / / / / / /
| | * | | | / / / / / Fixed non-virtual destructors warnings.madmaxoft2014-03-2811-37/+61
| | | |_|_|/ / / / / | | |/| | | | | | |
| | * | | | | | | | Fixed compilation after last PR merge.madmaxoft2014-03-281-1/+1
| | | |_|/ / / / / | | |/| | | | | |
| | * | | | | | | Merge branch 'howaner/GlobalFixes'.madmaxoft2014-03-2812-6/+83
| | |\ \ \ \ \ \ \
| | | * | | | | | | Add missing ChunkDesc import.Howaner2014-03-281-1/+1
| | | | | | | | | |
| | | * | | | | | | Fix merge conflictsHowaner2014-03-271-7/+0
| | | | | | | | | |
| | | * | | | | | | Change SpreadSource prefix to ssHowaner2014-03-274-8/+8
| | | | | | | | | |
| | | * | | | | | | Wrong if in BlockLeavesHowaner2014-03-271-1/+1
| | | | | | | | | |
| | | * | | | | | | Add SpreadSourceHowaner2014-03-2711-10/+34
| | | | | | | | | |
| | | * | | | | | | Add HOOK_BLOCK_SPREADHowaner2014-03-276-3/+57
| | | | | | | | | |
| | | * | | | | | | Add new leaves to all classes.Howaner2014-03-272-1/+8
| | | | | | | | | |
| | * | | | | | | | Fixed Prefab's rotations.madmaxoft2014-03-282-7/+39
| | |/ / / / / / /
| | * | | | | | | cPrefab can draw itself into a cChunkDesc.madmaxoft2014-03-272-6/+9
| | | | | | | | |
| | * | | | | | | Fixed chunk neighbor-getting for long distances.madmaxoft2014-03-271-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a server hang when teleporting to coords too far away.
| | * | | | | | | Prefabs support connectors, rotations and merge strategy.madmaxoft2014-03-262-3/+72
| | | | | | | | |
| | * | | | | | | Removed unused constants.madmaxoft2014-03-252-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DeadlockDetect reads the value from the ini file, and world lighting has a separate queue now.
| | * | | | | | | Added a basic cPrefab class.madmaxoft2014-03-252-0/+222
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Can be defined in the source by GalExport's cpp output.
| | * | | | | | | BlockArea: Create() can take the size as Vector3i, too.madmaxoft2014-03-252-2/+17
| | | | | | | | |
| | * | | | | | | BlockArea: Switched internal coords to Vector3i.madmaxoft2014-03-254-200/+176
| | | | | | | | |
| | * | | | | | | Added Vector3::Move(const Vector3 &).madmaxoft2014-03-251-0/+7
| | | | | | | | |
| | * | | | | | | Merge pull request #833 from mc-server/EnderCrystalMattes D2014-03-257-11/+137
| | |\ \ \ \ \ \ \ | | | |_|_|_|/ / / | | |/| | | | | | Ender crystals
| | | * | | | | | Ender crystalsandrew2014-03-257-11/+137
| | | | | | | | |
| | * | | | | | | Merge pull request #828 from mc-server/WitherMattes D2014-03-259-15/+109
| | |\ \ \ \ \ \ \ | | | | |_|_|/ / / | | | |/| | | | | Wither invulnerability
| | | * | | | | | Minor fixesandrew2014-03-253-14/+13
| | | | | | | | |
| | | * | | | | | Wither invulnerabilityandrew2014-03-248-5/+100
| | | |/ / / / /
| | * | | | | | Merge pull request #829 from Howaner/CakeMattes D2014-03-241-1/+7
| | |\ \ \ \ \ \ | | | |_|/ / / / | | |/| | | | | Add log pickups.
| | | * | | | | Add log pickups.Howaner2014-03-241-1/+7
| | | | | | | |
| | * | | | | | Updated the ToLua windows executable.madmaxoft2014-03-231-0/+0
| | | |_|_|/ / | | |/| | | |
| | * | | | | Implemented faster upscaling using templates.madmaxoft2014-03-216-36/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #819.
| * | | | | | Added override specifier to functions declared in cWorldTycho2014-03-221-8/+8
| |/ / / / /
| * | | | | Updated the tolua++ executable for Win builds.madmaxoft2014-03-201-0/+0
| | | | | |
| * | | | | Merge branch 'unreachable'madmaxoft2014-03-207-5/+12
| |\ \ \ \ \ | | |_|/ / / | |/| | | |
| | * | | | Merge branch 'master' into unreachableTycho2014-03-194-14/+14
| | |\ \ \ \
| | * | | | | Added unreachable lines backit prtected by preprocessor guardsTycho2014-03-192-0/+10
| | | | | | |
| | * | | | | Merge branch 'master' into unreachableTycho2014-03-1737-215/+827
| | |\ \ \ \ \
| | * | | | | | Fixed unessicary returnTycho2014-03-151-1/+0
| | | | | | | |
| | * | | | | | Merge branch 'master' into unreachableTycho2014-03-156-3/+29
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: SetFlags.cmake
| | * | | | | | | Patched tolua to emit range checks for enumsTycho2014-03-151-0/+1
| | | | | | | | |
| | * | | | | | | Merge branch 'master' into unreachableTycho2014-03-143-10/+2
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: SetFlags.cmake
| | * | | | | | | | Fixed a few unneeded breaksTycho2014-03-143-3/+3
| | | | | | | | | |
| | * | | | | | | | Removed missiterperatable malfunctioning error handling codeTycho2014-03-141-2/+0
| | | | | | | | | |
| | * | | | | | | | Removed invalid block face handling codeTycho2014-03-141-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code for handling invalid block faces is removed by gcc and clang as it is undefined behavior for a enum to contain a value that is not part of the enum. Since the only way that the line can be executed is through undefined behavior clang and gcc remove it so the function fits in the caches better.
| * | | | | | | | | Plugins can set flying speed.madmaxoft2014-03-203-77/+119
| | | | | | | | | |
| * | | | | | | | | Rewritten player speeds to be relative unit-less.madmaxoft2014-03-204-12/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Value of 1 means "default speed", 2 means "double the speed", 0.5 means "half the speed". This allows for easier plugins and is more future-proof.
| * | | | | | | | | Fixed code style after recent merge.madmaxoft2014-03-202-31/+33
| | | | | | | | | |
| * | | | | | | | | Made pushing plain pointer to Lua a valid operation, with a warning.madmaxoft2014-03-202-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is used for exotic explosions, and the NORETURNDEBUG macro caused MSVC warnings across the entire cLuaState class (MSVC marked ALL Push() function overloads as non-returning)
| * | | | | | | | | Merge pull request #790 from mc-server/awesometntMattes D2014-03-209-217/+258
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | TNT Shrapnel
| | * | | | | | | | | Added bracesTiger Wang2014-03-201-0/+2
| | | | | | | | | | |
| | * | | | | | | | | Minor Entity.cpp cleanupTiger Wang2014-03-201-12/+9
| | | | | | | | | | |
| | * | | | | | | | | ENUMified shrapnel levelTiger Wang2014-03-204-15/+17
| | | | | | | | | | |
| | * | | | | | | | | Merge branch 'master' into awesometntTiger Wang2014-03-18120-1024/+3001
| | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ChunkMap.cpp
| | * | | | | | | | | | Added levels of shrapnelTiger Wang2014-03-183-8/+18
| | | | | | | | | | | |
| | * | | | | | | | | | Merge remote-tracking branch 'origin/master' into awesometntTiger Wang2014-03-1028-206/+743
| | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Items/ItemLighter.h src/Simulator/IncrementalRedstoneSimulator.cpp
| | * \ \ \ \ \ \ \ \ \ \ Merge branch 'master' into awesometntTiger Wang2014-03-1080-595/+1990
| | |\ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | Shrapnel now configurableTiger Wang2014-03-103-3/+8
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Added extra awesomeness to TNTTiger Wang2014-03-057-209/+232
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + 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
| * | | | | | | | | | | | | Errors in Lua don't include the error handler in the stack trace.madmaxoft2014-03-192-7/+7
| | |_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #817.
| * | | | | | | | | | | | LuaChunkStay: Removed a debugging output.madmaxoft2014-03-191-3/+0
| | |_|_|/ / / / / / / / | |/| | | | | | | | | |
| * | | | | | | | | | | Fixed chunkmap tree block replacing.madmaxoft2014-03-181-8/+2
| | | | | | | | | | | |
| * | | | | | | | | | | Fixed cGZipFile::ReadRestOfFile returning incorrect value.madmaxoft2014-03-181-1/+4
| | | | | | | | | | | |
| * | | | | | | | | | | Fixed a crash in firework rockets.madmaxoft2014-03-171-2/+8
| | |_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #816.
| * | | | | | | | | | Fixed double to float conversions.madmaxoft2014-03-164-52/+53
| | | | | | | | | | |
| * | | | | | | | | | Added override specifier where appropriate in cWorld.madmaxoft2014-03-161-37/+38
| | | | | | | | | | |
| * | | | | | | | | | Merge pull request #782 from mc-server/bedsMattes D2014-03-165-17/+94
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Beds now work properly, fixes #707
| | * | | | | | | | | | Fixed VERIFYTiger Wang2014-03-091-1/+1
| | | | | | | | | | | |
| | * | | | | | | | | | Beds now work properly fixes #707Tiger Wang2014-03-095-17/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also fixes FS392 Conflicts: src/Blocks/WorldInterface.h src/ClientHandle.cpp
| * | | | | | | | | | | Merge pull request #809 from Howaner/BlockEntitysMattes D2014-03-1619-99/+512
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | More entity saving.
| | * | | | | | | | | | | Fix anvil pickups.Howaner2014-03-161-1/+1
| | | | | | | | | | | | |
| | * | | | | | | | | | | Add anvil direction.Howaner2014-03-163-1/+74
| | | | | | | | | | | | |
| | * | | | | | | | | | | Remove old debug messages.Howaner2014-03-151-3/+0
| | | | | | | | | | | | |
| | * | | | | | | | | | | Merge branch 'master' into BlockEntitysHowaner2014-03-15125-1229/+3223
| | |\ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | Add item frame saving.Howaner2014-03-159-46/+251
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add health and age load to pickup's.Howaner2014-03-155-22/+43
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add ExpOrb saving.Howaner2014-03-157-38/+124
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Add fireball interactHowaner2014-03-144-2/+33
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Wrong if in BlockLeavesHowaner2014-03-161-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Add new leaves to all classes.Howaner2014-03-169-5/+18
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Added common eMessageType aliases.madmaxoft2014-03-161-10/+16
| | |_|_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | |
| * | | | | | | | | | | | Change if-clause in BlockCake.hHowaner2014-03-161-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Add cakeHowaner2014-03-164-0/+101
| | |_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | |
| * | | | | | | | | | | Merge pull request #800 from mc-server/EntireCommandErrorMattes D2014-03-151-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | The entire unknown command is echoed back to the user on error.
| | * | | | | | | | | | | The entire unknown command is echoed back to the user on error.madmaxoft2014-03-121-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added cCuboid:Assign(OtherCuboid) API function.madmaxoft2014-03-152-0/+15
| | |_|/ / / / / / / / / | |/| | | | | | | | | |
| * | | | | | | | | | | Merge branch 'master' into noreturnTycho2014-03-143-10/+2
| |\ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|/ / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: SetFlags.cmake
| | * | | | | | | | | | Merge pull request #805 from worktycho/undefMattes D2014-03-143-10/+2
| | |\ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|/ / / | | |/| | | | | | | | | Fixed a couple of missing defs
| | | * | | | | | | | | Fixed a couple of missing defsTycho2014-03-143-10/+2
| | | | | | | | | | | |
| * | | | | | | | | | | Added Noreturn attribtes to a couple of functions and made a missing noreturn an errorTycho2014-03-143-4/+11
| | | | | | | | | | | |
| * | | | | | | | | | | Added NORETURN macroTycho2014-03-141-0/+4
| |/ / / / / / / / / /
| * | | | | | | | | | Merge branch 'master' into warningsTycho2014-03-142-4/+7
| |\ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / | |/| | | | | | | | |
| | * | | | | | | | | cPlugin:BindConsoleCommand can be called statically.madmaxoft2014-03-141-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This has been documented before it was written.
| | * | | | | | | | | Fixed a warning.madmaxoft2014-03-141-3/+3
| | | | | | | | | | |
| * | | | | | | | | | Fixed xofts issuesTycho2014-03-1410-23/+24
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'master' into warningsTycho2014-03-142-11/+13
| |\| | | | | | | | |
| | * | | | | | | | | Merge pull request #793 from xdot/masterMattes D2014-03-141-9/+9
| | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Unified Vector classes
| | | * | | | | | | | | Vector3: More castsandrew2014-03-121-9/+9
| | | | | | | | | | | |
| | * | | | | | | | | | cPluginManager:Bind[Console]Command returns true on success.madmaxoft2014-03-141-2/+4
| | | |_|_|_|_|_|_|/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #801.
| * | | | | | | | | | Fixed commaTycho2014-03-121-2/+2
| | | | | | | | | | |
| * | | | | | | | | | Added additional macros to support the MSVC size_t format and changed all formats to use the macrosTycho2014-03-1213-29/+33
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'Werror' into warningsTycho2014-03-1243-648/+649
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Globals.h
| | * | | | | | | | | | Fixed printf format compatabiltyTycho2014-03-122-5/+9
| | | | | | | | | | | |
| | * | | | | | | | | | Merge branch 'master' into WerrorTycho2014-03-1243-642/+639
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Generating/PieceGenerator.cpp
| | | * | | | | | | | | Fixed missing comment terminator.madmaxoft2014-03-121-1/+1
| | | | | | | | | | | |
| | | * | | | | | | | | Merge remote-tracking branch 'xdot/master'madmaxoft2014-03-122-2/+2
| | | |\| | | | | | | |
| | | | * | | | | | | | M_PI MSVC Fixandrew2014-03-122-2/+2
| | | | | | | | | | | |
| | | * | | | | | | | | Merge remote-tracking branch 'xdot/master'madmaxoft2014-03-1235-632/+546
| | | |\| | | | | | | |
| | | | * | | | | | | | Vector3: Length() should always return a floatandrew2014-03-121-9/+9
| | | | | | | | | | | |
| | | | * | | | | | | | Matrix4: Removed enumandrew2014-03-112-22/+24
| | | | | | | | | | | |
| | | | * | | | | | | | Unified Matrix4 codeandrew2014-03-117-233/+230
| | | | | | | | | | | |
| | | | * | | | | | | | LineCoeff Docandrew2014-03-111-4/+20
| | | | | | | | | | | |
| | | | * | | | | | | | Unified Vector classesandrew2014-03-1132-401/+300
| | | | | | | | | | | |
| | | * | | | | | | | | Fixed Lua string return values.madmaxoft2014-03-121-4/+0
| | | | |/ / / / / / / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #773.
| | | * | | | | | | | Moved Lua API registering into a separate function.madmaxoft2014-03-124-2/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will allow us to use Lua as lite-config files as well, should we want to.
| | | * | | | | | | | Merge remote-tracking branch 'origin/SnowBall'madmaxoft2014-03-122-2/+25
| | | |\ \ \ \ \ \ \ \
| | | | * | | | | | | | TakeDamage now has the cThrownSnowballEntity instead of the creator's object.STRWarrior2014-03-111-1/+1
| | | | | | | | | | | |
| | | | * | | | | | | | Snowballs now actualy hurt other entities.STRWarrior2014-03-112-2/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3 damage for blazes and 1 for the ender dragon. Otherwise 0
| | | * | | | | | | | | Renamed cBlockArea Offset to WEOffset.madmaxoft2014-03-123-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Even in getters / setters.
| | | * | | | | | | | | Merge branch 'master' into cBlockArea_Offsetmadmaxoft2014-03-1276-497/+2530
| | | |\ \ \ \ \ \ \ \ \ | | | | | |/ / / / / / / | | | | |/| | | | | | |
| | | * | | | | | | | | Renamed m_Offset to m_WEOffsetSTRWarrior2014-03-113-8/+9
| | | | |/ / / / / / / | | | |/| | | | | | |
| | | * | | | | | | | Using ```const Vector3i &```STRWarrior2014-03-112-3/+3
| | | | | | | | | | |
| | | * | | | | | | | This allows a blockarea to have an Offset.STRWarrior2014-03-103-0/+47
| | | | | | | | | | |
| | * | | | | | | | | Fixed comments an assertTycho2014-03-121-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Fixed more Format issuesTycho2014-03-116-17/+17
| | | | | | | | | | |
| * | | | | | | | | | Fixed a load of format string errorsTycho2014-03-1113-27/+29
| | | | | | | | | | |
| * | | | | | | | | | Move Format issuesTycho2014-03-113-4/+4
| | | | | | | | | | |
| * | | | | | | | | | Fixed format errors in protocolTycho2014-03-111-3/+3
| | | | | | | | | | |
| * | | | | | | | | | Added macros to follow format string checking through wrappersTycho2014-03-113-4/+8
| |/ / / / / / / / /
| * | | | | | | | | Fixed Chunkdef warningsTycho2014-03-111-2/+2
| | | | | | | | | |
| * | | | | | | | | Fixed Warnings in PieceGeneratorTycho2014-03-112-9/+9
| | | | | | | | | |
| * | | | | | | | | Merge branch 'master' into WerrorTycho2014-03-1111-36/+1364
| |\ \ \ \ \ \ \ \ \ | | | |/ / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ChunkDef.h
| | * | | | | | | | Merge pull request #791 from mc-server/PieceGeneratorMattes D2014-03-1011-30/+1358
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Piece generator
| | | * | | | | | | | Removed debugging output.madmaxoft2014-03-101-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Kept it commented-out for later revisions, if needed.
| | | * | | | | | | | POCPieces: Added height.madmaxoft2014-03-101-17/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now the pieces connect in different heights, too, creating a true 3D maze.
| | | * | | | | | | | A working POCPiece generator.madmaxoft2014-03-095-6/+359
| | | | | | | | | | |
| | | * | | | | | | | Hardened cCuboid with asserts for its assumptions.madmaxoft2014-03-092-3/+11
| | | | | | | | | | |
| | | * | | | | | | | ChunkDef: Replaced enums with static const ints.madmaxoft2014-03-091-10/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes them easier to use in std::min et al.
| | | * | | | | | | | Added cCuboid::Engulf().madmaxoft2014-03-092-0/+37
| | | | | | | | | | |
| | | * | | | | | | | cPieceGenerator: New connectors are added to the free pool.madmaxoft2014-03-092-9/+30
| | | | | | | | | | |
| | | * | | | | | | | Merge branch 'master' into PieceGeneratormadmaxoft2014-03-091-0/+21
| | | |\ \ \ \ \ \ \ \
| | | * \ \ \ \ \ \ \ \ Merge branch 'master' into PieceGeneratormadmaxoft2014-03-091-0/+1
| | | |\ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | PieceGenerator can connect two connectors of the same type.madmaxoft2014-03-092-60/+338
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also added extensive debugging output and a test.
| | | * | | | | | | | | | Added BlockFaceToString() translation function.madmaxoft2014-03-091-0/+20
| | | | | | | | | | | | |
| | | * | | | | | | | | | Added Vector3i::Move().madmaxoft2014-03-092-17/+82
| | | | | | | | | | | | |
| | | * | | | | | | | | | Added the first skeleton code for PieceGenerator.madmaxoft2014-03-092-0/+545
| | | | |_|_|_|/ / / / / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a WIP and won't work / isn't used at all.
| * | | | | | | | | | | Merge branch 'master' into WerrorTycho2014-03-101-2/+0
| |\| | | | | | | | | |
| | * | | | | | | | | | Merge pull request #767 from worktycho/envmatrixMattes D2014-03-101-2/+0
| | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Added support to control build type with env vars
| | | * | | | | | | | | | Move env code part 1worktycho2014-03-071-10/+0
| | | | | | | | | | | | |
| | | * | | | | | | | | | Added support to overide CMake build type with env varsTycho2014-03-071-0/+8
| | | | | | | | | | | | |
| | * | | | | | | | | | | Revert "Fixed some warnings"madmaxoft2014-03-101-10/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 4cb0b82d1df560ad32c92eede91f466c75a87c87.
| * | | | | | | | | | | | Fixed xofts issuesTycho2014-03-104-20/+14
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed test assertsTycho2014-03-104-37/+37
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed assertTycho2014-03-101-14/+17
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'master' into WerrorTycho2014-03-101-7/+19
| |\| | | | | | | | | | |
| | * | | | | | | | | | | Merge pull request #779 from mc-server/tntburnexplodeAlexander Harkness2014-03-101-7/+19
| | |\ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|/ / | | |/| | | | | | | | | | TNT explodes when consumed by fire
| | | * | | | | | | | | | Fixed compileTiger Wang2014-03-101-1/+2
| | | | | | | | | | | | |
| | | * | | | | | | | | | Removed uneeded meta obtainTiger Wang2014-03-091-3/+1
| | | | | | | | | | | | |
| | | * | | | | | | | | | TNT explodes when consumed by fireTiger Wang2014-03-091-6/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed FS#406
| | * | | | | | | | | | | Merge pull request #788 from worktycho/warningsAlexander Harkness2014-03-101-7/+10
| | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed some warnings
| * | | | | | | | | | | | | Fixed Alignment issue in ByteBufferTycho2014-03-103-7/+4
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Removed Some unnessicary macrosTycho2014-03-103-21/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Use string.reserve to avoid the need to do inplace byteswapTycho2014-03-101-10/+6
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Removed unused macro from WSSCompactTycho2014-03-101-1/+0
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed alignment issues in Fireworks SerializerTycho2014-03-101-7/+7
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Removed unused macroTycho2014-03-101-13/+0
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed cast to type with different alignment in BlockingTCPLinkTycho2014-03-101-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed cast between types of different alignment in cSocketTycho2014-03-101-1/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fixed MTRand warningsTycho2014-03-101-4/+4
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'master' into WerrorTycho2014-03-1027-199/+733
| |\| | | | | | | | | | | |
| | * | | | | | | | | | | | Fixed MSVC2008 compilation.madmaxoft2014-03-101-4/+4
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Merge pull request #768 from Howaner/BlockEntitysTiger Wang2014-03-0911-28/+87
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | |_|_|_|_|_|_|/ / / / | | | |/| | | | | | | | | | Add TNT load/save
| | | * | | | | | | | | | | Merge branch 'master' into BlockEntitysHowaner2014-03-0822-65/+633
| | | |\ \ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | | Change TNT Fuse to ticksHowaner2014-03-089-21/+20
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Add TNT Save/Load and add Netbeans projects to .gitignoreHowaner2014-03-086-18/+78
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Merge pull request #731 from mc-server/ballisticmissilesTiger Wang2014-03-0920-171/+646
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|_|_|/ / | | |/| | | | | | | | | | | | Ballistic firework missiles
| | | * | | | | | | | | | | | != FACE_NONETiger Wang2014-03-091-1/+1
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Merge branch 'master' into ballisticmissilesTiger Wang2014-03-09121-1342/+3619
| | | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | |_|_|/ / / / / / / / | | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/ClientHandle.cpp
| | | * | | | | | | | | | | | Hexified coloursTiger Wang2014-03-091-16/+16
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Fixed data length issuesTiger Wang2014-03-092-3/+4
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Demonstrated issues with GetDataLength()Tiger Wang2014-03-092-5/+11
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Improved formatting of username tabcompleteTiger Wang2014-03-091-7/+7
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Moved firework handler to separate functionTiger Wang2014-03-092-48/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Also simplified and improved readability of code
| | | * | | | | | | | | | | | CheckBlockInteractionsRate() fixed & enabledTiger Wang2014-03-094-65/+23
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Fix Linux compileTiger Wang2014-03-091-2/+3
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Removed unneeded includes in Player.cppTiger Wang2014-02-271-7/+0
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Fixed compileTiger Wang2014-02-272-3/+2
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Fixed sheep ASSERTing sometimesTiger Wang2014-02-271-8/+18
| | | | | | | | | | | | | | |
| | | * | | | | | | | | | | | Implemented ballistic missiles (fireworks)Tiger Wang2014-02-2714-84/+591
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Added fireworks
| * | | | | | | | | | | | | | Be more parinoid about int sizesTycho2014-03-093-5/+18
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fixed Mesannine twister to use UInt32Tycho2014-03-094-4/+6
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Merge branch 'master' into WerrorTycho2014-03-0920-184/+300
| |\| | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fixed #778 - stack overflow.comTiger Wang2014-03-091-1/+1
| | | |_|_|_|_|_|_|_|/ / / / | | |/| | | | | | | | | | |
| | * | | | | | | | | | | | Silenced useless MSVC warnings in cMetaRotater.madmaxoft2014-03-091-0/+21
| | | |_|_|_|_|_|_|/ / / / | | |/| | | | | | | | | |
| | * | | | | | | | | | | Hotfix for MSVC compilation.madmaxoft2014-03-091-0/+1
| | | |_|_|_|_|_|/ / / / | | |/| | | | | | | | |
| | * | | | | | | | | | Merge pull request #777 from jfhumann/issue317Mattes D2014-03-095-32/+62
| | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Issue 317: Split cClientHandle::HandleEntityAction() into seperate functions
| | | * | | | | | | | | | Adjusted style of switch/caseJan-Fabian Humann2014-03-093-45/+15
| | | | | | | | | | | | |
| | | * | | | | | | | | | Changed if-else to switch-caseJan-Fabian Humann2014-03-083-39/+33
| | | | | | | | | | | | |
| | | * | | | | | | | | | Split cClientHandle::HandleEntityAction() into three seperate functions HandleEntityCrouch, HandleEntityLeaveBed and HandleEntitySprinting.Jan-Fabian Humann2014-03-085-32/+98
| | | | |_|_|/ / / / / / | | | |/| | | | | | | |
| | * | | | | | | | | | Merge pull request #775 from worktycho/warningsMattes D2014-03-0925-75/+120
| | |\ \ \ \ \ \ \ \ \ \ | | | |_|_|/ / / / / / / | | |/| | | | | | | | | Fixed a few warnings
| | * | | | | | | | | | Slight plugin messaging changesTiger Wang2014-03-091-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Clients are not allowed to register duplicate channels - Clients are not allowed to use channels that were not registered
| | * | | | | | | | | | Merge pull request #729 from worktycho/MetaRotateMattes D2014-03-0813-151/+202
| | |\ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|/ / / | | |/| | | | | | | | | Alternitive solution to #503
| | | * | | | | | | | | Moved returnsworktycho2014-03-081-3/+3
| | | | | | | | | | | |
| | | * | | | | | | | | ReformattedTycho2014-03-0210-20/+20
| | | | | | | | | | | |
| | | * | | | | | | | | Reformated MetaRotaterTycho2014-03-021-19/+30
| | | | | | | | | | | |
| | | * | | | | | | | | Reverted BlockVineworktycho2014-03-021-3/+27
| | | | | | | | | | | |
| | | * | | | | | | | | Fixed errorsTycho2014-03-012-2/+2
| | | | | | | | | | | |
| | | * | | | | | | | | Revesed typedefTycho2014-03-011-1/+1
| | | | | | | | | | | |
| | | * | | | | | | | | Implemented RotationsTycho2014-03-0111-170/+28
| | | | | | | | | | | |
| | | * | | | | | | | | Merge branch 'master' into MetaRotateTycho2014-03-0125-165/+459
| | | |\ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | Final implementation of MetaRotaterTycho2014-03-011-45/+51
| | | | | | | | | | | | |
| | | * | | | | | | | | | Added some Metadate rotaters using templated MixinTycho2014-02-2710-16/+168
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fix IsThread destructorTycho2014-03-091-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Globals.h is now warnings free again.Tycho2014-03-092-10/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also turned off Wpadded as it is indicates potental performance issues rather than potential bugs
| * | | | | | | | | | | | Its a const not a macroTycho2014-03-091-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Take 5Tycho2014-03-091-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Take 4Tycho2014-03-091-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Unsigned types take 3Tycho2014-03-091-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fix gcc error attempt 2Tycho2014-03-091-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fixed gcc errorTycho2014-03-091-1/+1
| | |_|_|_|_|_|_|/ / / / | |/| | | | | | | | | |
| * | | | | | | | | | | Fixed some warningsTycho2014-03-091-7/+10
| | |_|_|/ / / / / / / | |/| | | | | | | | |
| * | | | | | | | | | FIxed int in testTycho2014-03-091-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Added staticTycho2014-03-081-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Added tons more asserts to bytebufferTycho2014-03-081-7/+17
| | | | | | | | | | |
| * | | | | | | | | | Enabled self test of bytebufferTycho2014-03-081-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Fixed issues with int vs size_t and a few other warningsTycho2014-03-0810-28/+26
| | | | | | | | | | |
| * | | | | | | | | | Actually Fixed ByteBufferTycho2014-03-081-3/+3
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'master' into warningsTycho2014-03-089-24/+107
| |\| | | | | | | | |
| | * | | | | | | | | cBlockInfo-related changes from #723andrew2014-03-083-11/+21
| | | |_|/ / / / / / | | |/| | | | | | |
| | * | | | | | | | Merge pull request #764 from xdot/masterMattes D2014-03-073-4/+74
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Fixed water/lava interaction
| | | * | | | | | | | Added some commentsandrew2014-03-072-1/+6
| | | | | | | | | | |
| | | * | | | | | | | Fixed water/lava interactionandrew2014-03-073-4/+69
| | | | | | | | | | |
| | * | | | | | | | | Fixed cBlockArea schematic string saving signature.madmaxoft2014-03-073-9/+12
| | | |_|_|_|_|/ / / | | |/| | | | | | |
| * | | | | | | | | WarningsTycho2014-03-072-1/+3
| | | | | | | | | |
| * | | | | | | | | WarningsTycho2014-03-0711-29/+42
| | | | | | | | | |
| * | | | | | | | | Fixed warningsTycho2014-03-072-3/+21
| | | | | | | | | |
| * | | | | | | | | Fixed warningsTycho2014-03-073-1/+5
| |/ / / / / / / /
| * | | | | | | | Merge pull request #763 from Howaner/BlockEntitysMattes D2014-03-0720-101/+419
| |\ \ \ \ \ \ \ \ | | | |_|_|_|/ / / | | |/| | | | | | Add Flower Pots
| | * | | | | | | Add Lua Bindings for FlowerPotEntity.h and add documentation.Howaner2014-03-0710-14/+18
| | | | | | | | |
| | * | | | | | | Add Flower PotsHowaner2014-03-0717-87/+401
| | | | | | | | |
| * | | | | | | | Fixed a typo.madmaxoft2014-03-071-4/+4
| | | | | | | | |
| * | | | | | | | Merge pull request #760 from Howaner/GlobalFixesMattes D2014-03-0713-6/+116
| |\ \ \ \ \ \ \ \ | | |_|/ / / / / / | |/| | | | | | | Add data backsending, when the Client interacts a Block and the Interact...
| | * | | | | | | Fix commentHowaner2014-03-061-1/+1
| | | | | | | | |
| | * | | | | | | Broadcast the Equipped Item, if the Slot is changed.Howaner2014-03-061-0/+6
| | | | | | | | |
| | * | | | | | | Add SendBlockTo to cWorldInterfaceHowaner2014-03-059-10/+18
| | | | | | | | |
| | * | | | | | | Set tnt step sound to step.grassHowaner2014-03-051-1/+1
| | | | | | | | |
| | * | | | | | | Add data backsending, when the Client interacts a Block and the Interact is cancelled.Howaner2014-03-0510-6/+102
| | |/ / / / / /
| * | | | | | | Added cBlockArea serialization to string.madmaxoft2014-03-073-38/+202
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #665.
| * | | | | | | Merge remote-tracking branch 'xdot/master'madmaxoft2014-03-066-17/+238
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | |
| | * | | | | | Implemented vanilla-like fluid simulatorandrew2014-03-056-17/+238
| | | | | | | |
| * | | | | | | Fixed some gcc warnings in Defines.h.madmaxoft2014-03-041-3/+3
| | | | | | | |
| * | | | | | | Manually exported cCompositeChat modifiers.madmaxoft2014-03-042-7/+268
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds chaining support to them. Fixes #755.
| * | | | | | | cLuaState: Made public the GetStackValue() functions.madmaxoft2014-03-042-54/+61
| | | | | | | |
| * | | | | | | Fixed an assert in map-loading.madmaxoft2014-03-041-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The maps were loaded too soon, the world wasn't initialized yet.
| * | | | | | | Fixed previous weather changes.madmaxoft2014-03-032-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cWorld::GetDefaultWeatherInterval() returns -1 for unknown weather.
| * | | | | | | Merge pull request #746 from Howaner/SlabsMattes D2014-03-034-19/+96
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | / | | | |_|_|_|/ | | |/| | | | Add Trapdoor Functions to cWorld and fix Trapdoor Redstone Bugs
| | * | | | | Add cancelling to WeatherChanging event.Howaner2014-03-022-13/+43
| | | | | | |
| | * | | | | More documentation (thanks to madmaxoft) and use GetBlockTypeMetaHowaner2014-03-022-6/+10
| | | | | | |
| | * | | | | Add Trapdoor Functions to cWorld and fix Trapdoor Redstone BugsHowaner2014-03-024-6/+49
| | | | | | |
| * | | | | | Removed if conditionandrew2014-03-021-4/+1
| | | | | | |
| * | | | | | cBlockInfo now manages the respective cBlockHandlerandrew2014-03-0211-73/+70
| | |_|_|_|/ | |/| | | |
| * | | | | Fixed MSVC warnings in DeprecatedBindings.madmaxoft2014-03-021-8/+76
| | | | | |
| * | | | | Added blockface mirroring and rotating.madmaxoft2014-03-021-0/+50
| | | | | |
| * | | | | Merge pull request #738 from xdot/masterMattes D2014-03-0240-503/+1013
| |\ \ \ \ \ | | | | | | | | | | | | | | Refactored global block property arrays
| | * | | | | GetById => Getandrew2014-03-023-22/+22
| | | | | | |
| | * | | | | Removed g_BlockXXX arraysandrew2014-03-024-440/+4
| | | | | | |
| | * | | | | Manually exported g_Block tablesandrew2014-03-024-0/+445
| | | | | | |
| | * | | | | Exported cBlockInfoandrew2014-03-022-3/+9
| | | | | | |
| | * | | | | g_BlockXXX => cBlockInfo::XXXandrew2014-03-0133-73/+91
| | | | | | |
| | * | | | | Refactored global block property arraysandrew2014-03-012-0/+477
| | | |_|/ / | | |/| | |
| * | | | | Creeper fixestonibm192014-03-022-10/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixed explosion time (1.5s, according to minecraftwiki) - Creeper explodes if right clicked with flint and steel
| * | | | | Merge pull request #733 from Howaner/SlabsMattes D2014-03-023-13/+35
| |\ \ \ \ \ | | | |/ / / | | |/| | | Fix Double Slabs, fix Slab Meta and add more things to burnable
| | * | | | Use switch in GetStepSoundHowaner2014-02-282-8/+6
| | | | | |
| | * | | | Merge branch 'master' into SlabsHowaner2014-02-2812-41/+137
| | |\ \ \ \
| | * | | | | Fix Double Slabs, fix Slab Meta and add more things to burnableHowaner2014-02-283-13/+37
| | | |_|/ / | | |/| | |
| * | | | | Added more documentation for FastNBT parser.madmaxoft2014-03-021-3/+45
| | | | | |
| * | | | | ChunkDesc warns about StructureGen's deprecation.madmaxoft2014-03-011-0/+2
| | | | | |
| * | | | | Unified StructureGens and FinisherGens.madmaxoft2014-03-0110-163/+128
| | |_|/ / | |/| | | | | | | | | | | | | Now they are all Finishers. Fixes #398.
| * | | | Exported cScoreboard::ForEachTeamandrew2014-03-013-1/+34
| | | | |
| * | | | Shortened enumsandrew2014-03-014-58/+58
| | | | |
| * | | | Exported cScoreboard::ForEachObjectiveandrew2014-03-013-4/+43
| | | | |
| * | | | Exported and documented cScoreboardandrew2014-03-014-49/+70
| | | | |
| * | | | Forgotten changes to cChunkInterface.madmaxoft2014-03-011-2/+2
| | | | |
| * | | | Removed cBlockHandler forward declaration from cChunkInterface.madmaxoft2014-03-011-9/+22
| | | | | | | | | | | | | | | | | | | | Wasn't needed. Also reformatted the code.
| * | | | Improved comments in float size check.madmaxoft2014-03-011-2/+2
| | | | |
| * | | | Fixed multiple gcc warnings about unused params.madmaxoft2014-02-287-5/+78
| | | | |
| * | | | Documented the changes in cJukeboxEntity.madmaxoft2014-02-281-2/+3
| | | | |
| * | | | Moved common cGroupManager code to a separate function.madmaxoft2014-02-283-12/+30
| | |/ / | |/| | | | | | | | | | This fixes my concerns in PR #709.
| * | | Merge pull request #709 from Howaner/GlobalFixesMattes D2014-02-288-24/+112
| |\ \ \ | | | | | | | | | | Add 'Group not found', when the Server load the users.ini and add auto g...
| | * | | Better Jukebox APIHowaner2014-02-213-16/+52
| | | | |
| | * | | Remove users.ini generation in Player.cpp and use the CheckUsers() FunctionHowaner2014-02-211-6/+1
| | | | |
| | * | | Remove old Output FinishHowaner2014-02-211-2/+0
| | | | |
| | * | | Unicode :-(Howaner2014-02-211-1/+1
| | | | |
| | * | | Add 'Group not found', when the Server load the users.ini and add auto generate from users.iniHowaner2014-02-215-2/+61
| | | | |
| * | | | Better fix for the 32-bit float reading.madmaxoft2014-02-281-4/+5
| | | | |
| * | | | Merge pull request #730 from tonibm19/masterAlexander Harkness2014-02-271-0/+2
| |\ \ \ \ | | | | | | | | | | | | added mooshroom to cow conversion
| | * | | | added mooshroom to cow conversiontonibm192014-02-271-0/+2
| | | | | |
| * | | | | Added a "nooutbuf" cmdline param.madmaxoft2014-02-272-13/+18
| | |_|/ / | |/| | | | | | | | | | | | | This forces that the stdout stream uses no buffer, even when not a TTY. Used for running MCServer under ZeroBraneStudio.
| * | | | Fixed crash and some warnings in map handling.madmaxoft2014-02-272-3/+5
| | |_|/ | |/| | | | | | | | | | Fixes #728.
| * | | Fixed a gcc warning in FastNBT.h.madmaxoft2014-02-261-2/+11
| | | |
| * | | Attempted fix for several GCC warnings.madmaxoft2014-02-263-3/+15
| |/ /
| * | Added more utility functions to cCuboid.madmaxoft2014-02-262-4/+105
| | | | | | | | | | | | GetVolume(), Expand(), ClampX(), ClampY(), ClampZ()
| * | Added useful parameter overloads to cBlockArea Lua API.madmaxoft2014-02-242-0/+133
| | |
| * | Fixed tolua export for Byte.madmaxoft2014-02-241-0/+7
| | | | | | | | | | | | No longer treated as an unknown class.
| * | Fixed compilation in MSVC (forward class definitions).madmaxoft2014-02-242-0/+2
| | |
| * | BlockEntities is warnings freeTycho2014-02-246-3/+11
| | |
| * | Merge pull request #710 from TheJumper/masterMattes D2014-02-2428-39/+517
| |\ \ | | | | | | | | Fixed Mob Drops, Add Rare, Uncommon and Gear Drops, Looting inflicts Drops
| | * | Fixed Formatting, added compiler warning suppressing methods, fixed commentsTheJumper2014-02-245-3/+6
| | | |
| | * | Fixed Formatting, Added DropChances and CanPickUpLoot attributes to MonstersTheJumper2014-02-2329-40/+515
| | | |
| | * | BlockBed.cpp: Fixed Multiple people in one bed.TheJumper2014-02-231-7/+18
| | | | | | | | | | | | | | | | OnUse in BlockBed.cpp now checks whether bit flag 0x4 in the Data values of the bed is set before somebody can try to sleep in the bed.
| | * | Fixed bindings for cBlockArea:Get(Rel)BlockTypeMeta().madmaxoft2014-02-232-29/+110
| | | | | | | | | | | | | | | | They no longer require the ghost output params.
| | * | Rename SkullEntity to MobHeadEntityHowaner2014-02-2323-256/+254
| | | |
| | * | Add break to Protocol17x.cpp and use new comment delimiterHowaner2014-02-232-7/+8
| | | |
| | * | Add Heads completelyHowaner2014-02-2314-7/+154
| | | |
| | * | Add Skulls/HeadsHowaner2014-02-2313-5/+354
| | | |
| * | | Fixed MCServer not compiling with C++03 compilersSTRWarrior2014-02-243-12/+12
| | | |
| * | | Small improvements to boats.STRWarrior2014-02-241-3/+7
| | | |
| * | | Merge pull request #669 from xdot/masterTiger Wang2014-02-2428-10/+1871
| |\ \ \ | | | | | | | | | | Implementation of in-game maps :D
| | * | | Maps: Improvementsandrew2014-02-237-13/+26
| | | | |
| | * | | Manually exported DoWithMapandrew2014-02-234-2/+11
| | | | |
| | * | | Documented and exported cMapManagerandrew2014-02-232-3/+6
| | | | |
| | * | | Documented and exported cMapandrew2014-02-223-9/+53
| | | | |
| | * | | Semi-working implementation of cMap::UpdatePixelandrew2014-02-222-11/+95
| | | | |
| | * | | Split cMap::UpdateClientandrew2014-02-212-73/+114
| | | | |
| | * | | Thread safe cMap managerandrew2014-02-207-17/+275
| | | | |
| | * | | Manual merge (Fixed conflicts)andrew2014-02-2079-389/+2685
| | |\ \ \
| | * | | | cMapDecorator: Implemented random rotationsandrew2014-02-192-13/+18
| | | | | |
| | * | | | Documented cMapandrew2014-02-193-7/+31
| | | | | |
| | * | | | Map decorators; Map clientsandrew2014-02-1812-45/+351
| | | | | |
| | * | | | Map item handler; Fixed several bugsandrew2014-02-1713-29/+195
| | | | | |
| | * | | | cMap::UpdateRadiusandrew2014-02-154-16/+121
| | | | | |
| | * | | | EmptyMap item handlerandrew2014-02-143-4/+52
| | | | | |
| | * | | | Send map when selectedandrew2014-02-147-27/+114
| | | | | |
| | * | | | IDCount Serializationandrew2014-02-137-3/+191
| | | | | |
| | * | | | Implementation of in-game mapsandrew2014-02-1313-0/+596
| | | | | |
| * | | | | Removed an unused member variable from cChunk.madmaxoft2014-02-242-8/+0
| | | | | |
| * | | | | Fixed crash in cBlockArea rotation.madmaxoft2014-02-241-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #720.
| * | | | | Fixed a possible crash in cWorld::WakeUpSimulatorsInArea().madmaxoft2014-02-241-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | The Y coords weren't checked.
| * | | | | Merge pull request #716 from Howaner/BreakFixMattes D2014-02-231-0/+10
| |\ \ \ \ \ | | | | | | | | | | | | | | No Sword Block Destroying in Creative Mode
| | * | | | | Use the ItemCategorie::IsSword() Method.Howaner2014-02-232-20/+1
| | | | | | |
| | * | | | | No Sword Block Destroying in Creative ModeHowaner2014-02-232-0/+29
| | | | | | |
| * | | | | | fixed globals.h warningsTycho2014-02-233-2/+11
| |/ / / / /
| * | | | | Added cBlockArea::GetVolume, exported to Lua API.madmaxoft2014-02-231-27/+30
| | | | | |
| * | | | | Added cBlockArea:GetSize() and :GetOrigin() to Lua API.madmaxoft2014-02-231-0/+64
| | | | | | | | | | | | | | | | | | | | | | | | These don't have a direct C++ equivalent, but are rather useful for the plugins.
| * | | | | cClientHandle manages the client-registered plugin channels.madmaxoft2014-02-202-36/+123
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #706.
| * | | | | Removed problematic utf8.madmaxoft2014-02-201-2/+2
| | | | | |
| * | | | | Merge pull request #704 from Howaner/GlobalFixesMattes D2014-02-206-29/+81
| |\ \ \ \ \ | | | |_|_|/ | | |/| | | Global fixes
| | * | | | Bad UTF-8 o.OHowaner2014-02-201-2/+2
| | | | | |
| | * | | | Remove typeinfo import in IncrementalRedstoneSimulatorHowaner2014-02-201-2/+0
| | | | | |
| | * | | | Fix CauldronHowaner2014-02-201-8/+11
| | | | | |
| | * | | | Add Wolf Heal with FoodHowaner2014-02-201-10/+34
| | | | | |
| | * | | | Add Pressure Plate SoundHowaner2014-02-201-0/+9
| | | | | |
| | * | | | Add Light weighted pressure platesHowaner2014-02-203-10/+24
| | | | | |
| | * | | | Add Hay Bale to BurnableHowaner2014-02-201-0/+1
| | | | | |
| | * | | | Add 'Meta < 3' to CauldronHowaner2014-02-201-5/+8
| | | | | |
| * | | | | Merge pull request #702 from TheJumper/masterMattes D2014-02-201-7/+18
| |\ \ \ \ \ | | | | | | | | | | | | | | BlockBed.cpp: Fixed Multiple people in one bed.
| | * | | | | BlockBed.cpp: Fixed space at if statementTheJumper2014-02-201-1/+1
| | | | | | | | | | | | | | | | | | | | | Added a space after an if statement and before the first bracket to keep up code conventions.
| | * | | | | BlockBed.cpp: Fixed Multiple people in one bed.TheJumper2014-02-201-7/+18
| | | |_|/ / | | |/| | | | | | | | | OnUse in BlockBed.cpp now checks whether bit flag 0x4 in the Data values of the bed is set before somebody can try to sleep in the bed.
| * | | | | Disabled the leak finder.madmaxoft2014-02-202-2/+6
| | |/ / / | |/| | |
| * | | | Merge pull request #700 from Howaner/GlobalFixesMattes D2014-02-207-8/+84
| |\ \ \ \ | | |/ / / | |/| | | Add new Trees (without Generator)
| | * | | Add BlockNewLeaves.h and rename Darkoac to DarkoakHowaner2014-02-195-15/+57
| | | | |
| | * | | Add new Trees (without Generator)Howaner2014-02-196-0/+34
| | | |/ | | |/|
| * | | Fixed bindings for cBlockArea:Get(Rel)BlockTypeMeta().madmaxoft2014-02-202-29/+110
| | | | | | | | | | | | | | | | They no longer require the ghost output params.
| * | | Merge pull request #697 from Howaner/SkullMattes D2014-02-1921-6/+501
| |\ \ \ | | |/ / | |/| | Add Skulls/Heads to MCServer
| | * | Rename SkullEntity to MobHeadEntityHowaner2014-02-1923-256/+254
| | | |
| | * | Add break to Protocol17x.cpp and use new comment delimiterHowaner2014-02-192-7/+8
| | | |
| | * | Add Heads completelyHowaner2014-02-1814-7/+154
| | | |
| | * | Add Skulls/HeadsHowaner2014-02-1713-5/+354
| | | |
| * | | Merge branch 'master' into itemframesTiger Wang2014-02-1824-11/+433
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Entities/Entity.h src/WorldStorage/NBTChunkSerializer.cpp
| | * \ \ Merge pull request #696 from mc-server/paintingsMattes D2014-02-1817-3/+231
| | |\ \ \ | | | | | | | | | | | | Implemented paintings, fixes #689
| | | * | | Properly exported and documented paintingsTiger Wang2014-02-183-2/+4
| | | | | |
| | | * | | Comments & new BLOCK_FACE constantsTiger Wang2014-02-181-7/+10
| | | | | |
| | | * | | Implemented paintings, fixes #689Tiger Wang2014-02-1815-3/+226
| | | | | | | | | | | | | | | | | | | | | | | | + Implemented paintings
| | * | | | The cuboid for cWorld::SetAreaBiome() doesn't need sorting.madmaxoft2014-02-182-2/+7
| | | | | |
| | * | | | Added cWorld:SetAreaBiome() API function.madmaxoft2014-02-186-3/+164
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #675.
| | * | | | Added a bit more documentation to cForEachChunkProvider.madmaxoft2014-02-182-5/+33
| | |/ / /
| * | | | Merge branch 'itemframes' of https://github.com/mc-server/MCServer into itemframesTiger Wang2014-02-181-1/+1
| |\ \ \ \
| | * | | | Fixed possible ASSERT failureTiger Wang2014-02-181-1/+1
| | | | | |
| * | | | | De-breaked stuffTiger Wang2014-02-181-2/+0
| |/ / / /
| * | | | Changed BlockFace type to eBlockFaceTiger Wang2014-02-183-26/+27
| | | | |
| * | | | Merge branch 'itemframes' of https://github.com/mc-server/MCServer into itemframesTiger Wang2014-02-181-7/+10
| |\ \ \ \
| | * | | | Added an explanatory commentTiger Wang2014-02-181-0/+2
| | | | | |
| | * | | | Used new BLOCK_FACE constantsTiger Wang2014-02-181-7/+8
| | | | | | | | | | | | | | | | | | Also added more comments
| * | | | | Added a braceTiger Wang2014-02-181-0/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ==== { } { __ } { | | } ==== REMOVE ALL THE BRACES!!
| * / / / Implemented item frames, a part of #689Tiger Wang2014-02-187-2/+233
| |/ / / | | | | | | | | | | | | | | | | + Implemented Item Frames * Fixed Pitch and Yaw being wrongly flipped in the protocol (XOFT!)
| * | | Added cPluginManager:GetPluginsPath() to the Lua API.madmaxoft2014-02-172-1/+5
| | | |
| * | | Add Lua plugin path to package.path and .cpath.madmaxoft2014-02-173-0/+37
| | | | | | | | | | | | | | | | Fixes #693.
| * | | Merge pull request #690 from tonibm19/masterAlexander Harkness2014-02-171-2/+2
| |\ \ \ | | |/ / | |/| | Now mobs can't escape from fences.
| | * | Improved formattingtonibm192014-02-171-2/+2
| | | |
| | * | Now mobs can't escape from fences.tonibm192014-02-161-2/+2
| | | |
| * | | Merge pull request #692 from mc-server/wolfcleanupAlexander Harkness2014-02-171-30/+15
| |\ \ \ | | | | | | | | | | Wolf cleanup
| | * | | Fixes to previous commitTiger Wang2014-02-161-9/+10
| | | | |
| | * | | Slight cleanup of wolf codeTiger Wang2014-02-161-23/+7
| | | | |
| * | | | Fixed a memory leak in CompositeChat.madmaxoft2014-02-171-0/+3
| | | | |
| * | | | Links sent via chat messages are clickable.madmaxoft2014-02-164-9/+34
| | | | | | | | | | | | | | | | | | | | Fixes #658.
| * | | | Implemented cCompositeChat::ParseText(), incl. self-test.madmaxoft2014-02-162-1/+211
| | | | |
| * | | | Fixed cBoundingBox self-test code-style.madmaxoft2014-02-161-10/+10
| | | | | | | | | | | | | | | | | | | | Also made the class name unique and the global variable static, to avoid linkage problems with other self-tests
| * | | | Merge pull request #683 from mc-server/redstoneimprovementsMattes D2014-02-165-94/+167
| |\ \ \ \ | | |_|/ / | |/| | | Redstone speed improvements
| | * | | Fixed a glaring bug with chunk cross-simulatingTiger Wang2014-02-161-9/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * A chunk's redstone blocks list is no longer touched if AddBlock was being called with another chunk's coordinates * Fixed chunk boundary checks
| | * | | Added a 'default:' for SimChunk()'s switchTiger Wang2014-02-151-0/+1
| | | | |
| | * | | A fix and an improvementTiger Wang2014-02-152-23/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed a special case with the wrong ChunkX/Z values being used to calculate a relative position * Simplified data structure adding and removing operations (no more pointers!) - Removed one character of whitespace :D
| | * | | Fixed TNT fizzing everywhereTiger Wang2014-02-152-2/+2
| | | | |
| | * | | Sizeable speed improvements to redstoneTiger Wang2014-02-153-83/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Moved all simulator data into individual chunks * Cleaned up parameters for functions and some code * Fixed repeaters powering off faster than they power on The main issue before was that, although the redstone simulator stored blocks to be simulated in individual cChunks, other data, such as powered lists, and etcetera, were global regardless of which chunk was being simulated. Therefore, with worlds with lots of redstone, each tick saw the ticking of chunks, which themselves iterated through the entire dataset needlessly, creating LOTS of lag. Should be better now :)
| * | | | Merge pull request #686 from Howaner/GlobalFixesMattes D2014-02-165-3/+11
| |\ \ \ \ | | |_|/ / | |/| | | Add Locale to ClientHandle
| | * | | Add Locale to ClientHandleHowaner2014-02-165-3/+11
| | | | |
| * | | | Fixed minor formatting issues from #682Tiger Wang2014-02-163-16/+3
| |/ / / | | | | | | | | | | | | | | | | - Removed unused PlaySoundEffect * Simplified and parenthesised code
| * | | Replace random Float Generation and broadcast the Exp Pickup SoundHowaner2014-02-162-9/+4
| | | |
| * | | Add Exp Bottle EffectsHowaner2014-02-164-1/+23
| | | |
| * | | Set max. Players in the Tablist to 60Howaner2014-02-161-1/+1
| | | |
| * | | Disable Hunger DeathHowaner2014-02-161-1/+7
| | | |
| * | | Removed the unnecessary LoopPlayersAndBroadcastChat() functions.madmaxoft2014-02-154-23/+19
| | | |
| * | | Implemented cCompositeChat.madmaxoft2014-02-1518-21/+671
| | | | | | | | | | | | | | | | | | | | This allows plugins to send composite chat messages, containing URLs, commands to run and cmdline suggestions. Fixes #678.
| * | | Merge pull request #679 from mc-server/NotchDeathAlexander Harkness2014-02-151-0/+6
| |\ \ \ | | |/ / | |/| | NotchApple
| | * | If a player is called "Notch" he drops an apple. http://minecraft.gamepedia.com/NotchSTRWarrior2014-02-151-0/+6
| | | |
| * | | Add more Sounds to Redstone SimulatorHowaner2014-02-151-1/+23
| | | |
| * | | Add Fence Gate to Redstone SimulatorHowaner2014-02-152-0/+31
| | | |
| * | | Merge pull request #664 from mc-server/generalfixesMattes D2014-02-1519-46/+130
| |\ \ \ | | | | | | | | | | General fixes
| | * | | Fixed typographical errorTiger Wang2014-02-151-2/+1
| | | | |
| | * | | Removed debug messages againTiger Wang2014-02-151-6/+0
| | | | |
| | * | | Added proper debug messagesTiger Wang2014-02-131-3/+8
| | | | |
| | * | | Fancy stuff with constant referencesTiger Wang2014-02-131-2/+2
| | | | |
| | * | | Added more missing GetClassStatic()sTiger Wang2014-02-122-0/+4
| | | | |
| | * | | Removed some unneeded BroadcastWholeWindow()sTiger Wang2014-02-124-23/+2
| | | | |
| | * | | Changed inheritance a bitTiger Wang2014-02-128-33/+54
| | | | | | | | | | | | | | | | | | | | * cBlockEntityWithItems now inherits from cBlockEntityWindowOwner
| | * | | Made player jump reset less ambiguousTiger Wang2014-02-121-1/+2
| | | | |
| | * | | Simplified Attack() tracingTiger Wang2014-02-121-1/+6
| | | | |
| | * | | Improved pressure platesTiger Wang2014-02-122-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | + Two (or more) pressure plates can be triggered at the same time * Fixed issues caused by pressure plates not being in the sources list
| | * | | Fixed #190Tiger Wang2014-02-111-2/+67
| | | | | | | | | | | | | | | | | | | | + Hoppers now collect pickups above them
| | * | | Fixed #627Tiger Wang2014-02-115-21/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Attack() is now called from cAggressive instead of cMonster * Monsters can no longer attack through walls * Should fix last remnants of player damage after teleporting (that both STR and bearbin contributed fixes to :P)
| | * | | Fixed #612Tiger Wang2014-02-112-0/+16
| | | | | | | | | | | | | | | | | | | | * Chests send contents updates to client
| * | | | Merge pull request #677 from mc-server/BroadcastParticleEffectAlexander Harkness2014-02-151-1/+1
| |\ \ \ \ | | | |/ / | | |/| | Broadcast particle effect
| | * | | Exported cWorld::BroadcastParticleEffect.STRWarrior2014-02-151-1/+1
| | | |/ | | |/|
| * | | Merged branch 'narroo/master'.madmaxoft2014-02-132-1/+36
| |\ \ \ | | |/ / | |/| | | | | | This merges pull request #661.
| | * | Fixed formatting. Moved UnloadUnusedChunks from public to private.narroo2014-02-112-4/+10
| | | |
| | * | Fixed formatting of previous commit.narroo2014-02-112-2/+7
| | | |
| | * | Fixed bug #385. UnloadUnusedChunks now has the same interface asnarroo2014-02-112-1/+25
| | | | | | | | | | | | | | | | | | | | | | | | SaveAllChunks. Meaning, QueueUnloadUnusedChunks and the supporting cTaskUnloadUnusedChunks has been added. Use QueueUnloadUnusedChunks from now on to prevent deadlocking.
| * | | Fixed #573STRWarrior2014-02-121-4/+4
| | | |
| * | | cWorld:ChunkStay() accepts nils as callbacks.madmaxoft2014-02-111-5/+3
| | | | | | | | | | | | | | | | Also removed leftover debug logging.
| * | | Added cLuaState::CheckParamFunctionOrNil().madmaxoft2014-02-112-2/+37
| | |/ | |/| | | | | | | Also fixed error reporting for the two function-checking functions.
| * | More gcc warnings fixed.madmaxoft2014-02-112-4/+5
| | |
| * | Made cChunkStay's destructor virtual.madmaxoft2014-02-111-1/+1
| | |
| * | Fixed gcc warnings in Item.h.madmaxoft2014-02-111-21/+21
| | |
| * | Fixed nested plugin function calls.madmaxoft2014-02-111-6/+9
| | |
| * | Merge branch 'master' into ChunkStaymadmaxoft2014-02-111-2/+1
| |\ \
| | * | Added additional parenthasiesworktycho2014-02-101-2/+1
| | | |
| | * | Merge branch 'master' into boatsFixTycho2014-02-101-0/+1
| | |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/Items/ItemBoat.h
| | | * | Maybe fixed boat placingtonibm192014-02-101-1/+1
| | | |/
| | * / Fixed stupid mistax in conditionalworktycho2014-02-101-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.
| * | Added LuaChunkStay to Bindings sources.madmaxoft2014-02-101-36/+47
| | | | | | | | | | | | This should fix *nix compilation. Also alpha-sorted the lists.
| * | Rewritten Lua ChunkStay API into a single function, cWorld:ChunkStay().madmaxoft2014-02-109-87/+213
| | | | | | | | | | | | This fixes problems with indeterminate class object lifespan (Lua-GC) and forgetting to disable it or keep it until ready.
| * | cLuaState: Stack traces don't include ghost 0-th element.madmaxoft2014-02-101-1/+1
| | |
| * | Added cPluginLua::cOperation.madmaxoft2014-02-101-1/+27
| | | | | | | | | | | | This class should be used to lock-and-access the plugin's LuaState. cPluginLua::GetLuaState() is unsafe and by this commit obsolete.
| * | First working version of cLuaChunkStay.madmaxoft2014-02-094-17/+92
| | | | | | | | | | | | It works, but has random failures, probably due to threading issues.
| * | Initial Lua cChunkStay export.madmaxoft2014-02-094-1/+123
| | |
| * | cLuaState::cRef can be unbound and re-bound.madmaxoft2014-02-092-9/+60
| | | | | | | | | | | | This will allow us to store Lua references as member variables in classes and initialize those later than in the constructor.
| * | Added AllToLua.pkg to MSVC project files.madmaxoft2014-02-091-0/+2
| | | | | | | | | | | | MSVC ignores the file when compiling and it makes it easier to open it up for editing.
| * | Merge remote-tracking branch 'origin/master' into ChunkStaymadmaxoft2014-02-0930-127/+328
| |\|
| | * Fixed compile and some warnings in MSVSTiger Wang2014-02-097-17/+6
| | |
| | * Merge remote-tracking branch 'origin/master' into playerimprovementsTiger Wang2014-02-0933-1897/+2087
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Root.cpp src/Root.h src/World.cpp
| | | * Merge pull request #656 from mc-server/ReloadGroupsMattes D2014-02-091-0/+11
| | | |\ | | | | | | | | | | The console reload command also reloads the groups.
| | | | * "reload" is back.STRWarrior2014-02-091-0/+7
| | | | |
| | | | * Split "reload" in "reloadplugins" and "reloadgroups".STRWarrior2014-02-091-2/+5
| | | | |
| | | | * The console reload command also reloads the groups.STRWarrior2014-02-091-0/+1
| | | | |
| | * | | Merge branch 'master' into playerimprovementsTiger Wang2014-02-0992-214/+347
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: MCServer/Plugins/APIDump/APIDesc.lua
| | * | | | Fixed a boat ASSERTTiger Wang2014-02-091-2/+8
| | | | | |
| | * | | | Moved Gamemode setting into General root tagTiger Wang2014-02-071-1/+1
| | | | | |
| | * | | | Added sender name to PM if prefixes disabledTiger Wang2014-02-072-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | * Also moved the PVP setting into Mechanics
| | * | | | Improved chat messaging functionsTiger Wang2014-02-079-111/+155
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Moved string manipulation into cClientHandle and therefore... + Added configuration option for prefixes. * Cleaned up code. * Updated documentation for API.
| | * | | | Server internally uses new functionsTiger Wang2014-02-064-17/+13
| | | | | |
| | * | | | Added more chat functionsTiger Wang2014-02-064-27/+46
| | | | | |
| | * | | | Reduced max explosions per tickTiger Wang2014-02-051-1/+1
| | | | | |
| | * | | | Fixed explosions bugTiger Wang2014-02-053-32/+13
| | | | | | | | | | | | | | | | | | | | | | | | * Fixed bug where explosions would sometimes never be sent
| | * | | | Fixed annoying creative on fire bugTiger Wang2014-02-052-0/+20
| | | | | |
| | * | | | Fixed a bunch of MSVS warningsTiger Wang2014-02-056-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Possibly also fixed some bugs with pathfinding and TNT, though unlikely
| | * | | | Added more SendMessageXXX() functionsTiger Wang2014-02-043-47/+62
| | | | | |
| | * | | | Pickup constructor no longer exportedTiger Wang2014-02-033-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It didn't do anything without Initialize() exported, anyway, pickups are spawned with cWorld.
| | * | | | Added SendMessageXXX() to cPlayerTiger Wang2014-02-032-1/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As requested by @bearbin, one no longer needs to download a file that links to Core. The server does it! Hopefully this encourages standards compliance.
| | * | | | Partial fix for #130Tiger Wang2014-02-031-0/+1
| | | | | |
| | * | | | Fixed #491Tiger Wang2014-02-031-2/+14
| | | | | |
| | * | | | Fixed a crash bugTiger Wang2014-02-032-11/+5
| | | | | |
| | * | | | Merge remote-tracking branch 'origin/master' into playerimprovementsTiger Wang2014-02-0311-80/+219
| | |\ \ \ \
| | * | | | | Fixed #626Tiger Wang2014-02-033-13/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed consumption of carrots and potatoes
| | * | | | | Fixed issues with farmlandTiger Wang2014-02-032-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed farmland reversion checks not taking into account carrots and potatoes * Fixed #623
| | * | | | | Server now handles join messages alsoTiger Wang2014-02-032-10/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Revised as well hook documentation
| * | | | | | Moved a forgotten comment back to its place.madmaxoft2014-02-081-2/+2
| | | | | | |
| * | | | | | Fixed lighting thread queueing.madmaxoft2014-02-081-2/+4
| | | | | | |
| * | | | | | Fixed ChunkStay initialization.madmaxoft2014-02-081-1/+1
| | | | | | |
| * | | | | | Fixed gcc compilation.madmaxoft2014-02-081-1/+1
| | | | | | |
| * | | | | | Initial ChunkStay code.madmaxoft2014-02-0811-406/+560
| | |_|_|/ / | |/| | | |
| * | | | | Merge pull request #653 from mc-server/RedstoneSimulatorMattes D2014-02-088-1772/+1881
| |\ \ \ \ \ | | | |_|_|/ | | |/| | | Improvements for the redstone simulator.
| | * | | | Fixed comment.STRWarrior2014-02-081-1/+1
| | | | | |
| | * | | | Renamed cRedstoneManager to cRedstoneSimulator and renamed cRedstoneSimulator to cIncrementalRedstoneSimulator (Might change later).STRWarrior2014-02-0710-1826/+1822
| | | | | |
| | * | | | Fixed some end of linesSTRWarrior2014-02-072-2/+2
| | | | | |
| | * | | | Implemented an easy way of adding new redstone simulators.STRWarrior2014-02-076-9/+122
| | | | | | | | | | | | | | | | | | | | | | | | Also added a "noop" redstone simulator that does the same as the fluid version.
| * | | | | Fixed cWorld:TryGetHeight() API.madmaxoft2014-02-081-1/+5
| |/ / / /
| * | | | WebAdmin is stopped properly on server shutdown / restart.madmaxoft2014-02-073-36/+55
| | | | | | | | | | | | | | | | | | | | Fixes #272.
| * | | | Fixed wiki link in auto-generated settings.ini.madmaxoft2014-02-071-1/+2
| | | | |
| * | | | Merge pull request #648 from worktycho/runMCServerMattes D2014-02-051-9/+27
| |\ \ \ \ | | | | | | | | | | | | Added BoundingBox Test
| | * | | | Change Output to stderrworktycho2014-02-051-4/+3
| | | | | |
| | * | | | Merge branch 'master' into runMCServerTycho2014-02-0516-45/+96
| | |\ \ \ \
| | * | | | | Modified automatic test for boundingBoxTycho2014-02-051-7/+26
| | | | | | |
| | * | | | | Simplified shutdownTycho2014-02-051-4/+0
| | | | | | |
| | * | | | | Added support to start up MCServer and then immediatly sut it down in travisTycho2014-02-051-0/+4
| | | | | | |
| * | | | | | Merge pull request #649 from mc-server/GroupsPermissionsMattes D2014-02-054-36/+1
| |\ \ \ \ \ \ | | |_|/ / / / | |/| | | | | Removed deprecated HasCommand function
| | * | | | | Removed deprecated HasCommand functionSTRWarrior2014-02-054-36/+1
| | | | | | |
| * | | | | | Merge pull request #645 from mc-server/GroupsPermissionsMattes D2014-02-056-18/+69
| |\| | | | | | | | | | | | | | | | | | | Improvements to the GroupManager
| | * | | | | Forgot extra lines.STRWarrior2014-02-051-0/+4
| | | | | | |
| | * | | | | Improvements:STRWarrior2014-02-056-22/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a function in cRoot that allows you to reload all the groups permissions. Note: Players don't automatically load their new permissions. You can use cPlayer::LoadPermissionsFromDisk for that.
| * | | | | | Merge pull request #646 from worktycho/warningfixesAlexander Harkness2014-02-0510-27/+27
| |\ \ \ \ \ \ | | |_|/ / / / | |/| | | | | Fixed most of the reordering warnings
| | * | | | | Fixed most of the reordering warningsTycho2014-02-0512-33/+33
| | | | | | |
| * | | | | | Improved the signedness conversion.madmaxoft2014-02-051-2/+2
| | | | | | |
| * | | | | | Added cPluginManager:LogStackTrace() to the Lua API.madmaxoft2014-02-051-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #637.
| * | | | | | Crypto: Removed unused member, fixed gcc warning.madmaxoft2014-02-042-6/+4
| | | | | | |
| * | | | | | Added dtExplosion to damage<->string functions.madmaxoft2014-02-041-1/+2
| | | | | | |
| * | | | | | Protocol 1.7: Fixed a signed / unsigned comparison warning.madmaxoft2014-02-041-2/+2
| | |_|_|_|/ | |/| | | |
| * | | | | Fixed a gcc warning in ManualBindings.madmaxoft2014-02-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Constructor member order...
| * | | | | Removed a useless check in cLuaState.madmaxoft2014-02-041-3/+1
| | | | | |
| * | | | | Fixed a warning in cItem in gcc.madmaxoft2014-02-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Constructor member order...
| * | | | | Protocol 1.7 uses char for blockface.madmaxoft2014-02-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | That should fix #644 on RasPi.
| * | | | | Merge pull request #644 from worktycho/warningfixesMattes D2014-02-0476-178/+199
| |\| | | | | | | | | | | | | | | | Improved Type safety of eBlockFace
| | * | | | Fix gcc not having operator ++ on enumsTycho2014-02-041-6/+7
| | | | | |
| | * | | | Improved Type safety of eBlockFaceTycho2014-02-0476-174/+194
| | | | | | | | | | | | | | | | | | | | | | | | May Fix #640
| * | | | | Fixed chest placement.madmaxoft2014-02-041-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #624.
| * | | | | Merge pull request #635 from tonibm19/masterMattes D2014-02-045-3/+16
| |\ \ \ \ \ | | |/ / / / | |/| | | | Exported Item:IsEnchantable and Monster:MoveToPosition to Lua API
| | * | | | Blank lines and indentation.tonibm192014-02-041-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | Also removed GetClosestPlayer documentation
| | * | | | Not exporting FindClosestPlayertonibm192014-02-031-1/+1
| | | | | |
| | * | | | Fixed compilationtonibm192014-02-031-1/+0
| | | | | |
| | * | | | Exporded World:FindClosestPlayer, Item:IsEnchantable and Monster:MoveToPosition to Lua APItonibm192014-02-036-3/+13
| | | |_|/ | | |/| |
| * | | | Fixed calling plugins with userdata params.madmaxoft2014-02-041-0/+1
| | | | |
| * | | | Removed a leftover debug message.madmaxoft2014-02-041-1/+0
| | | | |
| * | | | Fixed error handling in cPluginManager:CallPlugin() API.madmaxoft2014-02-041-2/+5
| | | | | | | | | | | | | | | | | | | | Fixed: When the called function malfunctioned, the entire plugin's call was aborted.
| * | | | Improved error resistance in cPluginManager:CallPlugin().madmaxoft2014-02-041-0/+8
| | | | | | | | | | | | | | | | | | | | Fixed: If the call failed, all the next plugin calls would fail as well.
| * | | | Greatly improved TNT propulsion chancesTiger Wang2014-02-031-1/+1
| | | | |
| * | | | Merge pull request #636 from worktycho/warningfixesMattes D2014-02-039-18/+31
| |\ \ \ \ | | | | | | | | | | | | Increased Type safety of Biomes
| | * | | | Fogot to save BiogenTycho2014-02-031-4/+4
| | | | | |
| | * | | | Fixed Compile errorsTycho2014-02-033-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | c++11 introduces scoped enums, so the code didn't fail in clang
| | * | | | Removed unused lookupsTycho2014-02-031-2/+0
| | | | | |
| | * | | | Increased Type safety of BiomesTycho2014-02-038-16/+31
| | |/ / / | | | | | | | | | | | | | | | | | | | | Changed a number of funcictions from using integers to store biomes to using EMCSBiome Note that switching from an int to an Enum is a non-breaking chang to the lua bindings
| * | | | Merge pull request #633 from mc-server/More_Sideways_BlocksMattes D2014-02-034-5/+80
| |\ \ \ \ | | |/ / / | |/| / / | | |/ / More sideways blocks.
| | * | Named the different quartz block.STRWarrior2014-02-032-1/+6
| | | |
| | * | Fixed some issues.STRWarrior2014-02-031-1/+2
| | | | | | | | | | | | | | | | | | | | Meta wasn't set if the block wasn't a pillar. Fixed typo.
| | * | Renamed cBlockQuartsHandler to cBlockQuartzHandler. Fixed not being able to place normal quartz blocks.STRWarrior2014-02-032-4/+4
| | | |
| | * | This renames the cBlockWoodHandler to cBlockSidewaysHandler, and implements a new cBlockQuartzHandler to handle the quartz pillars.STRWarrior2014-02-033-5/+74
| | | |
| * | | Merge pull request #623 from mc-server/tntMattes D2014-02-032-36/+122
| |\ \ \ | | |/ / | |/| | TNT improvements
| | * | Inversed conditionTiger Wang2014-02-031-25/+28
| | | |
| | * | Uncommented pickup spawner codeTiger Wang2014-02-021-3/+7
| | | |
| | * | TNT improvementsTiger Wang2014-02-022-37/+116
| | | | | | | | | | | | | | | | | | | | | | | | + Added entity damage + Added entity propulsion * Fixed #67 and fixed #230
| * | | Fixed socket leaking.madmaxoft2014-02-031-0/+5
| | | |
| * | | SocketThreads: Fixed sending to closed socket.madmaxoft2014-02-031-1/+6
| | | |
| * | | Groups.ini can contain spaces around commas in values.madmaxoft2014-02-031-21/+25
| | | | | | | | | | | | | | | | | | | | This includes Permissions, Inherits and Commands. Also fixed an unlikely but possible crash with group colors.
| * | | Merge pull request #602 from mc-server/improvementsandfixesMattes D2014-02-037-22/+61
| |\ \ \ | | |_|/ | |/| | Redstone crash fix and current console line replace function
| | * | Added IsBlockWaterOrIce()Tiger Wang2014-02-022-10/+12
| | | |
| | * | Revert "Added LOGREPLACELINE for line replacement"Tiger Wang2014-02-025-94/+16
| | | | | | | | | | | | | | | | This reverts commit 7d03876a3e11aedff0201a8330bfdb2b5523fc5e.
| | * | Revert "Improved code"Tiger Wang2014-02-024-19/+13
| | | | | | | | | | | | | | | | This reverts commit d8aa0b0ec7a2ebea2fc157c623ae8cd7d0b6ba1c.
| | * | Revert "Added a comment"Tiger Wang2014-02-021-1/+1
| | | | | | | | | | | | | | | | This reverts commit 7ae5631d89426df6f05b6c8ba656ba02b9d15f93.
| | * | Revert "Properly initialised variables"Tiger Wang2014-02-024-13/+10
| | | | | | | | | | | | | | | | This reverts commit 02e752789399ad1b65a0443534ea6a8721efd78c.
| | * | Revert "Fixed issues with insufficient console space"Tiger Wang2014-02-023-114/+29
| | | | | | | | | | | | | | | | This reverts commit 6b18add09b5e9d6d6c2a61e90bdd7011f56f4c82.
| | * | Revert "A newline issue is resolved"Tiger Wang2014-02-022-1/+3
| | | | | | | | | | | | | | | | This reverts commit 397208145ebe5c95ebf32f2985f6800634932230.
| | * | Revert "Fixed Linux compile"Tiger Wang2014-02-021-2/+1
| | | | | | | | | | | | | | | | This reverts commit 5becfe850a2b4827a21e8ede989545334efbbead.
| | * | Revert "Another Linux fix"Tiger Wang2014-02-021-6/+0
| | | | | | | | | | | | | | | | This reverts commit 6f660b379ecbc091b9bd92093e0dad01a4f6bf38.
| | * | Revert "Again improved LogReplaceLine"Tiger Wang2014-02-022-80/+77
| | | | | | | | | | | | | | | | This reverts commit dd325d742db9db54a25460fcacd093e7cc6f44f0.
| | * | Possibly fixed #618Tiger Wang2014-02-021-2/+2
| | | |
| | * | Creative players take Plugin damageTiger Wang2014-02-022-3/+4
| | | |
| | * | Again improved LogReplaceLineTiger Wang2014-02-012-77/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed issues on Linux with cursor positioning * Made preprocessor blocks more readable * Improved reliability of line clearing on Windows - Removed an *unneeded* variable
| | * | Added checks for ice into IsBlockWater()Tiger Wang2014-02-012-3/+10
| | | | | | | | | | | | | | | | | | | | * This fixes players spawning in vast oceans of ice, as opposed to the previous water
| | * | Split cCoord template into one and two data typesTiger Wang2014-02-012-12/+34
| | | |
| | * | Another Linux fixTiger Wang2014-02-011-0/+6
| | | |
| | * | Fixed Linux compileTiger Wang2014-02-011-1/+2
| | | |
| | * | A newline issue is resolvedTiger Wang2014-02-012-3/+1
| | | |
| | * | Fixed issues with insufficient console spaceTiger Wang2014-02-013-29/+114
| | | |
| | * | Properly initialised variablesTiger Wang2014-01-314-10/+13
| | | |
| | * | Added a commentTiger Wang2014-01-311-1/+1
| | | |
| | * | Improved codeTiger Wang2014-01-314-13/+19
| | | | | | | | | | | | | | | | | | | | * Fixed some issues * Fixed standard violation
| | * | Added LOGREPLACELINE for line replacementTiger Wang2014-01-295-16/+94
| | | |
| | * | Fixed redstone simulator crash found in #570Tiger Wang2014-01-293-18/+25
| | | |
| * | | Fixed multiple invalid permission nodesTiger Wang2014-02-021-2/+2
| | | | | | | | | | | | | | | | New players can build as default now
| * | | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-02-0278-550/+730
| |\ \ \
| | * \ \ Merge branch 'master' into registerfixTycho2014-02-0244-63/+211
| | |\ \ \
| | | * | | Fixed dark oak and acacia placement.madmaxoft2014-02-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #621.
| | | * | | Added missing filesTycho2014-02-023-0/+39
| | | | | |
| | | * | | Merge branch 'master' into GeneratingBenchmark2Tycho2014-02-0211-3/+72
| | | |\ \ \ | | | | | |/ | | | | |/| | | | | | | | | | | | | Conflicts: src/Blocks/BlockTorch.h
| | | * | | Changed Signiture of OnUpdateTycho2014-02-0220-37/+65
| | | | | |
| | | * | | Changed Signiture of OnDiggingTycho2014-02-014-7/+7
| | | | | |
| | | * | | Changed Signiture of OnDestroyedByPlayerTycho2014-02-0112-16/+27
| | | | | |
| | * | | | Removed register keyword from Messinne TwisterTycho2014-02-011-26/+26
| | |/ / / | | | | | | | | | | | | | | | Removed register as it is meaningless in c++ and causes a depreciated warning in clang 3.4 in c++ mode for va_copy
| | * | | Changed pointers to referencesTycho2014-02-0160-249/+247
| | | | |
| | * | | Merge branch 'master' into GeneratingBenchmark2Tycho2014-02-0141-184/+863
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/World.h
| | * | | | Changed signitures of Several BLockHandler MethodsTycho2014-02-0155-196/+209
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed the signitures of the following to use interfaces: GetPlacementBlockTypeMeta OnPlaced OnPlacedByPlayer OnDestroyed OnNeighbourChanged NeighbourChanged OnUse CanBeAt Check
| | * | | | Removed cWorld IncludeTycho2014-01-263-3/+0
| | | | | |
| | * | | | Refactored GetPlacementBlockTypeMetaTycho2014-01-267-11/+12
| | | | | |
| | * | | | Merge branch 'master' into GeneratingBenchmark2Tycho2014-01-2670-1195/+2527
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Blocks/BlockRail.h src/World.h
| | * | | | | Refactored cBlockHandler::OnUse and dependentsTycho2014-01-2621-263/+310
| | | | | | |
| | * | | | | Added support for overide in c++11 supporting varients of gcc/clangTycho2014-01-261-2/+4
| | | | | | |
| | * | | | | First attempt at Implementing InterfacesTycho2014-01-2519-38/+80
| | | | | | |
| | * | | | | dded dependecy on Blocks to GeneratorTycho2014-01-251-1/+1
| | | | | | |
| * | | | | | Fixed #624Tiger Wang2014-02-022-0/+7
| | |_|_|/ / | |/| | | |
| * | | | | Fixed #620Tiger Wang2014-02-021-1/+2
| | | | | |
| * | | | | Added saving of angry flag.Kirill Kirilenko2014-02-022-0/+7
| | | | | |
| * | | | | Fixed sitting tag.Kirill Kirilenko2014-02-022-5/+5
| | | | | |
| * | | | | Monster's nominal speed was increased.Kirill Kirilenko2014-02-011-1/+1
| | | | | |
| * | | | | Fixed teleport to air, if owner is flying.Kirill Kirilenko2014-02-011-0/+1
| | | | | |
| * | | | | Added saving of collar's color.Kirill Kirilenko2014-02-012-4/+11
| | | | | |
| * | | | | Merge pull request #585 from daniel0916/hooksMattes D2014-02-016-0/+47
| |\ \ \ \ \ | | | | | | | | | | | | | | Added "player destroying" and "player destroyed" hooks
| | * | | | | Removed "player destroying" hookdaniel09162014-02-016-48/+1
| | | | | | |
| | * | | | | Added "player destroying" and "player destroyed" hooksdaniel09162014-01-256-0/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hooks: HOOK_PLAYER_DESTROYING HOOK_PLAYER_DESTROYED Idea from: https://github.com/mc-server/MCServer/issues/473
| * | | | | | Added reading saved state of the wolf (sitting or standing).Kirill Kirilenko2014-01-311-0/+6
| | |_|_|/ / | |/| | | |
| * | | | | Merge pull request #607 from mc-server/Wolf_Owner_SavingMattes D2014-01-312-3/+12
| |\ \ \ \ \ | | | | | | | | | | | | | | Wolf: Their owner now gets saved.
| | * | | | | Inversed condition.STRWarrior2014-01-311-1/+1
| | | | | | |
| | * | | | | Wolf: If Owner tag is missing a normal ownerless wolf will spawn.STRWarrior2014-01-311-9/+6
| | | | | | |
| | * | | | | Fixed bad variable.STRWarrior2014-01-301-1/+1
| | | | | | |
| | * | | | | Check if the tag is found.STRWarrior2014-01-301-0/+5
| | | | | | |
| | * | | | | Fixes #606STRWarrior2014-01-302-2/+9
| | | | | | |
| * | | | | | Fixed cLineBlockTracer:Trace() signature.madmaxoft2014-01-311-13/+27
| | | | | | |
| * | | | | | Added cPluginManager:BindCommand() form to the API.madmaxoft2014-01-311-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | That's the canonical way to call static functions.
| * | | | | | Added cChunkDest::UpdateHeightmap()madmaxoft2014-01-312-17/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This function is necessary for plugins manipulating the generated chunks, they need to update the heightmap before it is passed back to the generator.
| * | | | | | Attempt at implementing #563tonibm192014-01-301-2/+1
| | | | | | | | | | | | | | | | | | | | | Not tested (I don't have RasPi)
| * | | | | | Lua: Fixed an error in table-functions callbacks.madmaxoft2014-01-291-1/+5
| | |_|_|_|/ | |/| | | |
| * | | | | Did what xoft saidtonibm192014-01-294-5/+3
| | | | | |
| * | | | | Rewritten code.tonibm192014-01-2912-152/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented xoft suggestion. Using MoveToPosition as tigerw suggested.
| * | | | | Fixed sheeptonibm192014-01-291-18/+17
| | | | | |
| * | | | | Fixed a copypasta error...tonibm192014-01-294-1/+5
| | | | | |
| * | | | | Now mobs follow you when holding their breed itemtonibm192014-01-2910-5/+153
| | | | | |
| * | | | | Limited sign lines to 15 chars.madmaxoft2014-01-291-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #598.
| * | | | | Plugin files are loaded in alphabetical order.madmaxoft2014-01-291-17/+35
| |/ / / / | | | | | | | | | | | | | | | Except for the Info.lua file which gets loaded always last. Implements #597.
| * | | | Removed debug message when a firework entity hit a solid block.STRWarrior2014-01-291-2/+0
| | | | |
| * | | | Bottle o' Enchanting spawns an experience orb.STRWarrior2014-01-291-1/+2
| | | | |
| * | | | Added 1.7.4 to the list of supported protocols.madmaxoft2014-01-291-1/+1
| | | | |
| * | | | Protocol 1.7: Encryption is enabled only with auth.madmaxoft2014-01-291-1/+1
| | | | |
| * | | | Protocol 1.7: Forced encryption on all connections.madmaxoft2014-01-284-15/+120
| | | | | | | | | | | | | | | | | | | | This is for testing purposes only, to find bugs in the encryption. Once the encryption is deemed stable, it will be enabled only for servers with enabled Authentication.
| * | | | Crypto: Added public key encryption / decryption.madmaxoft2014-01-282-0/+106
| | | | |
| * | | | Fixed an error in Crypto.madmaxoft2014-01-281-2/+2
| | | | |
| * | | | Merge pull request #594 from mc-server/Villager_UpdateMattes D2014-01-285-2/+185
| |\ \ \ \ | | | | | | | | | | | | Villager update
| | * | | | Renamed Farmer functions and added doxycommentsSTRWarrior2014-01-282-17/+20
| | | | | |
| | * | | | Villager: NoCountDown and Action function don't check VillagersShouldHarvestCrops anymore because it shoudn't even be activated anywhere.STRWarrior2014-01-281-10/+0
| | | | | |
| | * | | | Villager doesn't check the environment for crops if it doesn't need to.STRWarrior2014-01-271-0/+5
| | | | | |
| | * | | | The world can now be configured wether farmers should be able to harvest crops.STRWarrior2014-01-273-0/+14
| | | | | |
| | * | | | Villager: Few more comments.STRWarrior2014-01-272-4/+9
| | | | | |
| | * | | | CleanupSTRWarrior2014-01-272-31/+65
| | | | | | | | | | | | | | | | | | | | | | | | Most code in Tick is now split up in different functions.
| | * | | | Villagers: Harvesting is more rare.STRWarrior2014-01-271-1/+1
| | | | | |
| | * | | | Villager: Farmers can't place crops on blocks other then farmland.STRWarrior2014-01-271-1/+7
| | | | | |
| | * | | | Fixed compiler error.STRWarrior2014-01-271-1/+1
| | | | | |
| | * | | | Villager: Farmer: Crops finding is more random.STRWarrior2014-01-271-18/+19
| | | | | |
| | * | | | Added GetCropsPos and DidFindCrops functions.STRWarrior2014-01-271-0/+6
| | | | | |
| | * | | | Villagers: Farmers now replant the crops.STRWarrior2014-01-272-1/+17
| | | | | |
| | * | | | Villagers: Fixed only gettings the crops block when farming.STRWarrior2014-01-271-2/+2
| | | | | |
| | * | | | Villagers don't look for new crops when they already found one.STRWarrior2014-01-271-11/+9
| | | | | | | | | | | | | | | | | | | | | | | | Slight cleanup.
| | * | | | E_BLOCK_POTATOES isn't an solid block. Villagers were floating above them.STRWarrior2014-01-271-0/+1
| | | | | |
| | * | | | Villagers: Farmers can also harvest carrots and potatoes.STRWarrior2014-01-272-9/+38
| | | | | |
| | * | | | Makes farmers farm crops.STRWarrior2014-01-272-1/+76
| | | |_|/ | | |/| |
| * | | | Fixed timing on *nix.madmaxoft2014-01-282-2/+2
| | | | |
| * | | | Fixed a slight bug in RSA encryption code.madmaxoft2014-01-281-2/+1
| | | | |
| * | | | Merge pull request #595 from mc-server/NonBlockingSocketsMattes D2014-01-284-63/+171
| |\ \ \ \ | | | | | | | | | | | | Non blocking sockets
| | * | | | Squashed common code.madmaxoft2014-01-271-14/+7
| | | | | |
| | * | | | Fixed Linux compilation.madmaxoft2014-01-271-1/+2
| | | | | |
| | * | | | Rewritten networking to use non-blocking sockets.madmaxoft2014-01-274-62/+176
| | | | | | | | | | | | | | | | | | | | | | | | This fixes #592.
| * | | | | SIGABRT exits with failure.Tiger Wang2014-01-271-0/+1
| |/ / / /
| * | | | Fixed client packet parsing.madmaxoft2014-01-262-15/+56
| | | | | | | | | | | | | | | | | | | | | | | | | When the packet wouldn't fit the current buffer, the server would mis-parse the next packet. This was the cause for #541. Also modified comm logging, now each direction can be turned on separately.
| * | | | cByteBuffer has more self-tests.madmaxoft2014-01-261-6/+29
| | | | |
| * | | | Item-loading now checks for weird bytes.madmaxoft2014-01-261-3/+9
| | | | |
| * | | | Fixed Byte-order reading.madmaxoft2014-01-261-2/+4
| | | | | | | | | | | | | | | | | | | | The functions would fail on bytes that were above 127.
| * | | | Added SIGABRT to catchers listTiger Wang2014-01-261-1/+6
| |/ / /
| * | | Merge pull request #589 from mc-server/minecartimprovementsMattes D2014-01-265-110/+438
| |\ \ \ | | | | | | | | | | Minecart improvements
| | * | | Reduced unnecessary echoes (thanks xoft)Tiger Wang2014-01-261-5/+3
| | | | |
| | * | | Rail speed tweakTiger Wang2014-01-251-2/+2
| | | | |
| | * | | Improved AllToLua UI experienceTiger Wang2014-01-251-2/+8
| | | | |
| | * | | Added more minecart powered rail directionsTiger Wang2014-01-243-80/+63
| | | | |
| | * | | Begin implementing ascending railsTiger Wang2014-01-192-2/+45
| | | | |
| | * | | Added one more direction into collision checksTiger Wang2014-01-191-26/+51
| | | | | | | | | | | | | | | | | | | | | | | | | * Added direction XM_XP * Improved performance, thanks STR and xoft
| | * | | Minecart improvements and fixesTiger Wang2014-01-191-33/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed curved rails * Fixed detector rails in certain situations * Fixed powered rails and others passing bad meta to SnapToRail()
| | * | | Fixed weird meta with curved railsTiger Wang2014-01-191-5/+15
| | | | |
| | * | | Added more rail functionalityTiger Wang2014-01-193-18/+22
| | | | |
| | * | | Merge remote-tracking branch 'origin/master' into minecartimprovementsTiger Wang2014-01-1972-276/+1139
| | |\ \ \
| | * | | | Minecart collision and general improvementsTiger Wang2014-01-182-70/+242
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Implemented collision on one type of rail * Improved curved rails somewhat * Fixed a crash bug
| * | | | | Merge pull request #590 from mc-server/Wolf_FixMattes D2014-01-261-7/+31
| |\ \ \ \ \ | | | | | | | | | | | | | | Wolf: Small fix since the new AI and a new small feature.