mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-22 15:05:18 +01:00
Added debug enchantment classes and updated eco
This commit is contained in:
parent
ad8df3ed55
commit
697701801a
@ -7,7 +7,7 @@ plugins {
|
||||
|
||||
dependencies {
|
||||
implementation project(":eco-core").getSubprojects()
|
||||
implementation 'com.willfp:eco:1.0.4'
|
||||
implementation 'com.willfp:eco:1.0.5'
|
||||
}
|
||||
|
||||
allprojects {
|
||||
|
@ -3,6 +3,6 @@ version rootProject.version
|
||||
|
||||
subprojects {
|
||||
dependencies {
|
||||
compileOnly 'com.willfp:eco:1.0.3'
|
||||
compileOnly 'com.willfp:eco:1.0.5'
|
||||
}
|
||||
}
|
@ -78,7 +78,8 @@ public class CommandEcodebug extends AbstractCommand {
|
||||
|
||||
List<Enchantment> extern = Arrays.stream(Enchantment.values()).collect(Collectors.toList());
|
||||
extern.removeAll(EcoEnchants.values().stream().map(EcoEnchant::getEnchantment).collect(Collectors.toList()));
|
||||
this.getPlugin().getLog().info("External/Vanilla Enchantments: " + extern.toString());
|
||||
String external = extern.stream().map(enchantment -> "{" + enchantment.toString() + ", Provider: " + enchantment.getClass().toString() + "}").collect(Collectors.joining(", "));
|
||||
this.getPlugin().getLog().info("External/Vanilla Enchantments: " + external);
|
||||
this.getPlugin().getLog().info("");
|
||||
|
||||
List<Enchantment> uncached = Arrays.stream(Enchantment.values()).collect(Collectors.toList());
|
||||
|
@ -5,7 +5,7 @@ subprojects {
|
||||
dependencies {
|
||||
compileOnly project(":eco-core:core-plugin")
|
||||
compileOnly project(":eco-core:core-proxy")
|
||||
compileOnly 'com.willfp:eco:1.0.3'
|
||||
compileOnly 'com.willfp:eco:1.0.5'
|
||||
compileOnly 'org.spigotmc:spigot-api:1.16.4-R0.1-SNAPSHOT'
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user