summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeLines
* SPIGOT-1515: Use CUSTOM reason for GENERIC damagemd_52016-07-02-2/+2
|
* SPIGOT-2474: Use .die() to set entity remove statusmd_52016-07-02-1/+1
|
* SPIGOT-1364: sendMap should update entire mapmd_52016-07-01-1/+1
|
* SPIGOT-1341: Cancelled cake interact decreases client hungermd_52016-07-01-1/+5
|
* SPIGOT-1181: Ensure Minecart command updates visuallymd_52016-06-30-4/+10
|
* SPIGOT-1129: Fix spawning leash hitch without adjacent blockmd_52016-06-30-6/+8
|
* SPIGOT-1599: Allow teleporting disconnected playersmd_52016-06-30-1/+1
|
* SPIGOT-2456: Don't wipe tiles if type is still the samemd_52016-06-27-1/+1
|
* BUILDTOOLS-251: Make much of Bukkit locale independentmd_52016-06-26-13/+13
|
* Fix air setting block updatesmd_52016-06-26-1/+3
|
* SPIGOT-1039: Improve DoubleChest semanticsmd_52016-06-25-0/+6
|
* MC-100524: Fix log files getting overwrittenPokechu222016-06-25-0/+1
| | | | | | | | https://bugs.mojang.com/browse/MC-100524 Log files were previously overwritten when more than 7 were created on the same day. This is caused by Log4J's default behavior with DefaultRolloverStrategy, which defaults to a max of 7. While a max of 1000 doesn't fully stop this problem from happening, for 1000 log files in a single day to be reached the server would have to restart faster than once every 1.5 minutes, which is unlikely to happen. So 1000 seems like a good limit. A higher max isn't used because when it gets higher, there are performance hits due to the way Log4J checks for the next file.
* SPIGOT-611: Improve setBlock for tile->tile transitionsmd_52016-06-25-0/+4
|
* SPIGOT-2439: Consistently fire Chunk(Load|Unload)EventAikar2016-06-23-89/+21
| | | | | | | | | | | | | | | | | | Clean up implementation and firing of both of these events by routing both unload and load behaviors to consistent method calls. This fixes issues where a few places would not call Load or Unload events when it should have. Additionally, reduces diff by moving the neighbor marking code into these consistent points. Additional benefits of the change include improving the neighbor marking methods to use getChunkIfLoaded instead of getLoadedChunkAt in some places, as the latter will cause chunks to be marked active and not unload. Finally, this also updates CraftWorld.loadChunk to use the new methods, as the previous logic did not properly handle the new unload queue.
* SPIGOT-1319: Add EntityBreedEventRyan Michela2016-06-19-0/+9
|
* Improvements to BookMeta APIRoy Curtis2016-06-16-1/+9
| | | | | | * Added hasGeneration() * Fixed `applyHash()` (used by `CraftMetaItem.hashCode()`) not taking generation into account * Fixed `equalsCommon()` (used by `CraftMetaItem.equals()`) not taking generation into account
* SPIGOT-2408: setTicksLived does not properly affect FallingSandmd_52016-06-13-0/+8
|
* SPIGOT-2398: Armor stands still need to be treated special for gravitymd_52016-06-12-0/+7
|
* SPIGOT-2376: Way to distinguish Zombie professions.md_52016-06-12-1/+1
|
* Add Player.stopSoundmd_52016-06-12-0/+15
|
* SPIGOT-2381: Use custom spawnreason for dropItemmd_52016-06-12-1/+1
|
* SPIGOT-2389: Zombie.setVillager invertedmd_52016-06-12-1/+1
|
* SPIGOT-2387: Magma does not provide a block for EntityDamageEvent.md_52016-06-11-2/+4
|
* SPIGOT-2380: Hitting in the air will always load the chunk at 0,0md_52016-06-11-12/+12
|
* SPIGOT-2369: Tab completing non existant commandmd_52016-06-09-1/+1
|
* Add DamageCause.HOT_FLOORmd_52016-06-09-3/+3
|
* Better map Zombie/Villager professions.md_52016-06-09-3/+3
|
* Update to Minecraft 1.10md_52016-06-09-70/+116
|
* SPIGOT-249: Set skull owner by UUIDmd_52016-06-03-0/+19
|
* SPIGOT-1292: BlockState based FlowerPot API.md_52016-06-03-0/+52
|
* SPIGOT-783: API for book generation data.Roy Curtis2016-06-03-0/+10
|
* SPIGOT-713: APIs to manipulate Entity's silent status.Sansko13372016-06-03-0/+10
|
* SPIGOT-2336: Zombie.setVillager(Z)Vmd_52016-05-31-1/+5
|
* SPIGOT-2315: Neighbour chunk unload markingmd_52016-05-25-1/+1
|
* Implementation of interface to modify the pumpkin head "derp mode" of a snowmanminoneer2016-05-19-0/+10
|
* Implement TabCompleteEventmd_52016-05-16-3/+17
|
* SPIGOT-2285: New CommandBlock types.md_52016-05-16-0/+2
|
* SPIGOT-2286: Don't store CraftBlockState light levelmd_52016-05-16-4/+1
|
* Fix some [but not all] chunk unload issuesmd_52016-05-11-4/+4
|
* Minecraft 1.9.4md_52016-05-10-54/+64
|
* SPIGOT-2206: playEffect doesn't accept sub classes of the expected data typemd_52016-04-26-2/+2
|
* SPIGOT-2213: Fix custom anvil inventorymd_52016-04-24-1/+25
|
* SPIGOT-2211: Fix offhand slot client refreshmd_52016-04-24-3/+6
|
* Missing importmd_52016-04-11-0/+1
|
* Properly validate boss bar progress2008Choco2016-04-11-0/+1
|
* Fix broken potion serializationThinkofname2016-04-10-1/+1
|
* SPIGOT-2085 / SPIGOT-2087 / SPIGOT-2156: Rework internal PotionMeta state to ↵t00thpick12016-04-09-24/+19
| | | | be correct and less complex.
* Begin console output with ANSI line erase.Jofkos2016-04-09-1/+3
|
* Update physics on attached block when setting data of attachable blocksmd_52016-04-09-2/+13
|
* Support integer data values for Effect.VILLAGER_PLANT_GROWThinkofname2016-04-06-0/+3
|