Skip to content

Commit c7f9dd0

Browse files
committed
Minecraft 26.2
1 parent f231108 commit c7f9dd0

75 files changed

Lines changed: 1032 additions & 283 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

V1_13/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractionVisualizer-Parent</artifactId>
30-
<version>2026.1.1.0</version>
30+
<version>2026.1.2.0</version>
3131
</parent>
3232

3333
<artifactId>InteractionVisualizer-V1_13</artifactId>
@@ -36,37 +36,37 @@
3636
<dependency>
3737
<groupId>net.kyori</groupId>
3838
<artifactId>adventure-text-serializer-gson</artifactId>
39-
<version>4.25.0</version>
39+
<version>5.1.1</version>
4040
<scope>provided</scope>
4141
</dependency>
4242
<dependency>
4343
<groupId>net.kyori</groupId>
4444
<artifactId>adventure-text-serializer-legacy</artifactId>
45-
<version>4.25.0</version>
45+
<version>5.1.1</version>
4646
<scope>provided</scope>
4747
</dependency>
4848
<dependency>
4949
<groupId>net.kyori</groupId>
5050
<artifactId>adventure-text-serializer-plain</artifactId>
51-
<version>4.25.0</version>
51+
<version>5.1.1</version>
5252
<scope>provided</scope>
5353
</dependency>
5454
<dependency>
5555
<groupId>net.kyori</groupId>
5656
<artifactId>adventure-text-serializer-gson</artifactId>
57-
<version>4.25.0</version>
57+
<version>5.1.1</version>
5858
<scope>provided</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>net.kyori</groupId>
6262
<artifactId>adventure-api</artifactId>
63-
<version>4.25.0</version>
63+
<version>5.1.1</version>
6464
<scope>provided</scope>
6565
</dependency>
6666
<dependency>
6767
<groupId>net.kyori</groupId>
6868
<artifactId>adventure-nbt</artifactId>
69-
<version>4.25.0</version>
69+
<version>5.1.1</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>

