Compare commits

...

4 Commits

Author SHA1 Message Date
Auxilor
d826a9f71f Switched FabledSkyblock to local jar 2022-09-14 21:18:55 +01:00
Auxilor
7ec3355237 Updated to 6.41.1 2022-09-14 21:18:28 +01:00
Auxilor
e59a8cc2e6 Oops 2022-09-14 21:13:33 +01:00
Auxilor
88f974fd10 Fixed long standing bug with ItemProvider (and scyther integration) 2022-09-14 21:08:14 +01:00
6 changed files with 7 additions and 11 deletions

View File

@@ -77,9 +77,6 @@ allprojects {
// LibsDisguises // LibsDisguises
maven("https://repo.md-5.net/content/groups/public/") maven("https://repo.md-5.net/content/groups/public/")
// FabledSkyblock
maven("https://repo.songoda.com/repository/public/")
} }
dependencies { dependencies {

View File

@@ -230,11 +230,11 @@ public final class Items {
String reformattedKey = keyID.replace("__", ":"); String reformattedKey = keyID.replace("__", ":");
item = provider.provideForKey(reformattedKey); part = provider.provideForKey(reformattedKey);
if (item instanceof EmptyTestableItem || item == null) { if (part instanceof EmptyTestableItem || part == null) {
return new EmptyTestableItem(); return new EmptyTestableItem();
} }
registerCustomItem(namespacedKey, item); registerCustomItem(namespacedKey, part);
} }
/* /*

View File

@@ -41,7 +41,6 @@ dependencies {
compileOnly 'com.gmail.filoghost.holographicdisplays:holographicdisplays-api:2.4.0' compileOnly 'com.gmail.filoghost.holographicdisplays:holographicdisplays-api:2.4.0'
compileOnly 'com.github.EssentialsX:Essentials:2.18.2' compileOnly 'com.github.EssentialsX:Essentials:2.18.2'
compileOnly 'com.bgsoftware:SuperiorSkyblockAPI:1.8.3' compileOnly 'com.bgsoftware:SuperiorSkyblockAPI:1.8.3'
compileOnly 'com.songoda:skyblock:2.3.30'
compileOnly 'com.github.MilkBowl:VaultAPI:1.7' compileOnly 'com.github.MilkBowl:VaultAPI:1.7'
compileOnly 'com.github.WhipDevelopment:CrashClaim:f9cd7d92eb' compileOnly 'com.github.WhipDevelopment:CrashClaim:f9cd7d92eb'
compileOnly 'com.wolfyscript.wolfyutilities:wolfyutilities:3.16.0.0' compileOnly 'com.wolfyscript.wolfyutilities:wolfyutilities:3.16.0.0'

View File

@@ -27,11 +27,11 @@ class CustomItemsScyther : CustomItemsIntegration {
Scyther.getInstance(), Scyther.getInstance(),
material, material,
0, 0,
null, 1.0,
1, 1,
Int.MAX_VALUE, Int.MAX_VALUE,
null, "AUTOSELL",
null true
) )
val namespacedKey = NamespacedKeyUtils.create("scyther", key) val namespacedKey = NamespacedKeyUtils.create("scyther", key)

View File

@@ -1,3 +1,3 @@
version = 6.41.0 version = 6.41.1
plugin-name = eco plugin-name = eco
kotlin.code.style = official kotlin.code.style = official

Binary file not shown.