ru.cwcode.commands.paperplatform.features.ItemToGsonCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of PaperCommands Show documentation
Show all versions of PaperCommands Show documentation
Commands library for Paper (Minecraft)
package ru.cwcode.commands.paperplatform.features;
import com.google.gson.Gson;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.event.ClickEvent;
import net.kyori.adventure.text.event.HoverEvent;
import ru.cwcode.commands.paperplatform.executor.Executor;
import ru.cwcode.cwutils.messages.MessageReturn;
import ru.cwcode.cwutils.messages.TargetableMessageReturn;
public class ItemToGsonCommand extends Executor {
@Override
public void executeForPlayer() throws MessageReturn, TargetableMessageReturn {
String json = new Gson().toJson(player().getInventory().getItemInMainHand().serialize());
player().sendMessage(Component.text(json)
.clickEvent(ClickEvent.copyToClipboard(json))
.hoverEvent(HoverEvent.showText(Component.text(""))));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy