use of org.bukkit.craftbukkit.v1_17_R1.CraftServer in project Denizen-For-Bukkit by DenizenScript.
the class ItemHelperImpl method registerShapelessRecipe.
@Override
public void registerShapelessRecipe(String keyName, String group, ItemStack result, List<ItemStack[]> ingredients, boolean[] exact) {
ResourceLocation key = new ResourceLocation("denizen", keyName);
ArrayList<Ingredient> ingredientList = new ArrayList<>();
for (int i = 0; i < ingredients.size(); i++) {
ingredientList.add(itemArrayToRecipe(ingredients.get(i), exact[i]));
}
ShapelessRecipe recipe = new ShapelessRecipe(key, group, CraftItemStack.asNMSCopy(result), NonNullList.of(null, ingredientList.toArray(new Ingredient[0])));
((CraftServer) Bukkit.getServer()).getServer().getRecipeManager().addRecipe(recipe);
}
use of org.bukkit.craftbukkit.v1_17_R1.CraftServer in project Denizen-For-Bukkit by DenizenScript.
the class PlayerHelperImpl method setTemporaryOp.
@Override
public void setTemporaryOp(Player player, boolean op) {
MinecraftServer server = ((CraftServer) Bukkit.getServer()).getServer();
GameProfile profile = ((CraftPlayer) player).getProfile();
ServerOpList opList = server.getPlayerList().getOps();
if (op) {
int permLevel = server.getOperatorUserPermissionLevel();
opList.add(new ServerOpListEntry(profile, permLevel, opList.canBypassPlayerLimit(profile)));
} else {
opList.remove(profile);
}
player.recalculatePermissions();
}
use of org.bukkit.craftbukkit.v1_17_R1.CraftServer in project Denizen-For-Bukkit by DenizenScript.
the class PlayerHelperImpl method setTemporaryOp.
@Override
public void setTemporaryOp(Player player, boolean op) {
MinecraftServer server = ((CraftServer) Bukkit.getServer()).getServer();
GameProfile profile = ((CraftPlayer) player).getProfile();
OpList opList = server.getPlayerList().getOPs();
if (op) {
int permLevel = server.g();
opList.add(new OpListEntry(profile, permLevel, opList.b(profile)));
} else {
opList.remove(profile);
}
player.recalculatePermissions();
}
use of org.bukkit.craftbukkit.v1_17_R1.CraftServer in project Denizen-For-Bukkit by DenizenScript.
the class Handler method fillPlayerProfile.
@Override
public PlayerProfile fillPlayerProfile(PlayerProfile playerProfile) {
try {
if (playerProfile != null) {
GameProfile gameProfile = new GameProfile(playerProfile.getUniqueId(), playerProfile.getName());
gameProfile.getProperties().get("textures").clear();
if (playerProfile.getTextureSignature() != null) {
gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
} else {
gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture()));
}
MinecraftServer minecraftServer = ((CraftServer) Bukkit.getServer()).getServer();
GameProfile gameProfile1 = null;
if (gameProfile.getId() != null) {
gameProfile1 = minecraftServer.getUserCache().getProfile(gameProfile.getId());
}
if (gameProfile1 == null && gameProfile.getName() != null) {
gameProfile1 = minecraftServer.getUserCache().getProfile(gameProfile.getName());
}
if (gameProfile1 == null) {
gameProfile1 = gameProfile;
}
if (playerProfile.hasTexture()) {
gameProfile1.getProperties().get("textures").clear();
if (playerProfile.getTextureSignature() != null) {
gameProfile1.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
} else {
gameProfile1.getProperties().put("textures", new Property("textures", playerProfile.getTexture()));
}
}
if (Iterables.getFirst(gameProfile1.getProperties().get("textures"), null) == null) {
gameProfile1 = minecraftServer.getMinecraftSessionService().fillProfileProperties(gameProfile1, true);
}
Property property = Iterables.getFirst(gameProfile1.getProperties().get("textures"), null);
return new PlayerProfile(gameProfile1.getName(), gameProfile1.getId(), property != null ? property.getValue() : null, property != null ? property.getSignature() : null);
}
} catch (Exception e) {
if (Debug.verbose) {
Debug.echoError(e);
}
}
return null;
}
use of org.bukkit.craftbukkit.v1_17_R1.CraftServer in project Denizen-For-Bukkit by DenizenScript.
the class ItemHelperImpl method registerFurnaceRecipe.
@Override
public void registerFurnaceRecipe(String keyName, String group, ItemStack result, ItemStack[] ingredient, float exp, int time, String type, boolean exact) {
ResourceLocation key = new ResourceLocation("denizen", keyName);
Ingredient itemRecipe = itemArrayToRecipe(ingredient, exact);
AbstractCookingRecipe recipe;
if (type.equalsIgnoreCase("smoker")) {
recipe = new SmokingRecipe(key, group, itemRecipe, CraftItemStack.asNMSCopy(result), exp, time);
} else if (type.equalsIgnoreCase("blast")) {
recipe = new BlastingRecipe(key, group, itemRecipe, CraftItemStack.asNMSCopy(result), exp, time);
} else if (type.equalsIgnoreCase("campfire")) {
recipe = new CampfireCookingRecipe(key, group, itemRecipe, CraftItemStack.asNMSCopy(result), exp, time);
} else {
recipe = new SmeltingRecipe(key, group, itemRecipe, CraftItemStack.asNMSCopy(result), exp, time);
}
((CraftServer) Bukkit.getServer()).getServer().getRecipeManager().addRecipe(recipe);
}
Aggregations