Merge branch 'master' into feature/extensions

This commit is contained in:
RednedEpic 2022-09-04 16:42:14 -05:00
commit 8fb22ee225
36 changed files with 97 additions and 65 deletions

View file

@ -73,7 +73,8 @@ public class SpigotCommandSource implements GeyserCommandSource {
return;
}
handle.sendMessage(BungeeComponentSerializer.get().serialize(message));
// CommandSender#sendMessage(BaseComponent[]) is Paper-only
handle.spigot().sendMessage(BungeeComponentSerializer.get().serialize(message));
}
@Override