From 71cc45290e207340b1a8749ba1e1d51bf549b1f6 Mon Sep 17 00:00:00 2001 From: Shane Bee Date: Tue, 3 Nov 2020 02:19:29 -0800 Subject: [PATCH] temp 1.16.4 support for NBT - The NBT-API has not been updated yet, so I updated my fork. This is not guaranteed to work but lets hope so. - Also updated the ChatReflection methods for pretty printing --- pom.xml | 2 +- .../java/tk/shanebee/bee/api/reflection/ChatReflection.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8b67992ef..e1f156498 100644 --- a/pom.xml +++ b/pom.xml @@ -116,7 +116,7 @@ 3.2.0 - /Users/ShaneBee/Desktop/Server/SKRIPT-TESTING/Skript-1163/plugins + /Users/ShaneBee/Desktop/Server/SKRIPT-TESTING/Skript-1164/plugins diff --git a/src/main/java/tk/shanebee/bee/api/reflection/ChatReflection.java b/src/main/java/tk/shanebee/bee/api/reflection/ChatReflection.java index 83baa85aa..ea446db6a 100644 --- a/src/main/java/tk/shanebee/bee/api/reflection/ChatReflection.java +++ b/src/main/java/tk/shanebee/bee/api/reflection/ChatReflection.java @@ -19,7 +19,8 @@ private enum Ver { V_1_14_R1("v1_14_R1", "k", "a"), V_1_15_R1("v1_15_R1", "l", "a"), V_1_16_R1("v1_16_R1", "l", "a"), - V_1_16_R2("v1_16_R2", "l", "a"); + V_1_16_R2("v1_16_R2", "l", "a"), + V_1_16_R3("v1_16_R3", "l", "a"); private final String version; private final String pretty;