Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | SPIGOT-211: Fix mistake in EntityHuman breaking bed spawns | Thinkofdeath | 2014-12-13 | -6/+9 |
| | ||||
* | Fix the spawning of HangingEntities by picking the right direction | Stefan | 2014-12-13 | -24/+10 |
| | | | | | | | | Related to SPIGOT-206. Currently HangingEntities should be located next to the block they are hanging on. With the direction set to the opposite of the block they are hanging from. This code is modified to find the correct direction. | |||
* | Support vanilla's direction tag for fireballs | Thinkofdeath | 2014-12-13 | -14/+14 |
| | ||||
* | Rework the vanilla link fix so that hover/click events aren't lost | Thinkofdeath | 2014-12-13 | -17/+96 |
| | ||||
* | SPIGOT-199: Default to white instead of black for chat messages | Thinkofdeath | 2014-12-13 | -5/+9 |
| | ||||
* | Handle cross dimensional teleports and events. | md_5 | 2014-12-13 | -0/+46 |
| | ||||
* | Use CraftChatMessage.fromComponent so that colors remain in sent messages | Thinkofdeath | 2014-12-12 | -3/+3 |
| | ||||
* | SPIGOT-189: Remove ListenerWrapper in favour of just doing it in EntityPlayer | Thinkofdeath | 2014-12-12 | -80/+28 |
| | ||||
* | Wrap player's ICommandListener so that our permission system can handle ↵ | Thinkofdeath | 2014-12-12 | -1/+70 |
| | | | | | | permission for vanilla commands | |||
* | Ignore errors when parsing books and treat them as old books | Thinkofdeath | 2014-12-12 | -2/+10 |
| | | | | | In previous versions there was a mistake with book handled which may leave books in a broken state, this tries to handle that | |||
* | [Vanilla Fix] Process links in broadcasted messages. | md_5 | 2014-12-12 | -37/+50 |
| | ||||
* | Default to Y=1 when a Y=0 BlockPosition is found to be used in the ↵ | Fabian Faßbender | 2014-12-12 | -0/+139 |
| | | | | BiomeDecorator. This prevents the "n must be positive" Crash due to the fact that sometimes the heightMap can be wrong calculated. Fixes SPIGOT-91 | |||
* | Update JLine | zreed | 2014-12-12 | -320/+5 |
| | | | | Later releases include the TerminalLineSettings patch. Also move call to AnsiConsole.systemInstall() to avoid patching AnsiWindowsTerminal. | |||
* | JLine includes Jansi | zreed | 2014-12-12 | -8/+0 |
| | ||||
* | Rebuilt patches | md_5 | 2014-12-12 | -29/+30 |
| | ||||
* | Fix a client crash issue involving maps. | FearThe1337 | 2014-12-12 | -6/+8 |
| | ||||
* | Implement displayblocks for minecarts (SPIGOT-14). | FearThe1337 | 2014-12-12 | -0/+29 |
| | ||||
* | using generator settings from WorldCreator to specify presets for FLAT or ↵ | TheCutter | 2014-12-12 | -1/+3 |
| | | | | CUSTOMIZED world types | |||
* | Add implementation of the elder Guardian API | md_5 | 2014-12-12 | -4/+81 |
| | ||||
* | Update gson to 2.2.4 | Thinkofdeath | 2014-12-11 | -1/+1 |
| | ||||
* | Merge pull request #43 in SPIGOT/craftbukkit from ↵ | Thinkofdeath | 2014-12-11 | -0/+53 |
|\ | | | | | | | | | | | | | ~FEARTHE1337/craftbukkit:perm to master * commit '33af6fbbbf1c1a8fee3ecc8d4cf79b4a2ba17c16': Add the new minecraft command permission nodes. | |||
| * | Add the new minecraft command permission nodes. | FearThe1337 | 2014-12-11 | -0/+53 |
| | | | | | | | | Previously bukkit ones were in bukkit. Moved to CraftBukkit with new prefixes. | |||
* | | Re-enable selectors for players and the console using vanilla commands | Thinkofdeath | 2014-12-11 | -44/+17 |
|/ | ||||
* | Rewrite book handling, Fixes SPIGOT-182 and part of SPIGOT-164 | Thinkofdeath | 2014-12-11 | -72/+190 |
| | ||||
* | Fixed mis-placed CraftBukkit comments | Thinkofdeath | 2014-12-11 | -11/+9 |
| | ||||
* | Remove old dev comments | Thinkofdeath | 2014-12-11 | -33/+21 |
| | ||||
* | SPIGOT-179: Fix the age counter not being reset for cacti and reeds | Thinkofdeath | 2014-12-11 | -10/+13 |
| | ||||
* | Fix per a world world borders | Thinkofdeath | 2014-12-10 | -55/+134 |
| | | | | Well... mostly anyway | |||
* | SPIGOT-143: Fix various animal stuff not being canceled by damageEntity. | FearThe1337 | 2014-12-10 | -20/+88 |
| | | | | | Fixes wolves and ocelots standing up when the damag event is being canceled. Also stops breeding mode reset by the same event. | |||
* | Fix another missed scoreboard rename | Thinkofdeath | 2014-12-10 | -3/+3 |
| | ||||
* | Merge pull request #26 in SPIGOT/craftbukkit from ↵ | Thinkofdeath | 2014-12-10 | -3/+29 |
|\ | | | | | | | | | | | | | ~AIKAR/craftbukkit:applyPatches to master * commit '8a8312fb92c488e4323a30cd9ac4268ae862793d': Improve patch scripts, add applyPatches.sh | |||
| * | Improve patch scripts, add applyPatches.sh | Aikar | 2014-12-03 | -3/+29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When working on CraftBukkit, one may need to update to the latest. Before adding new work, you would need to rebuild your patched files to latest. Currently BuildTools does this for you, but BuildTools does not support segment based actions. So this new script replicates the behavior of rebuilding the patched files using nms-patches. BuildTools can then be updated to simply call this script. Also, improved makePatches by removing dos2unix. This command does not exists on all systems, and can very simply be replaced by sed. Finally, hard coded path to /ls as a user may of aliased ls to default change the format, so call it directly to ensure we get the desired behavior. | |||
* | | Merge pull request #42 in SPIGOT/craftbukkit from ↵ | Thinkofdeath | 2014-12-10 | -13/+24 |
|\ \ | | | | | | | | | | | | | | | | | | | ~CYBERTIGER/craftbukkit:save-gamerules to master * commit '88366173d8281e8a7c6f6464f5784cdfdf87ee2b': SPIGOT-169: Save level.dat for non-primary worlds. | |||
| * | | SPIGOT-169: Save level.dat for non-primary worlds. | Antony Riley | 2014-12-10 | -13/+24 |
| | | | ||||
* | | | SPIGOT-173: Fix missed renames in EntityHuman | Thinkofdeath | 2014-12-10 | -4/+4 |
| | | | ||||
* | | | Fix /gamerule always targeting the main world | Thinkofdeath | 2014-12-10 | -3/+28 |
|/ / | ||||
* | | Fix crash with null thorns damager | md_5 | 2014-12-10 | -0/+11 |
| | | ||||
* | | Remove CommandWorldBorder patch as this is handled in the command wrapper | Thinkofdeath | 2014-12-09 | -28/+0 |
| | | ||||
* | | Make sure to catch extra interact packets from the client | Thinkofdeath | 2014-12-09 | -41/+52 |
| | | ||||
* | | SPIGOT-162: Fix cancelling RIGHT_CLICK_BLOCK not cancelling used items | Thinkofdeath | 2014-12-09 | -34/+41 |
| | | ||||
* | | Add some missing Tile Entities | Thinkofdeath | 2014-12-07 | -22/+43 |
| | | ||||
* | | Add CraftMetaTileEntity, fixes the previously broken tests | Thinkofdeath | 2014-12-07 | -26/+156 |
| | | ||||
* | | Minor bug fixes | Thinkofdeath | 2014-12-07 | -2/+5 |
| | | ||||
* | | Disable some tests whilst issues with them are looked into | Thinkofdeath | 2014-12-07 | -3/+3 |
| | | ||||
* | | Fix isEmpty and hashCode for CraftMetaItem | Thinkofdeath | 2014-12-07 | -1/+2 |
| | | ||||
* | | Fix BlockEntityTag being stripped from items | Thinkofdeath | 2014-12-07 | -1/+18 |
| | | ||||
* | | Clone the vector that is passed to the VelocityEvent | Thinkofdeath | 2014-12-07 | -3/+3 |
| | | ||||
* | | Merge pull request #35 in SPIGOT/craftbukkit from ↵ | Thinkofdeath | 2014-12-07 | -27/+63 |
|\ \ | | | | | | | | | | | | | | | | | | | ~GENAZT/craftbukkit:bugfix/SPIGOT-128 to master * commit '0655dfe98b13ae889048acbcfa7a34fdc8886187': Fire the VelocityEvent when an EntityHuman got attacked. Fixes SPIGOT-128 | |||
| * | | Fire the VelocityEvent when an EntityHuman got attacked. Fixes SPIGOT-128 | Fabian Faßbender | 2014-12-06 | -27/+63 |
| | | | ||||
* | | | Merge pull request #34 in SPIGOT/craftbukkit from ↵ | Thinkofdeath | 2014-12-07 | -0/+52 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | ~GENAZT/craftbukkit:bugfix/SPIGOT-135 to master * commit '86eaec03f1a339fe282f16b83e6041796c722875': Add missing DispenseBehavior for Fireworks. Fixes SPIGOT-135 |