mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-26 07:06:44 +01:00
Fix legacy material loading error and Jenkins4J dependencies
This commit is contained in:
parent
5ac00c4920
commit
c7ba94f959
@ -38,8 +38,8 @@ shadowJar {
|
|||||||
include(dependency('org.bstats:bstats-bukkit:1.4'))
|
include(dependency('org.bstats:bstats-bukkit:1.4'))
|
||||||
// update notification stuff
|
// update notification stuff
|
||||||
include(dependency('com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT'))
|
include(dependency('com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT'))
|
||||||
include(dependency('com.squareup.retrofit2:retrofit:2.5.0'))
|
include(dependency('com.squareup.retrofit2:retrofit:2.4.0'))
|
||||||
include(dependency('com.squareup.okhttp3:okhttp:3.14.1'))
|
include(dependency('com.squareup.okhttp3:okhttp:3.14.0'))
|
||||||
include(dependency('com.squareup.okio:okio:2.2.2'))
|
include(dependency('com.squareup.okio:okio:2.2.2'))
|
||||||
include(dependency('org.jetbrains.kotlin:kotlin-stdlib:1.3.30'))
|
include(dependency('org.jetbrains.kotlin:kotlin-stdlib:1.3.30'))
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@ import com.github.intellectualsites.plotsquared.plot.object.StringPlotBlock;
|
|||||||
import com.github.intellectualsites.plotsquared.plot.util.LegacyMappings;
|
import com.github.intellectualsites.plotsquared.plot.util.LegacyMappings;
|
||||||
import com.github.intellectualsites.plotsquared.plot.util.StringComparison;
|
import com.github.intellectualsites.plotsquared.plot.util.StringComparison;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
@ -675,9 +676,14 @@ public final class BukkitLegacyMappings extends LegacyMappings {
|
|||||||
for (final Material material : Material.values()) {
|
for (final Material material : Material.values()) {
|
||||||
final String materialName = material.name().toLowerCase(Locale.ENGLISH);
|
final String materialName = material.name().toLowerCase(Locale.ENGLISH);
|
||||||
if (NEW_STRING_TO_LEGACY_PLOT_BLOCK.get(materialName) == null) {
|
if (NEW_STRING_TO_LEGACY_PLOT_BLOCK.get(materialName) == null) {
|
||||||
|
try {
|
||||||
final LegacyBlock missingBlock =
|
final LegacyBlock missingBlock =
|
||||||
new LegacyBlock(material.getId(), materialName, materialName);
|
new LegacyBlock(material.getId(), materialName, materialName);
|
||||||
missing.add(missingBlock);
|
missing.add(missingBlock);
|
||||||
|
} catch (Exception e) {
|
||||||
|
Bukkit.getLogger().severe(
|
||||||
|
"Error creating legacy block: " + materialName + ". Possibly a new block.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
addAll(missing);
|
addAll(missing);
|
||||||
|
@ -13,7 +13,7 @@ dependencies {
|
|||||||
testAnnotationProcessor("org.projectlombok:lombok:1.18.4")
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.4")
|
||||||
|
|
||||||
compile 'com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT'
|
compile 'com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT'
|
||||||
compile 'com.squareup.okhttp3:okhttp:3.14.1'
|
compile 'com.squareup.okhttp3:okhttp:3.14.0'
|
||||||
compile 'com.squareup.okio:okio:2.2.2'
|
compile 'com.squareup.okio:okio:2.2.2'
|
||||||
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.3.30'
|
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.3.30'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user