Mirror von
https://github.com/ViaVersion/ViaBackwards.git
synchronisiert 2024-11-17 13:30:14 +01:00
Use correct constructor in MappedLegacyBlockItem (#721)
Dieser Commit ist enthalten in:
Ursprung
09eda34051
Commit
1ac504afb9
@ -33,7 +33,7 @@ public class MappedLegacyBlockItem {
|
||||
this.id = id;
|
||||
this.data = data;
|
||||
this.name = name != null ? "§f" + name : null;
|
||||
this.block = block ? new IdAndData(id, data) : null;
|
||||
this.block = block ? data != -1 ? new IdAndData(id, data) : new IdAndData(id) : null;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren