12.3 | Bugfix
BUGFIX: In the 1.8 the plugin info texts were not displayed and it triggered a bug
This commit is contained in:
@@ -103,14 +103,14 @@ public class T2CodeTemplate {
|
||||
send.sender(sender, prefix + "§4======= " + prefix + " §4=======");
|
||||
send.sender(sender, prefix + " §2Autor: §6" + String.valueOf(autor).replace("[", "").replace("]", ""));
|
||||
if (sender instanceof Player) {
|
||||
|
||||
Player player = (Player) sender;
|
||||
if (MCVersion.minecraft1_8 || MCVersion.minecraft1_9 || MCVersion.minecraft1_10 || MCVersion.minecraft1_11 || MCVersion.minecraft1_12 ||
|
||||
MCVersion.minecraft1_13 || MCVersion.minecraft1_14 || MCVersion.minecraft1_15) {
|
||||
send.sender(sender, prefix + " §2Version: §6" + pluginVersion);
|
||||
} else {
|
||||
TextComponent comp2 = new TextBuilder(prefix + " §2Version: §6" + pluginVersion)
|
||||
.addHover("§8Click to copy").addClickEvent(ClickEvent.Action.COPY_TO_CLIPBOARD, Replace.removeColorCode(prefix) + " - " + pluginVersion).build();
|
||||
sender.spigot().sendMessage(comp2);
|
||||
player.spigot().sendMessage(comp2);
|
||||
}
|
||||
|
||||
if (!publicVersion.equalsIgnoreCase(pluginVersion)) {
|
||||
@@ -118,10 +118,11 @@ public class T2CodeTemplate {
|
||||
}
|
||||
TextComponent comp3 = new TextBuilder(prefix + " §2Spigot: §6" + spigot)
|
||||
.addHover("§8Open Spigot").addClickEvent(ClickEvent.Action.OPEN_URL, spigot).build();
|
||||
sender.spigot().sendMessage(comp3);
|
||||
|
||||
player.spigot().sendMessage(comp3);
|
||||
TextComponent comp4 = new TextBuilder(prefix + " §2Discord: §6" + discord)
|
||||
.addHover("§8Open Discord").addClickEvent(ClickEvent.Action.OPEN_URL, discord).build();
|
||||
sender.spigot().sendMessage(comp4);
|
||||
player.spigot().sendMessage(comp4);
|
||||
} else {
|
||||
if (publicVersion.equalsIgnoreCase(pluginVersion)) {
|
||||
send.sender(sender, prefix + " §2Version: §6" + pluginVersion);
|
||||
|
Reference in New Issue
Block a user