Make RECORD_12 a record. Fixes BUKKIT-3023
Record 12 was missed when added to the Material enum.
This commit is contained in:
parent
91ad18a1b4
commit
2170673680
@ -536,6 +536,6 @@ public enum Material {
|
|||||||
* @return True if this material represents a playable music disk.
|
* @return True if this material represents a playable music disk.
|
||||||
*/
|
*/
|
||||||
public boolean isRecord() {
|
public boolean isRecord() {
|
||||||
return id >= GOLD_RECORD.id && id <= RECORD_11.id;
|
return id >= GOLD_RECORD.id && id <= RECORD_12.id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user