Mirror von
https://github.com/ViaVersion/ViaBackwards.git
synchronisiert 2024-11-17 13:30:14 +01:00
Fix NPE in 1.16 TranslatableRewriter
Closes ViaVersion/ViaVersion#2655
Dieser Commit ist enthalten in:
Ursprung
e251565837
Commit
a03a3a2a8d
@ -54,7 +54,8 @@ public class TranslatableRewriter1_16 extends TranslatableRewriter {
|
||||
@Override
|
||||
public void processText(JsonElement value) {
|
||||
super.processText(value);
|
||||
if (!value.isJsonObject()) return;
|
||||
|
||||
if (value == null || !value.isJsonObject()) return;
|
||||
|
||||
// c o l o r s
|
||||
JsonObject object = value.getAsJsonObject();
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren