md_5
0481ae963a
SPIGOT-3382: Ensure players can pickup stuff
2017-06-26 11:21:38 +10:00
md_5
9de5cb59a0
SPIGOT-3377: Fix subspace bubble advancement
2017-06-26 10:16:54 +10:00
md_5
d7cd7275f2
SPIGOT-3379: Generalise canPickupItems to other entities.
2017-06-26 08:34:52 +10:00
md_5
de76085596
SPIGOT-3376: Fix nested functions
2017-06-26 08:27:25 +10:00
md_5
258575110f
SPIGOT-3373: Fix /execute in gameloop functions
2017-06-25 09:46:19 +10:00
md_5
753a8e700d
SPIGOT-3324: Improve tameable damage handling
2017-06-24 10:01:46 +10:00
md_5
763827668e
SPIGOT-3368: Allow anvil level cost to be overwritten by properties
2017-06-23 20:35:17 +10:00
md_5
5e2a23055e
SPIGOT-3364: Correct EntityResurrectEvent
2017-06-23 12:47:29 +10:00
md_5
03f1e37ae2
Fix nether world border center not adjusting
2017-06-18 19:23:33 +10:00
md_5
a7d074c6c0
SPIGOT-3329: Allow per world loot tables
2017-06-15 20:34:19 +10:00
md_5
732911efbc
SPIGOT-3337: Use special data value to indicate multiple recipe choices
2017-06-15 07:23:08 +10:00
Jacob Martin
f7d14f184d
Fix detection of missing or invalid tile entities for End portals and gateways
2017-06-12 12:41:18 -05:00
md_5
ec47e791bd
SPIGOT-3328: EntityTameEvent for Parrots
2017-06-12 07:27:34 +10:00
md_5
202da9777d
SPIGOT-3324: Best effort fix for shoulder Parrots + cancelled damage event
2017-06-11 12:20:18 +10:00
md_5
639aa0cf48
SPIGOT-3320: Apply tile entity fixer to more types
2017-06-11 08:32:29 +10:00
md_5
ed8c725d19
SPIGOT-3304: Respect duration from Vanilla /weather
2017-06-09 16:17:08 +10:00
md_5
2c34c38d7a
SPIGOT-3303: Warn when attempting to grant non existent recipe
2017-06-09 16:13:35 +10:00
md_5
1b3122eef1
SPIGOT-3302: Armor stands not dropping armor
2017-06-09 15:51:56 +10:00
md_5
bb4ae3b3b8
Update to Minecraft 1.12
2017-06-08 18:00:00 +10:00
chickeneer
fe3ca95c76
Prevent NPE when setting tempt target to null
2017-06-04 08:43:00 +10:00
md_5
10daedccdd
Add proper TeleportCause for /teleport
2017-06-04 08:39:36 +10:00
md_5
9a032b246b
SPIGOT-3290: /teleport command overrides player rotation
2017-06-04 08:34:52 +10:00
md_5
701b06494d
SPIGOT-3286: Call BlockFormEvent for Concrete Powder -> Concrete
2017-06-03 17:39:03 +10:00
md_5
e13d119686
Update to Minecraft 1.12-pre6
2017-05-30 21:55:13 +10:00
Scetra
ccc420a957
Add support for preventing block drops in BreakEvent
2017-05-28 17:08:28 +10:00
md_5
c037fe3d44
Add color API for Teams
2017-05-28 11:00:02 +10:00
Pokechu22
44dd60ac27
SPIGOT-3272: Fix duplicate creative inventory
...
This change properly identifies the creative inventory as one with 5 crafting slots (as that's the default set in ContainerPlayer, and handled properly in other containers), instead of having the same inventory twice (which breaks slot identification).
2017-05-28 10:32:31 +10:00
MiniDigger
274304b8ca
SPIGOT-439: Add player locale related APIs.
2017-05-27 19:06:28 +10:00
md_5
a479029a85
Ensure gameLoop function gets selectors applied.
2017-05-26 16:43:56 +10:00
md_5
c7920f4302
SPIGOT-3257: Issue with AdvancementRewards function
2017-05-21 10:28:07 +10:00
md_5
24147056e0
SPIGOT-3258: VehicleBlockCollisionEvent only fires in certain directions
2017-05-21 10:24:47 +10:00
md_5
cda27c992d
SPIGOT-3254: Check chunks are loaded before ticking entities as per previous versions.
2017-05-20 11:28:38 +10:00
md_5
1004352990
Update to Minecraft 1.12-pre5
2017-05-19 21:00:13 +10:00
md_5
45102fcf28
Misc advancement / recipe reload fixes including SPIGOT-3240
2017-05-16 21:22:07 +10:00
md_5
68b0515b51
SPIGOT-3243: Remove recipe reset on world change / death
2017-05-15 18:11:48 +10:00
md_5
913c5a61f7
SPIGOT-3242: Fix rain not showing client side
2017-05-15 15:01:05 +10:00
md_5
5195487ec6
Update to Minecraft 1.12-pre2
2017-05-14 12:00:00 +10:00
md_5
fcc5dcce54
SPIGOT-3235: Disconnect for payload errors
2017-05-14 09:25:25 +10:00
BlackHole
fbb47e8383
SPIGOT-3215: Call BlockPhysicsEvent for tall plants
2017-05-01 19:49:37 +10:00
Matthew
d9d7552262
Implement getColor / setColor for Shulker entity
2017-04-30 09:54:34 +10:00
Pokechu22
a2af8f0a73
SPIGOT-3207: Fix hiding players in a BukkitRunnable after joining
...
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.
2017-04-28 15:27:57 +10:00
Geoff Crossland
6194f6cc49
Drop RegionFile.chunkExists() in favour of Mojang's own version
2017-04-27 21:25:33 +10:00
Matthew
55a1f9ff12
Implement getColor / setColor for TippedArrow
2017-04-26 20:28:27 -04:00
md_5
2453830549
Reset player arrow count on death
2017-04-26 15:56:06 +10:00
md_5
7b044defc0
Remove players from vehicle when changing world via NMS methods.
2017-04-21 14:56:41 +10:00
md_5
0ab698655b
SPIGOT-3192: Return default value for invalid map icons
2017-04-21 08:20:49 +10:00
md_5
1c3428e534
Add small throttle to book edits.
2017-04-20 22:10:31 +10:00
md_5
be9ef980b9
Implement cooldown API
2017-04-19 18:04:32 +10:00
Pokechu22
1ac133ecc5
SPIGOT-3182: Fix tab-completion in command blocks without leading slash
2017-04-13 17:57:47 -07:00
Jacob Martin
d219213e2b
Fixes to mob equipment behaviour
...
* Set correct flag for CanPickUpLoot on NBT load
* Drop previous equipment on mob equipment pickup
2017-04-09 11:45:37 +10:00