Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-04-03 | Pulled the BlockID and BlockInfo headers from Globals.h. (#4591) | Mattes D | 1 | -2/+2 | |
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 | |||||
2020-03-23 | Don't attempt to give bucket with item count of 0 | Mat | 1 | -1/+1 | |
2018-07-26 | CheckBasicStyle: Check number of empty lines between functions (#4267) | peterbell10 | 1 | -0/+1 | |
Add check for number of empty lines between functions and fix the corresponding failures | |||||
2018-01-03 | Add the fmt library (#4065) | peterbell10 | 1 | -2/+2 | |
* 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. | |||||
2016-02-05 | Bulk clearing of whitespace | LogicParrot | 1 | -28/+28 | |
2015-07-15 | Leather Armor can now be dyed. | Samuel Barney | 1 | -0/+192 | |
* Created new color class to handle dye-related coloring | |||||
2015-07-12 | Changing the shared_ptr/unique_ptr constructors to the make_shared/make_unique functions | bibo38 | 1 | -2/+2 | |
2015-06-07 | Fixed style | Nounours Heureux | 1 | -1/+1 | |
2015-06-07 | Cake crafting now give back the bucket | Nounours Heureux | 1 | -1/+8 | |
2015-05-31 | Fixed crafting recipe matching. | Mattes D | 1 | -0/+3 | |
Fixes #2096. | |||||
2015-05-24 | Made -Weverything an error. | tycho | 1 | -2/+2 | |
2015-04-16 | Recipes match zero DamageValue strictly. | Mattes D | 1 | -2/+2 | |
To match any DamageValue for the ingredient, an explicit "-1" as the DamageValue must be specified. Fixes #1859. | |||||
2015-04-16 | Fixed PolishedGranite et al crafting recipes. | Mattes D | 1 | -0/+1 | |
Fixes #1774. Ref.: #1859 | |||||
2014-12-04 | Fixed the CRAFTING_NO_RECIPE hook call. | Mattes D | 1 | -1/+1 | |
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. | |||||
2014-11-27 | Replaced auto_ptr with unique_ptr. | Mattes D | 1 | -3/+3 | |
2014-10-23 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -9/+9 | |
2014-10-20 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -9/+9 | |
2014-10-15 | Functions in cPluginManager get references instead of pointers. | Mattes D | 1 | -4/+4 | |
2014-08-29 | A better hotfix for CraftingRecipies | Tiger Wang | 1 | -1/+1 | |
2014-08-29 | Hotfixed recipe.txt loading. | Hownaer | 1 | -2/+5 | |
2014-08-13 | Fixed Integer pasing warnings in CraftingRecipies.cpp | Tycho | 1 | -4/+2 | |
2014-08-13 | Fixed type issues in CraftingRecipe.cpp | Tycho | 1 | -2/+2 | |
2014-08-13 | Fixed forgotten error checking | Tycho | 1 | -1/+5 | |
2014-07-21 | Style: Normalized to no spaces before closing parenthesis. | madmaxoft | 1 | -1/+1 | |
2014-07-21 | Style: Normalized spaces after if, for and while. | madmaxoft | 1 | -1/+1 | |
2014-07-17 | Normalized comments. | madmaxoft | 1 | -3/+3 | |
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. | |||||
2014-07-17 | Fixed spaces around single-line comments. | madmaxoft | 1 | -1/+1 | |
There should be at least two spaces in front and one space after //-style comments. | |||||
2014-07-17 | Fixed basic whitespace problems. | madmaxoft | 1 | -4/+4 | |
Indenting by spaces and alignment by spaces, as well as trailing whitespace on non-empty lines. | |||||
2014-06-19 | Nullify deleted pointers. | archshift | 1 | -0/+1 | |
2014-04-23 | Small changes | Tiger Wang | 1 | -2/+2 | |
2014-04-21 | Fixed a warning in CraftingRecipes. | Mattes D | 1 | -1/+1 | |
2014-04-18 | Did some static analysis, fixed some bugs and optimized a lot of code | jfhumann | 1 | -4/+6 | |
2014-03-12 | Added additional macros to support the MSVC size_t format and changed all formats to use the macros | Tycho | 1 | -1/+1 | |
2014-03-11 | Fixed a load of format string errors | Tycho | 1 | -1/+1 | |
2014-03-10 | Fixed test asserts | Tycho | 1 | -0/+2 | |
2014-03-09 | Moved firework handler to separate function | Tiger Wang | 1 | -48/+45 | |
* Also simplified and improved readability of code | |||||
2014-03-09 | Fix Linux compile | Tiger Wang | 1 | -2/+3 | |
2014-02-27 | Implemented ballistic missiles (fireworks) | Tiger Wang | 1 | -1/+88 | |
+ Added fireworks | |||||
2013-12-08 | Moved bindings-related to a Bindings subfolder. | madmaxoft | 1 | -1/+1 | |
Ref.: #407 | |||||
2013-11-24 | Moved source to src | Alexander Harkness | 1 | -0/+0 | |
2013-09-28 | Minor startup streamlining | Tiger Wang | 1 | -2/+2 | |
* LOGD'd unneeded debugging messages, streamlining startup + Added a basic timer for how long in seconds it took to start up + Added two checks for plural (plugin/s, second/s) | |||||
2013-05-07 | Replaced MIN / MAX with std::min and std::max | madmaxoft@gmail.com | 1 | -4/+4 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1455 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-01-12 | Merged branch "branches/hooks" into "trunk". | madmaxoft@gmail.com | 1 | -13/+13 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1139 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-11-18 | CraftingRecipes parse now dumps lines it cannot parse. | madmaxoft@gmail.com | 1 | -0/+5 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1052 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-24 | Source files cleanup: The rest of the files renamed. | madmaxoft@gmail.com | 1 | -2/+2 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@887 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-20 | Refactored windows. | madmaxoft@gmail.com | 1 | -1/+1 | |
As described on the forum: http://forum.mc-server.org/showthread.php?tid=561 For now, only basic clicking works; shift-click not implemented yet. git-svn-id: http://mc-server.googlecode.com/svn/trunk@867 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-06-14 | Attempt to bring sanity to newlines across systems. | cedeel@gmail.com | 1 | -765/+765 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@606 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-06-12 | Added working crafting hooks HOOK_PRE_CRAFTING, HOOK_CRAFTING_NO_RECIPE and HOOK_POST_CRAFTING | madmaxoft@gmail.com | 1 | -6/+17 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@598 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-06-12 | Updated the crafting recipes architecture to better support crafting hooks. Removed the old recipe file and implementation altogether. | madmaxoft@gmail.com | 1 | -22/+249 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@597 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-06-09 | Fixed a bug in crafting recipes - would consume multiple items of asterisked ingredients (FS #205) | madmaxoft@gmail.com | 1 | -18/+25 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@593 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-06-04 | Added the new recipe parser, parsing the crafting.txt file. Included are a few recipes. The old parser still works, but will be replaced soon. | madmaxoft@gmail.com | 1 | -0/+520 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@549 0a769ca7-a7f5-676a-18bf-c427514a06d6 |