mirror of
https://github.com/Zrips/Jobs.git
synced 2025-01-04 23:37:49 +01:00
Lets prevent slab error
This commit is contained in:
parent
6d239bf83d
commit
b6589bac2f
16
pom.xml
16
pom.xml
@ -154,14 +154,14 @@
|
||||
<target>1.7</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- <plugin> -->
|
||||
<!-- <groupId>org.apache.maven.plugins</groupId> -->
|
||||
<!-- <artifactId>maven-jar-plugin</artifactId> -->
|
||||
<!-- <version>2.3.1</version> -->
|
||||
<!-- <configuration> -->
|
||||
<!-- <outputDirectory>C:\Users\Arte\Desktop\Server 1.13\plugins</outputDirectory> -->
|
||||
<!-- </configuration> -->
|
||||
<!-- </plugin> -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.3.1</version>
|
||||
<configuration>
|
||||
<outputDirectory>C:\Users\Arte\Desktop\Server\plugins</outputDirectory>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
|
@ -22,7 +22,6 @@ import org.bukkit.inventory.Recipe;
|
||||
import org.bukkit.inventory.meta.SkullMeta;
|
||||
|
||||
import com.gamingmesh.jobs.Jobs;
|
||||
import com.gamingmesh.jobs.stuff.Debug;
|
||||
import com.gamingmesh.jobs.CMILib.VersionChecker.Version;
|
||||
|
||||
public class ItemManager {
|
||||
@ -2433,17 +2432,19 @@ public class ItemManager {
|
||||
if (Version.isCurrentEqualOrHigher(Version.v1_13_R1)) {
|
||||
if (block.getBlockData() instanceof org.bukkit.block.data.type.Slab) {
|
||||
org.bukkit.block.data.type.Slab slab = (org.bukkit.block.data.type.Slab) block.getBlockData();
|
||||
switch (slab.getType()) {
|
||||
case TOP:
|
||||
org.bukkit.block.data.type.Slab.Type t = slab.getType();
|
||||
switch (t.toString()) {
|
||||
case "TOP":
|
||||
return SlabType.TOP;
|
||||
case BOTTOM:
|
||||
case "BOTTOM":
|
||||
return SlabType.BOTTOM;
|
||||
case DOUBLE:
|
||||
case "DOUBLE":
|
||||
return SlabType.DOUBLE;
|
||||
}
|
||||
}
|
||||
return SlabType.NOTSLAB;
|
||||
}
|
||||
|
||||
if (block.getType().name().contains("STEP")) {
|
||||
switch (CMIMaterial.get(block).getLegacyId()) {
|
||||
case 44:
|
||||
|
Loading…
Reference in New Issue
Block a user