Update to Adventure 4.1.1 (#1410)

* Update to Adventure 4.0.0

* Update to 4.0.1

* Update again, I guess.
This commit is contained in:
Camotoy 2020-10-19 19:09:16 -04:00 committed by GitHub
parent b02bc33393
commit 7f5fac38c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -101,7 +101,7 @@ public class BasicItemTranslator extends NbtItemStackTranslator {
if (message.startsWith("§r")) {
message = message.replaceFirst("§r", "");
}
Component component = TextComponent.of(message);
Component component = Component.text(message);
return GsonComponentSerializer.gson().serialize(component);
}