Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-26 16:12:42 +01:00
Fix block metadata #580
Dieser Commit ist enthalten in:
Ursprung
9103f89aff
Commit
81d4deaea7
@ -72,7 +72,7 @@ public class MetadataRewriter {
|
|||||||
id = (Short) value;
|
id = (Short) value;
|
||||||
}
|
}
|
||||||
if (id != -1 && data != -1) {
|
if (id != -1 && data != -1) {
|
||||||
int combined = id << 4 | data;
|
int combined = id | (data & 0xF);
|
||||||
data = -1;
|
data = -1;
|
||||||
id = -1;
|
id = -1;
|
||||||
entry.setValue(combined);
|
entry.setValue(combined);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren