Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix sending incorrect date values on world change | Tiger Wang | 2021-04-12 | 1 | -1/+1 |
| | | | | Yak shave: make more things use cTickTime. Fix a couple of incorrect modulo-on-millisecond-value by making them use WorldTickAge. | ||||
* | Adding basic Banner functionality (#4806) | 12xx12 | 2021-03-15 | 1 | -1/+18 |
| | | | | | | + Added item and block for banners Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com> | ||||
* | Mitigate MSVC crash (#5146) | Tiger Wang | 2021-03-06 | 1 | -1/+1 |
| | | | Reference: http://ci.appveyor.com/project/Cuberite/cuberite/builds/38087390/job/p857ibg3x87naw36/messages | ||||
* | Prepare ChunkData for BlockState storage (#5105) | Tiger Wang | 2021-03-05 | 1 | -45/+49 |
| | | | | | | | | | | | | | | | | | | | | | | | * Rename ChunkData Creatable test * Add missing Y-check in RedstoneWireHandler * Remove ChunkDef.h dependency in Scoreboard * Prepare ChunkData for BlockState storage + Split chunk block, meta, block & sky light storage + Load the height map from disk - Reduce duplicated code in ChunkData - Remove saving MCSBiomes, there aren't any - Remove the allocation pool, ref #4315, #3864 * fixed build * fixed test * fixed the debug compile Co-authored-by: 12xx12 <44411062+12xx12@users.noreply.github.com> | ||||
* | zlib -> libdeflate (#5085) | Tiger Wang | 2021-01-11 | 1 | -7/+3 |
| | | | | | | + Use libdeflate + Use std::byte * Fix passing temporary to string_view + Emulate make_unique_for_overwrite | ||||
* | Adding new monster types to enum and saving/loading for easier future implementation (#4941) | 12xx12 | 2020-11-23 | 1 | -46/+46 |
| | | | | | | | | | | | * added new monster types to enum added string <-> enum conversion in namespace serializer added loading functions added to saving * renamed zombie pigman to zombified piglins in enum Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com> | ||||
* | Add beam target, configurable base visibility to Ender Crystals (#5010) | 12xx12 | 2020-10-29 | 1 | -0/+10 |
| | | | | | * Fixes #4990 Co-authored-by: 12xx12 <12xx12100@gmail.com> | ||||
* | Adding more customize options to mob spawners and improving the way to look for surrounding entities (#4955) | 12xx12 | 2020-10-10 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * added nearly any customize option * fixed unnecessary diff added comments * removed unnecessary const qualifier * fixed build * changed to ForEachEntityInBox * added docs * updated lua api description * checkstyle * added changes suggested by @peterbell10 And now the player may break the server by setting ridiculous ranges * updated docs changed cast to static cast * fixed clang * fixed clang on WSSAnvil.cpp Co-authored-by: 12xx12 <12xx12100@gmail.com> | ||||
* | Fixing Mob spawner behaviour (#4930) | 12xx12 | 2020-09-27 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | | * fixed mob spawner failure (whoopsie in the BlockEntity.GetChunkZ()) Style * fixed spawning behaviour * fixed saving entity type saving * checkstyle * removed debug log * removed short saving * Style Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com> | ||||
* | Added end portal and enchanting table block entities | 12xx12 | 2020-09-20 | 1 | -19/+47 |
| | |||||
* | Use pitch lookup in noteblock block entity (#4826) | 12xx12 | 2020-09-05 | 1 | -1/+1 |
| | | | | | | | - Removed the calculation in the noteblock block entity I did the calculation in python if anyone is interested where the numbers are from Co-authored-by: 12xx12 <12xx12100@gmail.com> | ||||
* | Save enderchest block entities to storage | Tiger Wang | 2020-08-28 | 1 | -1/+13 |
| | | | | | + Add EnderChest saving, as Vanilla does - Remove CreateBlockEntities. Storage should save & load everything so looping over chunk data is not needed | ||||
* | Oops, remember to save your files! | Alexander Harkness | 2020-04-10 | 1 | -6/+0 |
| | |||||
* | Add Zombie Villagers | Bond-009 | 2020-04-10 | 1 | -4/+15 |
| | |||||
* | Implement wither skeletons (#4563) | Mat | 2020-04-04 | 1 | -36/+34 |
| | |||||
* | Pulled the BlockID and BlockInfo headers from Globals.h. (#4591) | Mattes D | 2020-04-03 | 1 | -1/+1 |
| | | | | | | | | | 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 | ||||
* | NBTChunkSerializer: Cleaned up interface. | Mattes D | 2019-09-24 | 1 | -770/+878 |
| | | | | | | Removed dependency on cChunkDataCallback. Moved all the serializing code into a worker class. Changed the serialization into a single-call action. | ||||
* | CheckBasicStyle: Check number of empty lines between functions (#4267) | peterbell10 | 2018-07-26 | 1 | -0/+7 |
| | | | | Add check for number of empty lines between functions and fix the corresponding failures | ||||
* | Prefer static_cast to reinterpret_cast (#4223) | peterbell10 | 2018-05-02 | 1 | -49/+49 |
| | | | | | | | * 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. | ||||
* | Store Health as a float (#4073) | Fabian | 2017-11-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | * Fix #4024 * Fix clang error * Add comment * Fix behaviour * Save Health as float * Changed m_Health to float * Remove redundant static_cast * Fix casts | ||||
* | Fix switch warnings (#4013) | peterbell10 | 2017-09-14 | 1 | -30/+34 |
| | | | | | | | | | | | | | | | * 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 | ||||
* | Implement anvil chunk sparsing | peterbell10 | 2017-08-26 | 1 | -3/+3 |
| | |||||
* | Add cUUID class (#3871) | peterbell10 | 2017-08-25 | 1 | -5/+6 |
| | |||||
* | Minor changes (#3909) | mathiascode | 2017-08-24 | 1 | -1/+1 |
| | |||||
* | Fully implemented leashes (#3798) | Pablo Beltrán | 2017-08-21 | 1 | -2/+36 |
| | |||||
* | Represent cItem::m_Lore as an AStringVector (#3882) | peterbell10 | 2017-08-18 | 1 | -4/+11 |
| | | | | | | | | * Replace cItem::m_Lore with AStringVector * Reword deprecation warning * Fix lua bindings | ||||
* | Remove double includes part 2 (#3890) | peterbell10 | 2017-08-03 | 1 | -1/+0 |
| | |||||
* | Added basic ocelot behavior (#3829) | Bond-009 | 2017-07-12 | 1 | -1/+12 |
| | |||||
* | Added bed entity (#3823) | Lukas Pioch | 2017-07-07 | 1 | -0/+14 |
| | | | | | | | | | | * 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 | ||||
* | Exported boat | Lukas Pioch | 2017-05-24 | 1 | -0/+1 |
| | | | | | | | - NBT: Added saving / loading of material - Added the material in the item handler of the boat - Drop the correct boat if destroyed - APIDoc: Added desc and functions | ||||
* | Corrected brewingstand and added support for fuel | Lukas Pioch | 2017-05-08 | 1 | -0/+1 |
| | |||||
* | Fixed TrappedChest saving. (#3423) | Mattes D | 2016-11-07 | 1 | -1/+1 |
| | | | Vanilla uses "Chest" in NBT for trapped chests. | ||||
* | Fixed type-casting-related warnings. | Mattes D | 2016-08-24 | 1 | -2/+2 |
| | |||||
* | Bulk clearing of whitespace | LogicParrot | 2016-02-05 | 1 | -8/+8 |
| | |||||
* | Changed the format of the MobHead data to allow MobHeads working on MInecraft 1.8 | bibo38 | 2016-01-11 | 1 | -1/+14 |
| | | | | | | 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 | ||||
* | Test for correct coordinates when fishing | Gargaj | 2015-12-10 | 1 | -0/+1 |
| | | | | Fun fact: this was able to actually deadlock the server depending on where you were standing :) | ||||
* | changed mob age from char to int | Julian Laubstein | 2015-11-16 | 1 | -10/+10 |
| | |||||
* | Implemented brewing | Lukas Pioch | 2015-11-03 | 1 | -0/+17 |
| | |||||
* | Namechange to Cuberite | Mattes D | 2015-09-25 | 1 | -1/+1 |
| | |||||
* | Silenced and fixed many warning messages across multiple files. | Samuel Barney | 2015-07-29 | 1 | -75/+75 |
| | |||||
* | Added Rabbit Metadata values. | bibo38 | 2015-07-17 | 1 | -43/+48 |
| | | | | | Added the Rabbit Types and the MoreCarrotTicks value. Types are selected randomly on creation. Fixes #1867 | ||||
* | Support ageable mobs | Hallucino | 2015-07-14 | 1 | -5/+28 |
| | | | | Move ageable stuff in Monster directly | ||||
* | cPainting saving implemented | Tiger Wang | 2015-03-14 | 1 | -14/+16 |
| | | | | Additionally, it now inherits from cHangingEntity. | ||||
* | Fixed confusion over Item Frame directions | Tiger Wang | 2015-03-13 | 1 | -18/+4 |
| | |||||
* | Added Rabbits | Masy98 | 2014-12-20 | 1 | -0/+2 |
| | |||||
* | Added Entity Guardian | Masy98 | 2014-12-18 | 1 | -0/+2 |
| | |||||
* | Many api fixes, add vanilla names to mob type -> string functions and mob spawner fixes. | Howaner | 2014-11-29 | 1 | -1/+1 |
| | |||||
* | Finished mob spawner implementation. | Howaner | 2014-11-18 | 1 | -2/+3 |
| | |||||
* | Merge branch 'master' into MobSpawner | Howaner | 2014-11-18 | 1 | -14/+36 |
|\ | | | | | | | | | Conflicts: MCServer/Plugins/Core | ||||
| * | Fixed compile (typos). | Alexander Harkness | 2014-10-27 | 1 | -2/+2 |
| | | |||||
| * | Another one.# | Alexander Harkness | 2014-10-27 | 1 | -0/+22 |
| | | |||||
| * | En masse NULL -> nullptr replace | Tiger Wang | 2014-10-23 | 1 | -1/+1 |
| | | |||||
| * | Properly exported cItemFrame and cHangingEntity to Lua. | Mattes D | 2014-10-21 | 1 | -12/+12 |
| | | |||||
| * | Merge remote-tracking branch 'origin/master' into chestcarts | Tiger Wang | 2014-09-27 | 1 | -45/+75 |
| |\ | | | | | | | | | | | | | Conflicts: src/Entities/Minecart.cpp | ||||
| * | | Implemented Chest Minecarts | Tiger Wang | 2014-09-13 | 1 | -1/+1 |
| | | | |||||
* | | | Merge branch 'master' into MobSpawner | Howaner | 2014-09-26 | 1 | -45/+75 |
|\ \ \ | | |/ | |/| | | | | | | | | | | Conflicts: src/MobSpawner.h src/Mobs/Monster.h | ||||
| * | | Merge pull request #1419 from mc-server/redstoneTests | worktycho | 2014-09-26 | 1 | -41/+41 |
| |\ \ | | | | | | | | | Added test mocking to IncrementalRedstoneSimulator | ||||
| | * \ | Merge branch 'master' into redstoneTests | Tycho | 2014-09-25 | 1 | -1/+31 |
| | |\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Mobs/Monster.h | ||||
| | * | | | Added first test to show the object can be created | Tycho | 2014-09-17 | 1 | -41/+41 |
| | | |/ | | |/| | |||||
| * | | | Anvil: Arrow Tile tags are a short in Vanilla | Howaner | 2014-09-25 | 1 | -3/+3 |
| | |/ | |/| | |||||
| * | | derp | Howaner | 2014-09-24 | 1 | -4/+4 |
| | | | |||||
| * | | Don't create two entity lists. | Howaner | 2014-09-24 | 1 | -0/+12 |
| | | | |||||
| * | | Merge branch 'master' into WorldLoader | Howaner | 2014-09-24 | 1 | -1/+1 |
| |\ \ | |||||
| | * | | Anvil: Wolf collar color is a byte in Vanilla. | madmaxoft | 2014-09-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Kept the old Int reading for compatibility reasons. Ref.: #1448 | ||||
| * | | | MCServer world compatiblity with vanilla and mcedit. | Howaner | 2014-09-23 | 1 | -0/+16 |
| |/ / | |||||
| * / | Added CustomName saving. | Howaner | 2014-09-02 | 1 | -0/+2 |
| |/ | |||||
* / | Implemented mob spawner. | Howaner | 2014-09-19 | 1 | -0/+15 |
|/ | |||||
* | Removed unused code | Tiger Wang | 2014-08-29 | 1 | -1/+0 |
| | |||||
* | Anvil: Wolf owner not saved if not present. | madmaxoft | 2014-08-04 | 1 | -2/+8 |
| | |||||
* | Wolf uses UUID for owner. | madmaxoft | 2014-08-03 | 1 | -4/+6 |
| | | | | Fixes #1277. | ||||
* | Renamed functions and added beacon json saving. | Howaner | 2014-07-31 | 1 | -2/+2 |
| | |||||
* | Added beacon load/save. | Howaner | 2014-07-30 | 1 | -0/+19 |
| | |||||
* | Slight cleanup after portals | Tiger Wang | 2014-07-29 | 1 | -1/+0 |
| | |||||
* | Merge remote-tracking branch 'origin/master' into portals | Tiger Wang | 2014-07-22 | 1 | -1/+2 |
|\ | | | | | | | | | | | | | | | Conflicts: src/Chunk.cpp src/Entities/Player.cpp src/Root.cpp src/World.cpp | ||||
| * | NBTChunkSerializer.cpp: Added break after serializing the splash potion | archshift | 2014-07-20 | 1 | -0/+1 |
| | | |||||
| * | Splash potions: Renamed PotionParticleType to PotionColor for clarity | archshift | 2014-07-19 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into portals | Tiger Wang | 2014-07-18 | 1 | -30/+40 |
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
| * | More trailing whitespace fixes. | madmaxoft | 2014-07-17 | 1 | -1/+1 |
| | | |||||
| * | Normalized comments. | madmaxoft | 2014-07-17 | 1 | -1/+1 |
| | | | | | | | | | | 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. | ||||
| * | Restructured cSplashPotionEntity code. | madmaxoft | 2014-07-15 | 1 | -1/+1 |
| | | | | | | | | | | The callback doesn't need declaration in the header. Renamed PotionName to PotionParticleType. | ||||
| * | Merge branch 'master' into potions | madmaxoft | 2014-07-15 | 1 | -15/+17 |
| |\ | |||||
| | * | Merge pull request #1154 from mc-server/trappedchests | Tiger Wang | 2014-07-13 | 1 | -15/+17 |
| | |\ | | | | | | | | | Implemented trapped chests & others | ||||
| | | * | cNBTChunkSerializer: Fixed alignment. | madmaxoft | 2014-07-12 | 1 | -14/+14 |
| | | | | |||||
| | | * | Suggestions and bug fix | Tiger Wang | 2014-07-12 | 1 | -10/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | * 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 | ||||
| | | * | Suggestions | Tiger Wang | 2014-07-11 | 1 | -4/+4 |
| | | | | |||||
| | | * | Made things consistent | Tiger Wang | 2014-07-08 | 1 | -2/+4 |
| | | | | |||||
| | | * | Implemented trapped chests & others | Tiger Wang | 2014-07-07 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Added trapped chests * Fixed a bunch of bugs in the redstone simulator concerning wires and repeaters * Other potential bugfixes | ||||
| * | | | Added splash potions to NBT serialization and retrieval | archshift | 2014-07-12 | 1 | -0/+11 |
| |/ / | |||||
| * | | Merge pull request #1135 from mc-server/fixes | Tiger Wang | 2014-07-09 | 1 | -16/+12 |
| |\ \ | | |/ | |/| | Fixes to projectiles and the undead | ||||
| | * | Various fixed | Tiger Wang | 2014-07-04 | 1 | -7/+4 |
| | | | | | | | | | | | | | | | * Fixed potential invalid pointer dereferencing, fixes #1117 * Fixed ender pearls not being loaded properly | ||||
| | * | Suggestions | Tiger Wang | 2014-07-02 | 1 | -9/+8 |
| | | | |||||
| * | | Removed unneeded code | Tiger Wang | 2014-06-30 | 1 | -14/+1 |
| | | | |||||
| * | | Properly implemented enderchests | Tiger Wang | 2014-06-29 | 1 | -0/+14 |
| | | | |||||
* | | | Merge branch 'master' of https://github.com/mc-server/MCServer into portals | Tiger Wang | 2014-06-24 | 1 | -2/+1 |
|\| | | |||||
| * | | Add entity health saving. | Howaner | 2014-06-24 | 1 | -2/+1 |
| |/ | |||||
* | | Merge branch 'master' into portals | Tiger Wang | 2014-06-21 | 1 | -6/+1 |
|\| | | | | | | | | | | | | | Conflicts: src/Chunk.cpp src/Entities/Entity.h src/Entities/Player.h | ||||
| * | Merge branch 'master' into GlobalFixes | Howaner | 2014-06-17 | 1 | -2/+1 |
| |\ | |||||
| * | | The motion is already set in AddBasicEntity() | Howaner | 2014-06-17 | 1 | -5/+0 |
| | | | |||||
| * | | Code improvements | Howaner | 2014-05-28 | 1 | -1/+0 |
| | | | |||||
| * | | Add throw sound and fix arrow server crash. | Howaner | 2014-05-28 | 1 | -0/+1 |
| | | | |||||
* | | | Health of monsters is now saved | Tiger Wang | 2014-06-04 | 1 | -0/+1 |
| |/ |/| | |||||
* | | Merge branch 'master' into chunksparsing/structs | Tycho | 2014-05-24 | 1 | -17/+27 |
|\| | |||||
| * | More switch warnings. | archshift | 2014-05-12 | 1 | -0/+7 |
| | | |||||
| * | Fixed a few more switch warnings. | archshift | 2014-05-12 | 1 | -17/+20 |
| | | |||||
* | | Merge branch 'master' into chunksparsing/structs | Tycho | 2014-05-10 | 1 | -7/+32 |
|\| | | | | | | | | | Conflicts: src/Chunk.h | ||||
| * | Merge pull request #989 from Howaner/Anvil | Mattes D | 2014-05-07 | 1 | -6/+31 |
| |\ | | | | | | | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix ... | ||||
| | * | Change m_RepairCost to int. | Howaner | 2014-05-07 | 1 | -1/+1 |
| | | | |||||
| | * | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix anvil bugs. | Howaner | 2014-05-07 | 1 | -6/+31 |
| | | | |||||
| * | | Fix MagmaCube save. | Howaner | 2014-05-07 | 1 | -1/+1 |
| |/ | |||||
* | | Merge branch 'master' into chunksparsing/structs | Tycho | 2014-05-01 | 1 | -6/+6 |
|\| | |||||
| * | Merge pull request #940 from Howaner/GlobalFixes | Mattes D | 2014-04-28 | 1 | -1/+1 |
| |\ | | | | | | | Add entity invulnerable | ||||
| | * | Revert "Changed the old invulnerable methods from the wither to the new." | Howaner | 2014-04-28 | 1 | -8/+1 |
| | | | | | | | | | This reverts commit d50f8f6f11f69e7e1e56be92fb2d72a5014a3e34. | ||||
| | * | Changed the old invulnerable methods from the wither to the new. | Howaner | 2014-04-26 | 1 | -1/+8 |
| | | | |||||
| | * | Fixes | Howaner | 2014-04-26 | 1 | -1/+1 |
| | | | |||||
| * | | Fixed projectile source filenames, indentations | archshift | 2014-04-28 | 1 | -1/+1 |
| | | | |||||
| * | | Moved cArrowEntity out of ProjectileEntity.h | archshift | 2014-04-27 | 1 | -1/+1 |
| | | | |||||
| * | | Further refactored, Reverted Minecart change | archshift | 2014-04-26 | 1 | -4/+4 |
| | | | | | | | | | | | | Other small changes. | ||||
| * | | Small changes; warning fixing. | archshift | 2014-04-25 | 1 | -4/+4 |
| |/ | |||||
* | | Merge branch 'master' into chunksparsing/structs | Tycho | 2014-04-27 | 1 | -1/+1 |
|\| | | | | | | | | | | | Conflicts: src/Chunk.cpp src/Chunk.h | ||||
| * | Fixed references to renamed files. | archshift | 2014-04-24 | 1 | -1/+1 |
| | | |||||
* | | Implemented Chunk Sparsing with segments | Tycho | 2014-04-26 | 1 | -2/+1 |
|/ | |||||
* | Merge pull request #833 from mc-server/EnderCrystal | Mattes D | 2014-03-25 | 1 | -0/+13 |
|\ | | | | | Ender crystals | ||||
| * | Ender crystals | andrew | 2014-03-25 | 1 | -0/+13 |
| | | |||||
* | | Wither invulnerability | andrew | 2014-03-24 | 1 | -1/+7 |
|/ | |||||
* | Merge branch 'master' into BlockEntitys | Howaner | 2014-03-15 | 1 | -3/+11 |
|\ | |||||
| * | Merge pull request #768 from Howaner/BlockEntitys | Tiger Wang | 2014-03-09 | 1 | -1/+14 |
| |\ | | | | | | | Add TNT load/save | ||||
| * \ | Merge branch 'master' into ballisticmissiles | Tiger Wang | 2014-03-09 | 1 | -0/+15 |
| |\ \ | | | | | | | | | | | | | | | | | Conflicts: src/ClientHandle.cpp | ||||
| * | | | Implemented ballistic missiles (fireworks) | Tiger Wang | 2014-02-27 | 1 | -3/+11 |
| | | | | | | | | | | | | | | | | + Added fireworks | ||||
* | | | | Add item frame saving. | Howaner | 2014-03-15 | 1 | -2/+38 |
| | | | | |||||
* | | | | Add health and age load to pickup's. | Howaner | 2014-03-15 | 1 | -5/+5 |
| | | | | |||||
* | | | | Add ExpOrb saving. | Howaner | 2014-03-15 | 1 | -1/+16 |
| |_|/ |/| | | |||||
* | | | Change TNT Fuse to ticks | Howaner | 2014-03-08 | 1 | -1/+1 |
| | | | |||||
* | | | Add TNT Save/Load and add Netbeans projects to .gitignore | Howaner | 2014-03-08 | 1 | -1/+14 |
| |/ |/| | |||||
* | | Add Flower Pots | Howaner | 2014-03-07 | 1 | -0/+15 |
|/ | |||||
* | Fixed Formatting, Added DropChances and CanPickUpLoot attributes to Monsters | TheJumper | 2014-02-23 | 1 | -0/+8 |
| | |||||
* | Rename SkullEntity to MobHeadEntity | Howaner | 2014-02-23 | 1 | -7/+7 |
| | |||||
* | Add Skulls/Heads | Howaner | 2014-02-23 | 1 | -5/+21 |
| | |||||
* | Merge branch 'master' into itemframes | Tiger Wang | 2014-02-18 | 1 | -0/+1 |
|\ | | | | | | | | | | | Conflicts: src/Entities/Entity.h src/WorldStorage/NBTChunkSerializer.cpp | ||||
| * | Implemented paintings, fixes #689 | Tiger Wang | 2014-02-18 | 1 | -0/+1 |
| | | | | | | | | + Implemented paintings | ||||
* | | Implemented item frames, a part of #689 | Tiger Wang | 2014-02-18 | 1 | -0/+1 |
|/ | | | | | + Implemented Item Frames * Fixed Pitch and Yaw being wrongly flipped in the protocol (XOFT!) | ||||
* | Partial fix for #130 | Tiger Wang | 2014-02-03 | 1 | -0/+1 |
| | |||||
* | Added saving of angry flag. | Kirill Kirilenko | 2014-02-02 | 1 | -0/+1 |
| | |||||
* | Fixed sitting tag. | Kirill Kirilenko | 2014-02-02 | 1 | -1/+1 |
| | |||||
* | Added saving of collar's color. | Kirill Kirilenko | 2014-02-01 | 1 | -1/+2 |
| | |||||
* | Fixes #606 | STRWarrior | 2014-01-30 | 1 | -2/+2 |
| | |||||
* | Command block fixes 2 | andrew | 2014-01-23 | 1 | -9/+10 |
| | |||||
* | Merge pull request #569 from worktycho/EnchantmentsFix | Mattes D | 2014-01-19 | 1 | -1/+2 |
|\ | | | | | Enchantments fix | ||||
| * | Switched EnchantmentSerilizer to namespace | Tycho | 2014-01-19 | 1 | -1/+1 |
| | | |||||
| * | Spilt Writing of Enchantments to seperate class | Tycho | 2014-01-19 | 1 | -1/+2 |
| | | | | | | | | | | | | | | Created a new class cEnchantmentSerializer to serilize Enchantments to NBT. This breaks a dependecy chain between cChunkGenerator and cWorld. cEnchantmentSerializer is seperate from NBTWriter as it needs to access private members of cEnchantments so having it seperate reduces the spread of the frein modifier | ||||
* | | Parse the MC|AdvCdm plugin message | andrew | 2014-01-18 | 1 | -1/+1 |
| | | |||||
* | | Command block (de)serialization | andrew | 2014-01-18 | 1 | -10/+27 |
|/ | |||||
* | Removed internal cEntity::GetRot() usage. | madmaxoft | 2014-01-17 | 1 | -1/+1 |
| | |||||
* | Removed obsoleted functions | Tiger Wang | 2014-01-16 | 1 | -1/+1 |
| | |||||
* | Preliminary mobile entity saving | Tiger Wang | 2013-12-25 | 1 | -5/+133 |
| | | | | | | | * Fixes #252 * Alleviates #380 + Adds mob saving * Fixed some debug !ASSERTs | ||||
* | Fixed compiler warning when iterating over a fixed array of items (ARRAYCOUNT). | madmaxoft | 2013-12-20 | 1 | -1/+1 |
| | |||||
* | Moved source to src | Alexander Harkness | 2013-11-24 | 1 | -0/+533 |