Make RECORD_12 a record. Fixes BUKKIT-3023
Record 12 was missed when added to the Material enum. By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
parent
d2e8c21941
commit
09c601dfa5
1 changed files with 1 additions and 1 deletions
|
@ -536,6 +536,6 @@ public enum Material {
|
|||
* @return True if this material represents a playable music disk.
|
||||
*/
|
||||
public boolean isRecord() {
|
||||
return id >= GOLD_RECORD.id && id <= RECORD_11.id;
|
||||
return id >= GOLD_RECORD.id && id <= RECORD_12.id;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue