mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-14 13:13:24 +00:00
Fix LegacyItemID method override
This commit is contained in:
parent
149d9b61cc
commit
492005d00a
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ public class LegacyItemDb extends AbstractItemDb {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Material getFromLegacy(int id, short damage) {
|
public Material getFromLegacy(final int id, final byte damage) {
|
||||||
ItemData data = this.legacyIds.get(id);
|
ItemData data = this.legacyIds.get(id);
|
||||||
if (data == null) {
|
if (data == null) {
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue