summaryrefslogtreecommitdiffstats
path: root/nms-patches
Commit message (Collapse)AuthorAgeLines
...
* Merge pull request #35 in SPIGOT/craftbukkit from ↵Thinkofdeath2014-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-128Fabian Faßbender2014-12-06-27/+63
| |
* | Merge pull request #34 in SPIGOT/craftbukkit from ↵Thinkofdeath2014-12-07-0/+52
|\ \ | | | | | | | | | | | | | | | | | | ~GENAZT/craftbukkit:bugfix/SPIGOT-135 to master * commit '86eaec03f1a339fe282f16b83e6041796c722875': Add missing DispenseBehavior for Fireworks. Fixes SPIGOT-135
| * | Add missing DispenseBehavior for Fireworks. Fixes SPIGOT-135Fabian Faßbender2014-12-06-0/+52
| |/
* | Filter extra right click air interaction eventsThinkofdeath2014-12-07-34/+56
| |
* | Fix worldborders showing from the wrong worldThinkofdeath2014-12-06-3/+3
|/
* Disconnect old players before firing PlayerLoginEvent and fire aThinkofdeath2014-12-06-60/+84
| | | | PlayerQuitEvent straight after a PlayerKickEvent
* SPIGOT-80: Fix players being invisible after teleportingThinkofdeath2014-12-06-3/+16
|
* Force the player to be saved when disconnecting duplicatesThinkofdeath2014-12-06-15/+19
| | | | Allows the current player to grab the updated file
* Readd missed diff in EntityEnderCrystalThinkofdeath2014-12-05-3/+13
|
* Add basic support for executing commands from signsThinkofdeath2014-12-05-104/+112
| | | | TODO: Wrap the player in to allow for plugins to handle it better
* SPIGOT-117: Fix sticky pistons firing for the wrong direction when pulling ↵Thinkofdeath2014-12-05-7/+12
| | | | blocks backwards
* SPIGOT-123: Force inventory updates on crafting to correctly support custom ↵Thinkofdeath2014-12-05-20/+26
| | | | recipes
* Fix the chunks being blocked from unloading based on the keepSpawnInMemory flagThinkofdeath2014-12-05-3/+3
|
* Move WorldSaveEvent to proper locationAikar2014-12-03-44/+42
| | | | | | calling CraftWorld.save() currently does not call WorldSaveEvent, and WorldSaveEvent could fire on worlds that have saving disabled. New location will always fire during a world save and only during an actual save.
* Minor formatting fixesThinkofdeath2014-12-03-3/+3
|
* Fix spawn reason for mob eggsThinkofdeath2014-12-03-2/+11
|
* SPIGOT-102: Fix the player being teleported up 1.62 blocks on cancelling the ↵Thinkofdeath2014-12-02-3/+3
| | | | PlayerMoveEvent
* Fix selectors in non-bukkit commands for command blocksThinkofdeath2014-12-02-6/+16
|
* Filter invalid bounding boxes for entitiesThinkofdeath2014-12-02-24/+39
| | | | This should prevent issues caused by broken horses
* Fix a missed case for weather transitions on joinThinkofdeath2014-12-02-6/+7
|
* SPIGOT-96/BUKKIT-5016: Fix thunder storms not darkening the sky and ↵Thinkofdeath2014-12-02-39/+93
| | | | transitions being broken.
* SPIGOT-85: Fix NPE in monster spawners when right-clicked with invalid spawn ↵Thinkofdeath2014-12-01-5/+17
| | | | eggs
* Another attempt of fixing OOB Horses. Just remove them from the world ↵Fabian Faßbender2014-11-30-7/+8
| | | | instead of setting it dead.
* Add missing CB commentThinkofdeath2014-11-30-3/+3
|
* Force chunk loading in EntityHuman.getBed, Fixes SPIGOT-64Thinkofdeath2014-11-30-4/+12
|
* Update the correct Scoreboard Criteria when a health change comes in. This ↵Fabian Faßbender2014-11-30-3/+3
| | | | fixes SPIGOT-20
* Fix LEFT_CLICK_AIRThinkofdeath2014-11-30-26/+25
|
* Add a flag to correctly convert signs to 1.8Thinkofdeath2014-11-30-0/+43
|
* Horses spawned under Y 0 cause CraftBukkit to crash. This happens a lot ↵Fabian Faßbender2014-11-30-7/+21
| | | | | | since people keep using bugged Horses for Holographics Remove out of bounds horses, fixes an vanilla bug. Fixes SPIGOT-58
* Optimize the invalid block fixingThinkofdeath2014-11-29-11/+6
|
* Treat LeavesDecayEvent as canceled if a plugin changes the blockThinkofdeath2014-11-29-3/+3
|
* Fix canceling BlockPlaceEventThinkofdeath2014-11-29-6/+6
|
* Remove old debug infoThinkofdeath2014-11-29-33/+32
|
* Merge pull request #8 in SPIGOT/craftbukkit from ↵Thinkofdeath2014-11-29-30/+47
|\ | | | | | | | | | | | | | | ~GENAZT/craftbukkit:bugfix/SPIGOT-46 to master * commit '1e8a3f192f78aebad26c3ed9dcdd27d61d51e130': Corrected WorldData patch file Rewrite the level.dat properly. This fixes SPIGOT-46
| * Corrected WorldData patch fileFabian Faßbender2014-11-29-1299/+7
| |
| * Rewrite the level.dat properly. This fixes SPIGOT-46Fabian Faßbender2014-11-29-30/+1339
| |
* | Improve the invalid block handlingThinkofdeath2014-11-29-8/+17
|/
* Just only hold the last BlockState update for the same location. This fixes ↵Fabian Faßbender2014-11-29-36/+50
| | | | SPIGOT-44
* Fix a vanilla issue which causes invalid data values on blocks to turn to airThinkofdeath2014-11-29-6/+32
| | | | | Worlds already loaded in 1.8 can still be saved by this but tile entities will be lost
* Fire EntityDamageEvent for armor standsThinkofdeath2014-11-29-0/+14
| | | | Somewhat of a lazy way of doing it but it will do for now
* Minecraft by default only uses the World at index 0 for the WorldBorder ↵Fabian Faßbender2014-11-29-0/+39
| | | | command. This fixes SPIGOT-12
* Fix command blocksThinkofdeath2014-11-29-2/+11
|
* Don't default the universe to the current directoryThinkofdeath2014-11-28-23/+21
|
* Re-add the timestamp for spigotThinkofdeath2014-11-28-0/+32
|
* Fix interaction issuesThinkofdeath2014-11-28-113/+49
|
* Revert "Remove patch headers"Thinkofdeath2014-11-28-0/+526
| | | | This reverts commit d6e3dff7d88b3b4275108071704a1ef18d8484c5.
* Remove patch headersGunfighterJ2014-11-28-526/+0
|
* Fix enchanting to match 1.8 behaviourThinkofdeath2014-11-28-3/+3
|
* Improve vanilla command handling for command blocksThinkofdeath2014-11-28-9/+10
|