CraftBukkit/Spigot
0deb5e7d0a
SPIGOT-4637: Add source block to BlockPhysicsEvent.
...
Allows a plugin to lookup the source block of event. For example, a protection plugin may want to determine what caused the physics event to be triggered.
By: bloodshot <jdroque@gmail.com>
2019-02-24 22:50:05 -05:00
CraftBukkit/Spigot
d7e312278d
Mappings Update
...
By: md_5 <git@md-5.net>
2018-12-26 08:00:00 +11:00
CraftBukkit/Spigot
1471b6a942
Reduce copying of positions from block states
...
By: md_5 <git@md-5.net>
2018-12-22 11:32:11 +11:00
CraftBukkit/Spigot
0d2bc86153
SPIGOT-4534: CreatureSpawnEvent not being called for CHUNK_GEN
...
By: md_5 <git@md-5.net>
2018-12-17 12:30:16 +11:00
CraftBukkit/Spigot
83baf22bde
Mappings Update
...
By: md_5 <git@md-5.net>
2018-12-13 11:00:00 +11:00
CraftBukkit/Spigot
102dee7d4f
Mappings Update
...
By: md_5 <git@md-5.net>
2018-12-06 10:00:00 +11:00
CraftBukkit/Spigot
a194267323
Update to Minecraft 1.13.2
...
By: md_5 <git@md-5.net>
2018-10-23 06:00:00 +11:00
CraftBukkit/Spigot
79c0a37767
SPIGOT-4378: Fix mistakenly included code
...
By: md_5 <git@md-5.net>
2018-09-16 08:16:03 +10:00
CraftBukkit/Spigot
7f1178fda4
SPIGOT-4370: Remove vehicle if its passenger spawn event was cancelled
...
By: md_5 <git@md-5.net>
2018-09-15 15:20:20 +10:00
CraftBukkit/Spigot
844b70144f
SPIGOT-4316: Do even less processing when block placement without physics requested
...
By: md_5 <git@md-5.net>
2018-08-27 18:27:59 +10:00
CraftBukkit/Spigot
f578d94680
Update to Minecraft 1.13.1
...
By: md_5 <git@md-5.net>
2018-08-26 12:00:00 +10:00
CraftBukkit/Spigot
c09fac2858
SPIGOT-4178: Add another BlockPhysicsEvent call site
...
By: md_5 <git@md-5.net>
2018-07-29 09:37:16 +10:00
CraftBukkit/Spigot
1e014acb80
Update to Minecraft 1.13
...
By: md_5 <git@md-5.net>
2018-07-22 12:00:00 +10:00
CraftBukkit/Spigot
7e0a66fdd5
Update to Minecraft 1.13-pre7
...
By: md_5 <git@md-5.net>
2018-07-15 10:00:00 +10:00
CraftBukkit/Spigot
b83b867dbb
SPIGOT-3686: Move entity event call earlier in method
...
By: md_5 <git@md-5.net>
2017-12-09 17:32:19 +11:00
CraftBukkit/Spigot
5e3ba4ff73
Update to Minecraft 1.12.2
...
By: md_5 <git@md-5.net>
2017-09-18 20:00:00 +10:00
CraftBukkit/Spigot
0cda4f9617
Update to Minecraft 1.12.1
...
By: md_5 <git@md-5.net>
2017-08-03 23:00:00 +10:00
CraftBukkit/Spigot
4ed8997ca1
SPIGOT-3463: Spurious item drops from event
...
By: md_5 <git@md-5.net>
2017-07-28 17:23:39 +10:00
CraftBukkit/Spigot
ea595a5dcf
Update to Minecraft 1.12
...
By: md_5 <git@md-5.net>
2017-06-08 18:00:00 +10:00
CraftBukkit/Spigot
ea6ca4328a
Update to Minecraft 1.12-pre6
...
By: md_5 <git@md-5.net>
2017-05-30 21:25:59 +10:00
CraftBukkit/Spigot
a0b8ce2dc9
SPIGOT-3254: Check chunks are loaded before ticking entities as per previous versions.
...
By: md_5 <git@md-5.net>
2017-05-20 11:27:48 +10:00
CraftBukkit/Spigot
530fe41851
Update to Minecraft 1.12-pre5
...
By: md_5 <git@md-5.net>
2017-05-19 21:00:13 +10:00
CraftBukkit/Spigot
40c8954e17
Update to Minecraft 1.12-pre2
...
By: md_5 <git@md-5.net>
2017-05-14 12:00:00 +10:00
CraftBukkit/Spigot
b18c5c741b
Process entity portalling towards the end of a tick.
...
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.
By: md_5 <git@md-5.net>
2017-03-20 15:41:15 +11:00
CraftBukkit/Spigot
cedf1495bd
SPIGOT-3128: Shift VehicleCreateEvent calling.
...
By: md_5 <git@md-5.net>
2017-03-15 20:48:47 +11:00
CraftBukkit/Spigot
49376274b6
Re-enable the vanilla debug MethodProfiler and /debug command
...
This is highly useful for profiling vanilla code, and in some cases plugin code. It is somewhat expensive, though, which is why it was initially disabled.
I chose to use a system property instead of a configuration setting because 1) the MethodProfiler is exclusive to CraftBukkit and not part of the general API (the timings system is the general API equivalent), and 2) using a static final boolean property _may_ allow the JITter to optimize out the methods when disabled (though I'm not sure of it).
There are several changes to fix cases where the profiler code was broken slightly by other craftbukkit changes. All of cases have been fixed, except for the block entity ticking one, due to the cost of the getSimpleName call. For that, a ticking entry is used instead, so that time spent actually ticking the block entities can be compared with time processing the list.
This (effectively) reverts 7dde6cc566
.
By: Pokechu22 <Pokechu022@gmail.com>
2017-01-18 17:42:35 -08:00
CraftBukkit/Spigot
93623ce896
SPIGOT-2966: Entirely remove problematic check
...
By: md_5 <git@md-5.net>
2016-12-28 09:50:40 +11:00
CraftBukkit/Spigot
e6b0af2e55
SPIGOT-2944: Just apply filtering to players
...
By: md_5 <git@md-5.net>
2016-12-22 16:50:24 +11:00
CraftBukkit/Spigot
afecf1c36c
SPIGOT-2948: Alter filtering logic
...
By: md_5 <git@md-5.net>
2016-12-21 17:12:39 +11:00
CraftBukkit/Spigot
f9a809b2ba
Update to Minecraft 1.11.1
...
By: md_5 <git@md-5.net>
2016-12-21 07:00:00 +11:00
CraftBukkit/Spigot
75f7baf1ad
SPIGOT-2926: Check spawn-npcs setting for NPCs.
...
Probably should refactor this code to be more similar to Vanilla in future.
By: md_5 <git@md-5.net>
2016-12-17 14:26:09 +11:00
CraftBukkit/Spigot
4e412ab4e3
Update to Minecraft 1.11
...
By: md_5 <git@md-5.net>
2016-11-17 12:41:03 +11:00
CraftBukkit/Spigot
1908fefc12
Update to Minecraft 1.10.2
...
By: md_5 <git@md-5.net>
2016-06-25 11:54:17 +10:00
CraftBukkit/Spigot
a39b7e5f3a
Update to Minecraft 1.10
...
By: md_5 <git@md-5.net>
2016-06-09 11:43:49 +10:00
CraftBukkit/Spigot
ba115c957b
SPIGOT-2303: Use getChunkIfLoaded
...
By: md_5 <git@md-5.net>
2016-05-22 13:57:44 +10:00
CraftBukkit/Spigot
d506c12c07
Minecraft 1.9.4
...
By: md_5 <git@md-5.net>
2016-05-10 21:47:39 +10:00
CraftBukkit/Spigot
4fbcead283
SPIGOT-2033: Re-add missed diff for entity.valid
...
By: Aikar <aikar@aikar.co>
2016-03-28 20:19:29 -04:00
CraftBukkit/Spigot
9808985b27
SPIGOT-1746: Tile entities may not always tick.
...
By: md_5 <git@md-5.net>
2016-03-25 14:04:27 +11:00
CraftBukkit/Spigot
a28e1be276
SPIGOT-1900: Stub out expensive and redundant method call
...
By: md_5 <git@md-5.net>
2016-03-12 20:43:04 +11:00
CraftBukkit/Spigot
51207b52a7
Missing diff effecting frost walker ignoring entities
...
By: BlackHole <black-hole@live.com>
2016-03-09 19:53:01 +01:00
CraftBukkit/Spigot
9da0e8f2d2
SPIGOT-1663: Fix WorldBorder displaying in secondary worlds.
...
By: md_5 <git@md-5.net>
2016-03-06 12:13:07 +11:00
CraftBukkit/Spigot
52a2a37b2f
SPIGOT-1626 / MC-98994: Fix slow chunk performance
...
Please see https://bugs.mojang.com/browse/MC-98994 for full explanation.
By: md_5 <git@md-5.net>
2016-03-05 18:50:38 +11:00
CraftBukkit/Spigot
c8e3e16545
SPIGOT-1525: Fix worldborder set.
...
By: md_5 <git@md-5.net>
2016-03-01 11:20:42 +11:00
CraftBukkit/Spigot
21d4bf5d1f
Update to Minecraft 1.9
...
By: md_5 <git@md-5.net>
2016-03-01 08:32:46 +11:00
CraftBukkit/Spigot
e6c356ccec
SPIGOT-915: Remove the getEntities filter
...
Didn't fix the issue like i'd hoped and broke a few plugins in the process.
Ideally though plugins shouldn't be using it for large ranges because it
is inefficient
By: Thinkofdeath <thinkofdeath@spigotmc.org>
2015-07-08 22:42:08 +01:00
CraftBukkit/Spigot
6c1c28bd14
Cut fluff from patch headers.
...
By: md_5 <git@md-5.net>
2015-05-25 20:37:24 +10:00
CraftBukkit/Spigot
4a691031e7
SPIGOT-725: Always return captured tile entities
...
By: Thinkofdeath <thinkofdeath@spigotmc.org>
2015-03-22 19:21:34 +00:00
CraftBukkit/Spigot
bb20501495
SPIGOT-711: Correctly init captured tile entities
...
By: Thinkofdeath <thinkofdeath@spigotmc.org>
2015-03-16 15:55:10 +00:00
CraftBukkit/Spigot
3b09feddb2
Capture tile entities and only place them in the event succeeds
...
By: Thinkofdeath <thinkofdeath@spigotmc.org>
2015-03-16 09:48:01 +00:00
CraftBukkit/Spigot
ab23a912dc
SPIGOT-677: Add populators slightly later to make sure everything is initialized
...
By: Thinkofdeath <thinkofdeath@spigotmc.org>
2015-03-11 10:15:39 +00:00