jmp
1718f61bf8
Updated Upstream (CraftBukkit/Spigot)
...
Doesn't compile yet.
CraftBukkit Changes:
90d6905b Repackage NMS
69cf961d Repackage patches
Spigot Changes:
79d53c28 Repackage NMS
2021-03-18 18:03:22 +01:00
Mariell Hoversholm
c02c22fde5
fix: legacy component serialisation was wiped out
...
When merging 4e958e229f
, nobody caught the
fact we removed the component serialisation of legacy BungeeCord Chat
API components in the PacketPlayOutTitle class.
Test plugin code:
```kotlin
class LegacyMessageCommand : BaseCommand() {
override fun register(manager: PaperCommandManager<CommandSender>) {
manager.command(manager.commandBuilder("legacymsg")
.sender<Player>()
.handler {
val component = ComponentBuilder("Test")
.color(ChatColor.DARK_RED)
.bold(true)
.append(" message")
.bold(false)
.color(ChatColor.of("#f8a8a8"))
.event(
HoverEvent(
HoverEvent.Action.SHOW_TEXT,
Text(
ComponentBuilder("Test hover")
.color(ChatColor.AQUA)
.underlined(true)
.create()
)
)
)
.event(
ClickEvent(
ClickEvent.Action.SUGGEST_COMMAND,
"/legacymsg"
)
)
.create()
it.sender.sendMessage(*component)
it.sender.sendActionBar(*component)
it.sender.sendTitle(
Title.builder()
.title(component)
.subtitle(component)
.fadeIn(40)
.stay(60)
.fadeOut(40)
.build()
)
})
}
}
```
Fixes GH-5271.
2021-02-27 12:46:57 +01:00
Riley Park
4e958e229f
We're going on an Adventure! ( #4842 )
...
Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>
Co-authored-by: zml <zml@stellardrift.ca>
Co-authored-by: Mariell Hoversholm <proximyst@proximyst.com>
2021-02-21 20:45:33 +01:00
Gabscap
7ae47d4eb3
[CI-SKIP] Remove Waving banner fix ( #4786 )
...
Mojang fixed it in MC-63720
2020-11-19 10:15:16 -05:00
Shane Freeder
611a0ee52d
Revert "Updated Upstream (Spigot) ( #4745 )"
...
This reverts commit e38eceb42a
.
2020-11-09 00:09:37 +00:00
Mariell
e38eceb42a
Updated Upstream (Spigot) ( #4745 )
...
Upstream has released updates that appears to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Spigot Changes:
a19903d2 SPIGOT-520: Add option to disable player data saving
2020-11-08 10:00:43 +00:00
Mariell Hoversholm
654b792caf
Updated Upstream (CraftBukkit)
...
Upstream has released updates that appears to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
CraftBukkit Changes:
a339310c
#755 : Fix NPE when calling getInventory() for virtual EnderChests
2577f9bf
Increase outdated build delay
1dabfdc8
#754 : Fix pre-1.16 serialized SkullMeta being broken on 1.16+, losing textures
2020-09-27 11:04:51 -04:00