Update to Minecraft 1.18.2

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2022-03-01 02:00:00 +11:00
parent f37d1372b3
commit 6b7d2d9a91
3 changed files with 19 additions and 9 deletions

View File

@ -5,7 +5,7 @@
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.18.1-R0.1-SNAPSHOT</version>
<version>1.18.2-R0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Bukkit</name>
@ -48,7 +48,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.8</version>
<version>2.8.9</version>
<scope>compile</scope>
</dependency>
<dependency>

View File

@ -19,7 +19,7 @@ import org.jetbrains.annotations.Nullable;
* The registration of new {@link StructureType}s is case-sensitive.
*/
// Order is retrieved from WorldGenFactory
public final class StructureType {
public final class StructureType implements Keyed {
private static final Map<String, StructureType> structureTypeMap = new HashMap<>();
@ -161,7 +161,7 @@ public final class StructureType {
* STRUCTURE TYPES REGISTERED ABOVE THIS
* ****************
*/
private final String name;
private final NamespacedKey key;
private final MapCursor.Type mapCursor;
/**
@ -176,7 +176,7 @@ public final class StructureType {
*/
private StructureType(@NotNull String name, @Nullable MapCursor.Type mapIcon) {
Validate.notEmpty(name, "Structure name cannot be empty");
this.name = name;
this.key = NamespacedKey.minecraft(name);
this.mapCursor = mapIcon;
}
@ -188,7 +188,7 @@ public final class StructureType {
*/
@NotNull
public String getName() {
return name;
return key.getKey();
}
/**
@ -211,20 +211,20 @@ public final class StructureType {
return false;
}
StructureType that = (StructureType) other;
return this.name.equals(that.name) && this.mapCursor == that.mapCursor;
return this.key.equals(that.key) && this.mapCursor == that.mapCursor;
}
@Override
public int hashCode() {
int hash = 7;
hash = 71 * hash + Objects.hashCode(this.name);
hash = 71 * hash + Objects.hashCode(this.key);
hash = 71 * hash + Objects.hashCode(this.mapCursor);
return hash;
}
@Override
public String toString() {
return "StructureType{name=" + this.name + ", cursor=" + this.mapCursor + "}";
return "StructureType{key=" + this.key + ", cursor=" + this.mapCursor + "}";
}
@NotNull
@ -244,4 +244,10 @@ public final class StructureType {
public static Map<String, StructureType> getStructureTypes() {
return ImmutableMap.copyOf(structureTypeMap);
}
@NotNull
@Override
public NamespacedKey getKey() {
return key;
}
}

View File

@ -348,6 +348,10 @@ public interface Tag<T extends Keyed> extends Keyed {
* Vanilla block tag representing all climbable blocks.
*/
Tag<Material> CLIMBABLE = Bukkit.getTag(REGISTRY_BLOCKS, NamespacedKey.minecraft("climbable"), Material.class);
/**
* Vanilla block tag representing all blocks which reset fall damage.
*/
Tag<Material> FALL_DAMAGE_RESETTING = Bukkit.getTag(REGISTRY_BLOCKS, NamespacedKey.minecraft("fall_damage_resetting"), Material.class);
/**
* Vanilla block tag representing all shulker boxes.
*/