You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/posts/1.21.11.mdx
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,12 @@ We would like to thank everyone that worked on this update:
24
24
25
25
If you'd like to support PaperMC as a whole, you can find more information at https://papermc.io/sponsors.
26
26
27
+
## Changes for server owners
28
+
29
+
There's one notable behavior change in Vanilla we would like to highlight: Setting the explosion radius of creepers to -1 disable block breaking while keeping entity knockback is no longer possible (as per [MC-304798](https://mojira.dev/MC-304798)).
30
+
31
+
---
32
+
27
33
## For developers
28
34
29
35
### Minecraft versioning changes
@@ -39,7 +45,7 @@ Starting with 26.1, Mojang will no longer provide obfuscated server jars and ins
39
45
**Hence, now is a good time to make sure your plugins are able to run on server jars that are not obfuscated.**
40
46
You can do this by starting a 1.21.11 Paper server using the `-Dpaper.disablePluginRemapping=true` startup flag and removing the `reobfJar` step from your [paperweight-userdev config](https://docs.papermc.io/paper/dev/userdev/#compiling-to-mojang-mappings).
41
47
42
-
If your plugin is still using Spigot-mapped internal names (such as obfuscated class/field/method names or Spigot names like `EntityHuman` and `PacketPlayIn...`), please prepare migration as soon as you can, as your plugin will not work on 26.1, no matter if you are using Paper or not. Ideally, use our [userdev plugin](https://docs.papermc.io/paper/dev/userdev/) if you aren't already.
48
+
If your plugin is still using Spigot-mapped internal names (such as obfuscated class/field/method names or Spigot names like `EntityHuman` and `PacketPlayIn...`), please prepare migration as soon as you can, as your plugin will not work on 26.1, no matter if you are using Paper or not. Ideally, use our [userdev plugin](https://docs.papermc.io/paper/dev/userdev/) if you aren't already. If you aren't using Gradle for building your plugin, consider switching to it, as it _really_ makes the ordeal much simpler.
43
49
44
50
### Gamerule changes
45
51
@@ -59,7 +65,6 @@ Beyond API for all the new 1.21.11 features, here is a small selection of other
59
65
- Added [more data getters](<https://jd.papermc.io/paper/1.21.11/org/bukkit/JukeboxSong.html#getDescription()>) to `JukeboxSong`
60
66
- Added `MapPalette.getNearestColor` to get the [closest color in the map palette to a given color](<https://jd.papermc.io/paper/1.21.11/org/bukkit/map/MapPalette.html#getNearestColor(java.awt.Color)>)
61
67
- Added `fix-far-end-terrain-generation` config option to allow disabling our fix for MC-159283 to instead use Vanilla's end ring terrain
62
-
- Setting the explosion radius of creepers to -1 disable block breaking while keeping entity knockback is no longer possible (as per [MC-304798](https://mojira.dev/MC-304798))
0 commit comments