Material API additions
This commit is contained in:
@ -135,6 +135,7 @@ import org.jetbrains.annotations.Nullable;
|
|||||||
/**
|
/**
|
||||||
* An enum of all material IDs accepted by the official server and client
|
* An enum of all material IDs accepted by the official server and client
|
||||||
*/
|
*/
|
||||||
|
@SuppressWarnings({"DeprecatedIsStillUsed", "deprecation"}) // Paper
|
||||||
public enum Material implements Keyed, Translatable {
|
public enum Material implements Keyed, Translatable {
|
||||||
//<editor-fold desc="Materials" defaultstate="collapsed">
|
//<editor-fold desc="Materials" defaultstate="collapsed">
|
||||||
AIR(9648, 0),
|
AIR(9648, 0),
|
||||||
@ -4817,6 +4818,22 @@ public enum Material implements Keyed, Translatable {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Paper start
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return If the type is either AIR, CAVE_AIR or VOID_AIR
|
||||||
|
*/
|
||||||
|
public boolean isEmpty() {
|
||||||
|
switch (this) {
|
||||||
|
case AIR:
|
||||||
|
case CAVE_AIR:
|
||||||
|
case VOID_AIR:
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// Paper end
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Do not use for any reason.
|
* Do not use for any reason.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user