3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-03 09:18:03 +02:00
Dieser Commit ist enthalten in:
dordsor21 2024-06-12 16:02:41 +01:00
Ursprung b4ed044981
Commit ca8ac01946
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1E53E88969FFCF0B
3 geänderte Dateien mit 35 neuen und 5 gelöschten Zeilen

Datei anzeigen

@ -43,6 +43,17 @@ public class BiomeType implements RegistryItem, Keyed, BiomePattern {
this.id = id;
}
/**
* Gets the ID of this biome.
*
* @return The id
* @since TODO
*/
@Override
public String id() {
return this.id;
}
public int getLegacyId() {
return legacyId;
}
@ -64,12 +75,12 @@ public class BiomeType implements RegistryItem, Keyed, BiomePattern {
/**
* Gets the ID of this biome.
*
* @return The id
* @return the id
* @deprecated use {@link #id()}
*/
@Deprecated(forRemoval = true, since = "TODO")
@Override
public String id() {
public String getId() {
return this.id;
}

Datei anzeigen

@ -46,11 +46,20 @@ public class EntityType implements RegistryItem, Keyed {
*
* @return the id
* @since TODO
*/
public String id() {
return this.id;
}
/**
* Gets the id of this entity type.
*
* @return the id
* @deprecated use {@link #id()}
*/
@Deprecated(forRemoval = true, since = "TODO")
@Override
public String id() {
public String getId() {
return this.id;
}

Datei anzeigen

@ -40,15 +40,25 @@ public class FluidType implements RegistryItem, Keyed {
}
/**
* Gets the ID of this block.
* Gets the ID of this fluid.
*
* @return The id
* @since TODO
*/
@Override
public String id() {
return this.id;
}
/**
* Gets the ID of this fluid.
*
* @return the id
* @deprecated use {@link #id()}
*/
@Deprecated(forRemoval = true, since = "TODO")
@Override
public String id() {
public String getId() {
return this.id;
}