This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package de.mineorea.lib.bukkit.util; | |
| import java.lang.reflect.Field; | |
| import org.bukkit.Bukkit; | |
| public final class SetSlots { | |
| public static final String BASE_NAMESPACE = "net.minecraft.server"; | |
| private static final String MCSERVER_NAMESPACE = BASE_NAMESPACE + "." + getNamespaceVersion() + ".MinecraftServer"; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package de.mineorea.prototype.motd; | |
| import java.util.Arrays; | |
| import org.bukkit.entity.Player; | |
| import org.bukkit.inventory.ItemStack; | |
| import org.bukkit.inventory.PlayerInventory; | |
| import org.bukkit.inventory.meta.ItemMeta; | |
| public class ItemLoreManager { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/groups/Default.yml | |
| group: | |
| general: | |
| name: "default" | |
| build: true | |
| op: false | |
| default: true | |
| primary_group: false | |
| chat: | |
| prefix: "&1[&2Default&1]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package de.mineorea.lib.bukkit.command; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.reflect.Constructor; | |
| import java.lang.reflect.Field; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import org.bukkit.Bukkit; |