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

@ -137,21 +137,21 @@
<version>2.1.3</version> <version>2.1.3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.kyoripowered.adventure</groupId> <groupId>net.kyori</groupId>
<artifactId>adventure-api</artifactId> <artifactId>adventure-api</artifactId>
<version>557865caef</version> <version>4.1.1</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.kyoripowered.adventure</groupId> <groupId>net.kyori</groupId>
<artifactId>adventure-text-serializer-gson</artifactId> <artifactId>adventure-text-serializer-gson</artifactId>
<version>557865caef</version> <version>4.1.1</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.kyoripowered.adventure</groupId> <groupId>net.kyori</groupId>
<artifactId>adventure-text-serializer-legacy</artifactId> <artifactId>adventure-text-serializer-legacy</artifactId>
<version>557865caef</version> <version>4.1.1</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>

View File

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