Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Remove outdated build delay. | md_5 | 2017-05-14 | -1/+1 |
| | ||||
* | SPIGOT-3235: Disconnect for payload errors | md_5 | 2017-05-14 | -12/+30 |
| | ||||
* | Set health before entity death. | Lukas Hennig | 2017-05-04 | -2/+2 |
| | ||||
* | SPIGOT-3215: Call BlockPhysicsEvent for tall plants | BlackHole | 2017-05-01 | -18/+24 |
| | ||||
* | SPIGOT-3214: Allow book titles up to 32 even though they can't be created by ↵ | md_5 | 2017-04-30 | -1/+1 |
| | | | | a Vanilla client. | |||
* | Implement getColor / setColor for Shulker entity | Matthew | 2017-04-30 | -1/+23 |
| | ||||
* | SPIGOT-3207: Fix hiding players in a BukkitRunnable after joining | Pokechu22 | 2017-04-28 | -49/+51 |
| | | | | | | This happened because "joining" wasn't cleared until the player was ticked. Runnables (presumably) ran _after_ the player list packet was sent, but before the player was ticked; thus, the player list packet was sent, but not cleared. The fix is to replace joining with hasSentListPacket, which is set immediately before sending any player list packets (thus, if hidePlayer is called after, it sees that the list packet has been sent and sends a new one to reset it). With this fix, the player is added to the list and then removed shortly afterwards. The reason why running /hideall in the example wouldn't fix the invisibility is because the server already thinks the player's been removed from the list (as they're hidden), and thus doesn't want to send another hide packet. This is correct behavior assuming that they get hidden correctly the first time, which they now do. | |||
* | Drop RegionFile.chunkExists() in favour of Mojang's own version | Geoff Crossland | 2017-04-27 | -71/+35 |
| | ||||
* | Implement getColor / setColor for TippedArrow | Matthew | 2017-04-26 | -2/+20 |
| | ||||
* | Reset player arrow count on death | md_5 | 2017-04-26 | -1/+2 |
| | ||||
* | Skip invalid enchants in CraftMetaItem | md_5 | 2017-04-26 | -1/+4 |
| | ||||
* | Create NBT TypeId helper class | Senmori | 2017-04-22 | -32/+60 |
| | ||||
* | Remove players from vehicle when changing world via NMS methods. | md_5 | 2017-04-21 | -16/+17 |
| | ||||
* | SPIGOT-3192: Return default value for invalid map icons | md_5 | 2017-04-21 | -0/+11 |
| | ||||
* | Add small throttle to book edits. | md_5 | 2017-04-20 | -47/+74 |
| | ||||
* | Enforce proper limits on books. | md_5 | 2017-04-20 | -5/+10 |
| | ||||
* | Implement cooldown API | md_5 | 2017-04-19 | -9/+62 |
| | ||||
* | Inventory getContents Cleanup | Lukas Hennig | 2017-04-17 | -32/+25 |
| | ||||
* | Make CraftJukebox.isPlaying locally consistent | md_5 | 2017-04-16 | -0/+2 |
| | ||||
* | Add correct interfaces for comparator / daylight detector | md_5 | 2017-04-16 | -2/+4 |
| | ||||
* | Fix some blockstate consistency issues. | md_5 | 2017-04-15 | -15/+25 |
| | ||||
* | SPIGOT-3182: Fix tab-completion in command blocks without leading slash | Pokechu22 | 2017-04-13 | -5/+9 |
| | ||||
* | Fixes to mob equipment behaviour | Jacob Martin | 2017-04-09 | -6/+16 |
| | | | | | * Set correct flag for CanPickUpLoot on NBT load * Drop previous equipment on mob equipment pickup | |||
* | SPIGOT-3165: Only increment spawncount when mob spawn succeeds | md_5 | 2017-04-06 | -4/+9 |
| | ||||
* | SPIGOT-3162: Experience ignored for custom recipes | md_5 | 2017-04-03 | -3/+4 |
| | ||||
* | SPIGOT-3157: Use Vanilla gamemode change code | md_5 | 2017-03-31 | -50/+43 |
| | ||||
* | SPIGOT-3154: Sleeping players cannot change dimensions | md_5 | 2017-03-30 | -18/+19 |
| | ||||
* | SPIGOT-3144: Add missing PrepareAnvilEvent call. | md_5 | 2017-03-25 | -0/+9 |
| | ||||
* | SPIGOT-3149: StructureGrowEvent for dispenser triggered growth | md_5 | 2017-03-24 | -15/+48 |
| | ||||
* | Add additional methods sigs for binary compat | md_5 | 2017-03-24 | -40/+43 |
| | ||||
* | Add Chunk.isSlimeChunk to check if a chunk can spawn slimes | Senmori | 2017-03-24 | -0/+7 |
| | ||||
* | Add TeleportCause.COMMAND for inbuilt /tp | md_5 | 2017-03-24 | -0/+9 |
| | ||||
* | Add Material.isFuel to check if a material is a furnace fuel. | Phoenix616 | 2017-03-24 | -0/+6 |
| | ||||
* | SPIGOT-3142: Plugin event changes not using TeleportCause.PLUGIN | md_5 | 2017-03-24 | -2/+2 |
| | ||||
* | SPIGOT-3141: Missing TeleportCause.SPECTATE when lift clicking spectate | md_5 | 2017-03-24 | -42/+56 |
| | ||||
* | Fix trailing whitespace in CraftChunk | md_5 | 2017-03-23 | -2/+2 |
| | ||||
* | SPIGOT-3143: Don't decrease item stack size if VehicleCreateEvent is cancelled | BlackHole | 2017-03-22 | -2/+22 |
| | ||||
* | Process entity portalling towards the end of a tick. | md_5 | 2017-03-20 | -40/+115 |
| | | | | Cross world teleportation works by taking a copy of an entity and moving it to a new world. After this happens the original entity is marked as dead so as to be removed from the original world, however it still undergoes one further tick in the main world, but with some information from the new world. It is not so easy to break out of this tick cycle if needed, so instead we move the portalling process towards the end of an existing tick. This ensures that the entity will not be spuriously ticked. | |||
* | Properly validate player experience bar progress | Parker Hawke | 2017-03-19 | -0/+1 |
| | ||||
* | Add getWidth + getHeight for Entity | bramhaag | 2017-03-19 | -0/+10 |
| | ||||
* | SPIGOT-3128: Shift VehicleCreateEvent calling. | md_5 | 2017-03-15 | -68/+62 |
| | ||||
* | SPIGOT-3126: Make fireballs do a better job of respecting mobGriefing | md_5 | 2017-03-15 | -11/+45 |
| | ||||
* | Ensure PlayerResourcePackStatusEvent is synchronous | md_5 | 2017-03-14 | -24/+25 |
| | ||||
* | Add getIgnitingBlock to BlockBurnEvent | Nathan Wolf | 2017-03-11 | -6/+35 |
| | ||||
* | Don't call super update on unplaced command block metas | md_5 | 2017-03-10 | -1/+1 |
| | ||||
* | Add more notch inventory conversions | md_5 | 2017-03-10 | -0/+4 |
| | ||||
* | SPIGOT-3114: Initialize custom SHULKER_BOX slots | md_5 | 2017-03-10 | -0/+27 |
| | ||||
* | SPIGOT-3110: SHULKER_BOX InventoryType | md_5 | 2017-03-08 | -0/+10 |
| | ||||
* | SPIGOT-3107: Try and improve shield knockback further | md_5 | 2017-03-08 | -1/+1 |
| | ||||
* | SPIGOT-3108: Hack around mirroring empty item stacks | md_5 | 2017-03-08 | -1/+1 |
| |