V1_13/src/main/java/com/loohp/interactionvisualizer/nms/V1_13.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ public WrappedIterable<?, Entity> getEntities(World world) {
294294

295295
@SuppressWarnings("deprecation")
296296
@Override
297-
public Future<Integer> getNextEntityId() {
297+
public Future<Integer> getNextEntityId(World world) {
298298
return Bukkit.getScheduler().callSyncMethod(getPlugin(), () -> {
299299
try {
300300
entityCountField.setAccessible(true);

V1_13_1/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractionVisualizer-Parent</artifactId>
30-
<version>2026.1.1.0</version>
30+
<version>2026.1.2.0</version>
3131
</parent>
3232

3333
<artifactId>InteractionVisualizer-V1_13_1</artifactId>
@@ -36,37 +36,37 @@
3636
<dependency>
3737
<groupId>net.kyori</groupId>
3838
<artifactId>adventure-text-serializer-gson</artifactId>
39-
<version>4.25.0</version>
39+
<version>5.1.1</version>
4040
<scope>provided</scope>
4141
</dependency>
4242
<dependency>
4343
<groupId>net.kyori</groupId>
4444
<artifactId>adventure-text-serializer-legacy</artifactId>
45-
<version>4.25.0</version>
45+
<version>5.1.1</version>
4646
<scope>provided</scope>
4747
</dependency>
4848
<dependency>
4949
<groupId>net.kyori</groupId>
5050
<artifactId>adventure-text-serializer-plain</artifactId>
51-
<version>4.25.0</version>
51+
<version>5.1.1</version>
5252
<scope>provided</scope>
5353
</dependency>
5454
<dependency>
5555
<groupId>net.kyori</groupId>
5656
<artifactId>adventure-text-serializer-gson</artifactId>
57-
<version>4.25.0</version>
57+
<version>5.1.1</version>
5858
<scope>provided</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>net.kyori</groupId>
6262
<artifactId>adventure-api</artifactId>
63-
<version>4.25.0</version>
63+
<version>5.1.1</version>
6464
<scope>provided</scope>
6565
</dependency>
6666
<dependency>
6767
<groupId>net.kyori</groupId>
6868
<artifactId>adventure-nbt</artifactId>
69-
<version>4.25.0</version>
69+
<version>5.1.1</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>

V1_13_1/src/main/java/com/loohp/interactionvisualizer/nms/V1_13_1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public WrappedIterable<?, Entity> getEntities(World world) {
287287

288288
@SuppressWarnings("deprecation")
289289
@Override
290-
public Future<Integer> getNextEntityId() {
290+
public Future<Integer> getNextEntityId(World world) {
291291
return Bukkit.getScheduler().callSyncMethod(getPlugin(), () -> {
292292
try {
293293
entityCountField.setAccessible(true);

V1_14/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractionVisualizer-Parent</artifactId>
30-
<version>2026.1.1.0</version>
30+
<version>2026.1.2.0</version>
3131
</parent>
3232

3333
<artifactId>InteractionVisualizer-V1_14</artifactId>
@@ -36,37 +36,37 @@
3636
<dependency>
3737
<groupId>net.kyori</groupId>
3838
<artifactId>adventure-text-serializer-gson</artifactId>
39-
<version>4.25.0</version>
39+
<version>5.1.1</version>
4040
<scope>provided</scope>
4141
</dependency>
4242
<dependency>
4343
<groupId>net.kyori</groupId>
4444
<artifactId>adventure-text-serializer-legacy</artifactId>
45-
<version>4.25.0</version>
45+
<version>5.1.1</version>
4646
<scope>provided</scope>
4747
</dependency>
4848
<dependency>
4949
<groupId>net.kyori</groupId>
5050
<artifactId>adventure-text-serializer-plain</artifactId>
51-
<version>4.25.0</version>
51+
<version>5.1.1</version>
5252
<scope>provided</scope>
5353
</dependency>
5454
<dependency>
5555
<groupId>net.kyori</groupId>
5656
<artifactId>adventure-text-serializer-gson</artifactId>
57-
<version>4.25.0</version>
57+
<version>5.1.1</version>
5858
<scope>provided</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>net.kyori</groupId>
6262
<artifactId>adventure-api</artifactId>
63-
<version>4.25.0</version>
63+
<version>5.1.1</version>
6464
<scope>provided</scope>
6565
</dependency>
6666
<dependency>
6767
<groupId>net.kyori</groupId>
6868
<artifactId>adventure-nbt</artifactId>
69-
<version>4.25.0</version>
69+
<version>5.1.1</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>

V1_14/src/main/java/com/loohp/interactionvisualizer/nms/V1_14.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public WrappedIterable<?, Entity> getEntities(World world) {
276276
}
277277

278278
@Override
279-
public Future<Integer> getNextEntityId() {
279+
public Future<Integer> getNextEntityId(World world) {
280280
try {
281281
entityCountField.setAccessible(true);
282282
AtomicInteger counter = (AtomicInteger) entityCountField.get(null);

V1_15/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractionVisualizer-Parent</artifactId>
30-
<version>2026.1.1.0</version>
30+
<version>2026.1.2.0</version>
3131
</parent>
3232

3333
<artifactId>InteractionVisualizer-V1_15</artifactId>
@@ -36,37 +36,37 @@
3636
<dependency>
3737
<groupId>net.kyori</groupId>
3838
<artifactId>adventure-text-serializer-gson</artifactId>
39-
<version>4.25.0</version>
39+
<version>5.1.1</version>
4040
<scope>provided</scope>
4141
</dependency>
4242
<dependency>
4343
<groupId>net.kyori</groupId>
4444
<artifactId>adventure-text-serializer-legacy</artifactId>
45-
<version>4.25.0</version>
45+
<version>5.1.1</version>
4646
<scope>provided</scope>
4747
</dependency>
4848
<dependency>
4949
<groupId>net.kyori</groupId>
5050
<artifactId>adventure-text-serializer-plain</artifactId>
51-
<version>4.25.0</version>
51+
<version>5.1.1</version>
5252
<scope>provided</scope>
5353
</dependency>
5454
<dependency>
5555
<groupId>net.kyori</groupId>
5656
<artifactId>adventure-text-serializer-gson</artifactId>
57-
<version>4.25.0</version>
57+
<version>5.1.1</version>
5858
<scope>provided</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>net.kyori</groupId>
6262
<artifactId>adventure-api</artifactId>
63-
<version>4.25.0</version>
63+
<version>5.1.1</version>
6464
<scope>provided</scope>
6565
</dependency>
6666
<dependency>
6767
<groupId>net.kyori</groupId>
6868
<artifactId>adventure-nbt</artifactId>
69-
<version>4.25.0</version>
69+
<version>5.1.1</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>

V1_15/src/main/java/com/loohp/interactionvisualizer/nms/V1_15.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public WrappedIterable<?, Entity> getEntities(World world) {
275275
}
276276

277277
@Override
278-
public Future<Integer> getNextEntityId() {
278+
public Future<Integer> getNextEntityId(World world) {
279279
try {
280280
entityCountField.setAccessible(true);
281281
AtomicInteger counter = (AtomicInteger) entityCountField.get(null);

V1_16/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.loohp</groupId>
2929
<artifactId>InteractionVisualizer-Parent</artifactId>
30-
<version>2026.1.1.0</version>
30+
<version>2026.1.2.0</version>
3131
</parent>
3232

3333
<artifactId>InteractionVisualizer-V1_16</artifactId>
@@ -36,37 +36,37 @@
3636
<dependency>
3737
<groupId>net.kyori</groupId>
3838
<artifactId>adventure-text-serializer-gson</artifactId>
39-
<version>4.25.0</version>
39+
<version>5.1.1</version>
4040
<scope>provided</scope>
4141
</dependency>
4242
<dependency>
4343
<groupId>net.kyori</groupId>
4444
<artifactId>adventure-text-serializer-legacy</artifactId>
45-
<version>4.25.0</version>
45+
<version>5.1.1</version>
4646
<scope>provided</scope>
4747
</dependency>
4848
<dependency>
4949
<groupId>net.kyori</groupId>
5050
<artifactId>adventure-text-serializer-plain</artifactId>
51-
<version>4.25.0</version>
51+
<version>5.1.1</version>
5252
<scope>provided</scope>
5353
</dependency>
5454
<dependency>
5555
<groupId>net.kyori</groupId>
5656
<artifactId>adventure-text-serializer-gson</artifactId>
57-
<version>4.25.0</version>
57+
<version>5.1.1</version>
5858
<scope>provided</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>net.kyori</groupId>
6262
<artifactId>adventure-api</artifactId>
63-
<version>4.25.0</version>
63+
<version>5.1.1</version>
6464
<scope>provided</scope>
6565
</dependency>
6666
<dependency>
6767
<groupId>net.kyori</groupId>
6868
<artifactId>adventure-nbt</artifactId>
69-
<version>4.25.0</version>
69+
<version>5.1.1</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>

V1_16/src/main/java/com/loohp/interactionvisualizer/nms/V1_16.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public WrappedIterable<?, Entity> getEntities(World world) {
272272
}
273273

274274
@Override
275-
public Future<Integer> getNextEntityId() {
275+
public Future<Integer> getNextEntityId(World world) {
276276
try {
277277
entityCountField.setAccessible(true);
278278
AtomicInteger counter = (AtomicInteger) entityCountField.get(null);

0 commit comments

Comments
 (0)