Skip to content

Commit

Permalink
Merge pull request #83 from Relluem94s/feature/RE-180
Browse files Browse the repository at this point in the history
Feature/re 180
  • Loading branch information
Relluem94 authored Apr 19, 2024
2 parents 125732b + 08cf8e4 commit e7118f1
Show file tree
Hide file tree
Showing 106 changed files with 1,028 additions and 1,065 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.util.ArrayList;
import java.util.List;

import de.relluem94.minecraft.server.spigot.essentials.constants.Constants;
import org.bukkit.attribute.Attribute;
import org.bukkit.attribute.AttributeModifier.Operation;
import org.bukkit.enchantments.Enchantment;
Expand All @@ -19,7 +20,7 @@
public class CustomEnchants {

private CustomEnchants(){
throw new IllegalStateException(Strings.PLUGIN_INTERNAL_UTILITY_CLASS);
throw new IllegalStateException(Constants.PLUGIN_INTERNAL_UTILITY_CLASS);
}

public static final List<EnchantmentHelper> customEnchantments = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import java.util.Arrays;
import java.util.List;

import de.relluem94.minecraft.server.spigot.essentials.constants.Constants;
import org.bukkit.Color;
import org.bukkit.Material;
import org.bukkit.enchantments.Enchantment;
Expand All @@ -32,7 +33,7 @@
public class CustomItems {

private CustomItems() {
throw new IllegalStateException(Strings.PLUGIN_INTERNAL_UTILITY_CLASS);
throw new IllegalStateException(Constants.PLUGIN_INTERNAL_UTILITY_CLASS);
}

public static final ItemHelper magic_water_bucket = new ItemHelper(Material.WATER_BUCKET, 1, PLUGIN_ITEM_MAGIC_WATER_BUCKET, Type.GADGET, Rarity.EPIC, List.of(PLUGIN_ITEM_MAGIC_WATER_BUCKET_LORE)){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@

import java.util.Map;

import de.relluem94.minecraft.server.spigot.essentials.constants.Constants;
import de.relluem94.minecraft.server.spigot.essentials.helpers.RecipeHelper;
import de.relluem94.minecraft.server.spigot.essentials.helpers.recipe.Shaped;

public class CustomRecipes {

private CustomRecipes() {
throw new IllegalStateException(Strings.PLUGIN_INTERNAL_UTILITY_CLASS);
throw new IllegalStateException(Constants.PLUGIN_INTERNAL_UTILITY_CLASS);
}

public static final RecipeHelper cloudBoots = new RecipeHelper(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package de.relluem94.minecraft.server.spigot.essentials;

import de.relluem94.minecraft.server.spigot.essentials.constants.Constants;
import de.relluem94.minecraft.server.spigot.essentials.exceptions.SignMissingCustomInputException;
import de.relluem94.minecraft.server.spigot.essentials.helpers.SignHelper;
import de.relluem94.minecraft.server.spigot.essentials.helpers.SignHelper.ActionType;
Expand All @@ -13,7 +14,7 @@
public class CustomSigns {

private CustomSigns() {
throw new IllegalStateException(Strings.PLUGIN_INTERNAL_UTILITY_CLASS);
throw new IllegalStateException(Constants.PLUGIN_INTERNAL_UTILITY_CLASS);
}

public static final SignHelper spawn;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package de.relluem94.minecraft.server.spigot.essentials;

import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_COLOR_COMMAND;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_FORMS_BORDER;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_MANAGER_STARTTIME_MESSAGE;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_MANAGER_START_MESSAGE;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_MANAGER_STOP_MESSAGE;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_NAME_CONSOLE;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_WORLD_LOBBY;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_WORLD_WORLD;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_WORLD_WORLD_NETHER;
import static de.relluem94.minecraft.server.spigot.essentials.Strings.PLUGIN_WORLD_WORLD_THE_END;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_COLOR_COMMAND;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_FORMS_BORDER;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_MANAGER_STARTTIME_MESSAGE;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_MANAGER_START_MESSAGE;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_MANAGER_STOP_MESSAGE;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_NAME_CONSOLE;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_WORLD_LOBBY;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_WORLD_WORLD;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_WORLD_WORLD_NETHER;
import static de.relluem94.minecraft.server.spigot.essentials.constants.Constants.PLUGIN_WORLD_WORLD_THE_END;
import static de.relluem94.minecraft.server.spigot.essentials.helpers.ChatHelper.consoleSendMessage;

import java.io.File;
Expand Down
Loading

0 comments on commit e7118f1

Please sign in to comment.