Paste #117212: log

Date: 2023/11/05 14:27:23 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393


05.11 21:52:59 [Multicraft] Received start command
05.11 21:52:59 [Multicraft] Loading server properties
05.11 21:52:59 [Multicraft] Starting server!
05.11 21:52:59 [Multicraft] Loaded config for "AUTO UPDATING: Paper Latest (Java 17 - Current: 1.20.2 #279)"
05.11 21:53:04 [Multicraft] JAR file not found, copying from global JAR directory
05.11 21:53:04 [Multicraft] Updating eula.txt file
05.11 21:53:07 [Server] INFO Starting org.bukkit.craftbukkit.Main
05.11 21:53:08 [Server] INFO System Info: Java 17 (OpenJDK 64-Bit Server VM 17.0.1+12-39) Host: Linux 4.19.0-12-amd64 (amd64)
05.11 21:53:08 [Server] INFO Loading libraries, please wait...
05.11 21:53:08 [Server] INFO 2023-11-05 21:53:08,427 ServerMain WARN Advanced terminal features are not available in this environment
05.11 21:53:17 [Server] INFO Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
05.11 21:53:20 [Server] INFO Loaded 7 recipes
05.11 21:53:21 [Server] INFO Starting minecraft server version 1.20.2
05.11 21:53:21 [Server] INFO Loading properties
05.11 21:53:21 [Server] INFO This server is running Paper version git-Paper-279 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 274e54b)
05.11 21:53:22 [Server] INFO Server Ping Player Sample Count: 12
05.11 21:53:22 [Server] INFO Using 4 threads for Netty based IO
05.11 21:53:22 [Server] WARN The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
05.11 21:53:22 [Server] INFO We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
05.11 21:53:22 [Server] INFO For more information please visit: https://github.com/PaperMC/Paper/issues/8948
05.11 21:53:23 [Server] INFO Chunk system is using 1 I/O threads, 3 worker threads, and gen parallelism of 3 threads
05.11 21:53:23 [Server] INFO Default game type: SURVIVAL
05.11 21:53:23 [Server] INFO Generating keypair
05.11 21:53:23 [Server] INFO Starting Minecraft server on 147.135.70.77:25565
05.11 21:53:24 [Server] INFO Using epoll channel type
05.11 21:53:24 [Server] INFO Paper: Using libdeflate (Linux x86_64) compression from Velocity.
05.11 21:53:24 [Server] INFO Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
05.11 21:53:24 [Server] ERROR Could not load 'plugins/CMI-9.6.5.3.jar' in 'plugins'
05.11 21:53:24 [Server] INFO org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [CMILib]. Please download and install these plugins to run 'CMI'.
05.11 21:53:24 [Server] INFO at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.loadPlugins(CraftServer.java:512) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:53:24 [Server] ERROR Could not load 'plugins/Jobs5.2.1.2.jar' in 'plugins'
05.11 21:53:24 [Server] INFO org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [CMILib]. Please download and install these plugins to run 'Jobs'.
05.11 21:53:24 [Server] INFO at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.loadPlugins(CraftServer.java:512) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:53:24 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loading 3 libraries... please wait
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.15.2/jackson-dataformat-yaml-2.15.2.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/org/yaml/snakeyaml/2.0/snakeyaml-2.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
05.11 21:53:25 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
05.11 21:53:26 [Server] INFO [BigDoors] Loading 1 libraries... please wait
05.11 21:53:26 [Server] INFO [BigDoors] Loaded library /libraries/net/bytebuddy/byte-buddy/1.14.8/byte-buddy-1.14.8.jar
05.11 21:53:26 [Server] WARN Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
05.11 21:53:32 [Server] INFO [TradingCards] Loading 15 libraries... please wait
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/lingala/zip4j/zip4j/2.11.5/zip4j-2.11.5.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/flywaydb/flyway-mysql/9.19.4/flyway-mysql-9.19.4.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/flywaydb/flyway-core/9.19.4/flyway-core-9.19.4.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/spongepowered/configurate-yaml/4.1.2/configurate-yaml-4.1.2.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq/3.18.4/jooq-3.18.4.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/io/r2dbc/r2dbc-spi/1.0.0.RELEASE/r2dbc-spi-1.0.0.RELEASE.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq-codegen/3.18.4/jooq-codegen-3.18.4.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq-meta/3.18.4/jooq-meta-3.18.4.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/jakarta/xml/bind/jakarta.xml.bind-api/3.0.0/jakarta.xml.bind-api-3.0.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/com/sun/activation/jakarta.activation/2.0.0/jakarta.activation-2.0.0.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-client-api/1.5/commons-rng-client-api-1.5.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-core/1.5/commons-rng-core-1.5.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-sampling/1.5/commons-rng-sampling-1.5.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-simple/1.5/commons-rng-simple-1.5.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/com/github/ben-manes/caffeine/caffeine/3.1.6/caffeine-3.1.6.jar
05.11 21:53:32 [Server] INFO [TradingCards] Loaded library /libraries/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar
05.11 21:53:33 [Server] WARN Legacy plugin RankVouchers v3.0 does not specify an api-version.
05.11 21:53:33 [Server] INFO [FacilisCommon] Loading 4 libraries... please wait
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/adventure-api/4.13.0/adventure-api-4.13.0.jar
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/adventure-key/4.13.0/adventure-key-4.13.0.jar
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/commons-io/commons-io/2.10.0/commons-io-2.10.0.jar
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.jar
05.11 21:53:33 [Server] INFO [FacilisCommon] Loaded library /libraries/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar
05.11 21:53:33 [Server] WARN Legacy plugin Invsee v1.0.0 does not specify an api-version.
05.11 21:53:33 [Server] INFO [Iris] Loading 11 libraries... please wait
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/rhino/js/1.7R2/js-1.7R2.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
05.11 21:53:33 [Server] INFO [Iris] Loaded library /libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
05.11 21:53:33 [Server] INFO Loading server plugin LuckPerms v5.4.104
05.11 21:53:34 [Server] INFO Loading server plugin PlaceholderAPI v2.11.5
05.11 21:53:34 [Server] INFO Loading server plugin Vault v1.7.3-b131
05.11 21:53:34 [Server] INFO Loading server plugin DeluxeHub v3.5.5
05.11 21:53:34 [Server] INFO Loading server plugin EnchantsSquared v2.5.7
05.11 21:53:34 [Server] INFO Loading server plugin FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
05.11 21:53:36 [Server] INFO Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@67d20873]
05.11 21:53:36 [Server] INFO Loading server plugin Essentials v2.21.0-dev+17-79449ef
05.11 21:53:36 [Server] INFO Loading server plugin ProtocolLib v5.1.1-SNAPSHOT-673
05.11 21:53:38 [Server] INFO Loading server plugin WorldGuard v7.0.9+5934e49
05.11 21:53:38 [Server] INFO Loading server plugin IridiumSkyblock v4.0.7
05.11 21:53:40 [Server] INFO Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3219)
05.11 21:53:40 [Server] INFO Loading server plugin Multiverse-Core v4.3.12
05.11 21:53:40 [Server] INFO Loading server plugin EssentialsChat v2.21.0-dev+17-79449ef
05.11 21:53:40 [Server] INFO Loading server plugin Towny v0.99.6.0
05.11 21:53:40 [Server] INFO Loading server plugin MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
05.11 21:53:40 [Server] INFO (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
05.11 21:53:40 [Server] INFO Mythic Enabled!
05.11 21:53:40 [Server] INFO Loading server plugin GriefPrevention v16.18.1
05.11 21:53:40 [Server] INFO Loading server plugin Factions v1.6.9.5-4.1.3-STABLE
05.11 21:53:40 [Server] INFO Loading server plugin mcMMO v2.1.224
05.11 21:53:40 [Server] INFO [D] Registered WG flags successfully!
05.11 21:53:40 [Server] INFO Loading server plugin TownyChat v0.109
05.11 21:53:40 [Server] INFO Loading server plugin LoneLibs v1.0.27
05.11 21:53:40 [Server] INFO Loading server plugin Multiverse-Portals v4.2.3
05.11 21:53:40 [Server] INFO Loading server plugin GCore v8.48.0
05.11 21:53:40 [Server] INFO Loading server plugin BetterRTP v3.6.11
05.11 21:53:40 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:53:40 [Server] INFO Loading server plugin SchematicBrushReborn v2.5.3
05.11 21:53:40 [Server] INFO Registered entry of type yaml with de.eldoria.schematicbrush.storage.YamlStorage at Storage Registry
05.11 21:53:40 [Server] INFO Loading server plugin DecentHolograms v2.8.4
05.11 21:53:40 [Server] INFO Loading server plugin ChestSort v13.6.4
05.11 21:53:40 [Server] INFO Loading server plugin DiscordSRV v1.26.2
05.11 21:53:40 [Server] INFO Loading server plugin JukeboxExtendedReborn v1.2.8
05.11 21:53:40 [Server] INFO Loading server plugin squaremap v1.2.1
05.11 21:53:40 [Server] INFO Loading server plugin NoteBlockAPI v1.6.2
05.11 21:53:40 [Server] INFO Loading server plugin NashornJs v1.1.3
05.11 21:53:40 [Server] INFO Registered Nashorn engine with name nashorn
05.11 21:53:40 [Server] INFO Registered Nashorn engine with name Nashorn
05.11 21:53:40 [Server] INFO Registered Nashorn engine with name js
05.11 21:53:40 [Server] INFO Registered Nashorn engine with name JS
05.11 21:53:40 [Server] INFO Registered Nashorn engine with name JavaScript
05.11 21:53:40 [Server] INFO Registered Nashorn engine with name javascript
05.11 21:53:40 [Server] INFO Registered Nashorn engine with name ECMAScript
05.11 21:53:40 [Server] INFO Registered Nashorn engine with name ecmascript
05.11 21:53:40 [Server] INFO Loading server plugin BigDoors vAlpha 0.1.8.48
05.11 21:53:40 [Server] INFO Loading server plugin ItemsAdder v3.6.2-beta-r2
05.11 21:53:41 [Server] INFO Loading server plugin Multiverse-NetherPortals v4.2.3
05.11 21:53:41 [Server] INFO Loading server plugin BedWars v0.2.30
05.11 21:53:41 [Server] INFO Loading server plugin TradingCards v5.7.19
05.11 21:53:41 [Server] INFO Loading server plugin WorldEditSelectionVisualizer v2.1.5
05.11 21:53:41 [Server] INFO Loading server plugin GSlotMachine v3.1.1
05.11 21:53:41 [Server] INFO Loading server plugin GWarp v[2.13.0.2]
05.11 21:53:41 [Server] INFO Loading server plugin ColoredSigns v6.2.1.212
05.11 21:53:41 [Server] INFO Loading server plugin GPFlags v5.12.9
05.11 21:53:41 [Server] INFO Loading server plugin TAB v4.0.7
05.11 21:53:41 [Server] INFO Loading server plugin TNTRun v2.4.5-SNAPSHOT
05.11 21:53:41 [Server] INFO Loading server plugin spark v1.10.34
05.11 21:53:41 [Server] INFO Loading server plugin NBTAPI v2.11.3
05.11 21:53:41 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:53:41 [Server] WARN [NBTAPI] This Server-Version(v1_20_R2) is not supported by this NBT-API Version(2.11.3) located in NBTAPI. The NBT-API will try to work as good as it can! Some functions may not work!
05.11 21:53:41 [Server] INFO [NBTAPI] Found Gson: class com.google.gson.Gson
05.11 21:53:41 [Server] INFO [NBTAPI] Using the plugin 'LuckPerms' to create a bStats instance!
05.11 21:53:41 [Server] INFO Loading server plugin BetterRTPAddons v1.8.8
05.11 21:53:41 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:53:41 [Server] INFO Loading server plugin GridSelector v1.3.0
05.11 21:53:41 [Server] INFO Loading server plugin EggWars v6.1.2
05.11 21:53:41 [Server] INFO Loading server plugin YamipaPlugin v1.2.11
05.11 21:53:41 [Server] INFO Loading server plugin AdvancedKeep v2.0.1
05.11 21:53:41 [Server] INFO [Integration] Hooked to WorldGuard
05.11 21:53:41 [Server] INFO Loading server plugin CrateReloaded v2.3.1
05.11 21:53:41 [Server] INFO Loading server plugin Skywars v5.6.22
05.11 21:53:41 [Server] INFO Loading server plugin LWC v2.3.1
05.11 21:53:41 [Server] INFO Loading server plugin TerraformGenerator v11.1.1
05.11 21:53:41 [Server] INFO Loading server plugin UltraCosmetics v3.4.1
05.11 21:53:41 [Server] INFO Loading server plugin ZombieApocalypse v1.4.8
05.11 21:53:41 [Server] INFO Loading server plugin JukeLooper v2.5
05.11 21:53:41 [Server] INFO Loading server plugin HeadHunterPlugin v2.0.7
05.11 21:53:41 [Server] INFO Loading server plugin RankVouchers v3.0
05.11 21:53:41 [Server] INFO Loading server plugin GreetingPlugin v2.0-SNAPSHOT
05.11 21:53:41 [Server] INFO Loading server plugin Waypoints v4.2.0
05.11 21:53:41 [Server] WARN [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
05.11 21:53:41 [Server] WARN [NBTAPI] Current Version: '2.11.3' Newest Version: 2.12.1'
05.11 21:53:41 [Server] WARN [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
05.11 21:53:42 [Server] INFO Loading server plugin Multiverse-Inventories v4.2.6
05.11 21:53:42 [Server] INFO Loading server plugin TreeAssist v7.3.49
05.11 21:53:42 [Server] INFO Loading main config file: /config.yml
05.11 21:53:42 [Server] INFO Loading server plugin MusicBox v2.0.13
05.11 21:53:42 [Server] INFO Loading server plugin Guilds v3.5.7.0
05.11 21:53:42 [Server] INFO Loading Libraries...
05.11 21:53:42 [Server] INFO Note: This might take a few minutes on first run. Kindly ensure internet connectivity.
05.11 21:53:43 [Server] INFO Loaded libraries in 0.873 seconds
05.11 21:53:43 [Server] INFO Loading server plugin PlayerParticles v8.4
05.11 21:53:43 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:53:43 [Server] INFO Loading server plugin BigDoorsOpener v2.5.2
05.11 21:53:43 [Server] INFO Loading server plugin LPC v3.6.0
05.11 21:53:43 [Server] INFO Loading server plugin DeluxeMenus v1.13.7-Release
05.11 21:53:43 [Server] WARN Could not setup a NMS hook for your server version!
05.11 21:53:43 [Server] INFO Loading server plugin Chunky v1.3.92
05.11 21:53:43 [Server] INFO Loading server plugin Images v2.3.1
05.11 21:53:43 [Server] INFO Loading server plugin FacilisCommon v1.0.2-SNAPSHOT
05.11 21:53:43 [Server] INFO Loading server plugin Invsee v1.0.0
05.11 21:53:43 [Server] INFO Loading server plugin AuctionHouse v3.5.1
05.11 21:53:43 [Server] INFO Loading server plugin Iris v2.8.0-1.20.1
05.11 21:53:43 [Server] INFO Loading server plugin Arcade v1.55
05.11 21:53:43 [Server] INFO Loading server plugin PlugManX v2.3.5
05.11 21:53:43 [Server] INFO Loading server plugin FishRewards v1.2.4
05.11 21:53:43 [Server] INFO Loading server plugin Vanillahungergames v2.4
05.11 21:53:43 [Server] INFO Loading server plugin NotBounties v1.12.1
05.11 21:53:43 [Server] INFO Loading server plugin ImageOnMap v4.2.2
05.11 21:53:43 [Server] INFO Loading server plugin VoxelSniper v8.12.4
05.11 21:53:43 [Server] INFO Loading server plugin UltimateShop v1.7.7
05.11 21:53:43 [Server] INFO Loading server plugin TavernBard v1.2
05.11 21:53:43 [Server] INFO Server permissions file permissions.yml is empty, ignoring it
05.11 21:53:43 [Server] INFO Enabling LuckPerms v5.4.104
05.11 21:53:45 [Server] INFO __
05.11 21:53:45 [Server] INFO |    |__)   LuckPerms v5.4.104
05.11 21:53:45 [Server] INFO |___ |      Running on Bukkit - Paper
05.11 21:53:45 [Server] INFO Loading configuration...
05.11 21:53:46 [Server] INFO Loading storage provider... [H2]
05.11 21:53:47 [Server] INFO Loading internal permission managers...
05.11 21:53:48 [Server] INFO Performing initial data load...
05.11 21:53:49 [Server] INFO Successfully enabled. (took 5819ms)
05.11 21:53:49 [Server] INFO Enabling Vault v1.7.3-b131
05.11 21:53:49 [Server] INFO [Economy] Essentials Economy found: Waiting
05.11 21:53:49 [Server] INFO [Permission] SuperPermissions loaded as backup permission system.
05.11 21:53:49 [Server] INFO Enabled Version 1.7.3-b131
05.11 21:53:49 [Server] INFO Registered Vault permission & chat hook.
05.11 21:53:49 [Server] INFO Enabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
05.11 21:53:49 [Server] INFO LZ4 Compression Binding loaded successfully
05.11 21:53:49 [Server] INFO ZSTD Compression Binding loaded successfully
05.11 21:53:49 [Server] INFO Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
05.11 21:53:50 [Server] INFO WEPIF: Vault detected! Using Vault for permissions
05.11 21:53:50 [Server] INFO Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R2.PaperweightFaweAdapter as the Bukkit adapter
05.11 21:53:52 [Server] INFO Enabling ProtocolLib v5.1.1-SNAPSHOT-673
05.11 21:53:52 [Server] INFO Enabling LoneLibs v1.0.27
05.11 21:53:52 [Server] INFO Enabling squaremap v1.2.1
05.11 21:53:52 [Server] WARN An update for FastAsyncWorldEdit is available. You are 24 build(s) out of date.
05.11 21:53:52 [Server] INFO You are running build 581, the latest version is build 605.
05.11 21:53:52 [Server] INFO Update at https://www.spigotmc.org/resources/13932/
05.11 21:53:54 [Server] INFO starting server: Undertow - 2.3.8.Final
05.11 21:53:54 [Server] INFO XNIO version 3.8.8.Final
05.11 21:53:54 [Server] INFO XNIO NIO Implementation Version 3.8.8.Final
05.11 21:53:55 [Server] INFO JBoss Threads version 3.5.0.Final
05.11 21:53:55 [Server] INFO Internal webserver running on 147.135.70.77:8080
05.11 21:53:55 [Server] INFO Enabling NashornJs v1.1.3
05.11 21:53:55 [Server] INFO Enabling LWC v2.3.1
05.11 21:53:55 [Server] INFO Connecting to SQLite
05.11 21:53:55 [Server] INFO Enabling TerraformGenerator v11.1.1
05.11 21:53:56 [Server] INFO Custom Logger Initialized
05.11 21:53:56 [Server] INFO bStats Metrics enabled.
05.11 21:53:56 [Server] INFO Detected version: v1_20_R2, number: 20.2
05.11 21:53:56 [Server] INFO Enabling Iris v2.8.0-1.20.1
05.11 21:53:56 [Server] INFO [STDOUT] [Iris]: Locating NMS Binding for v1_20_R2
05.11 21:53:56 [Server] WARN Nag author(s): '[cyberpwn, NextdoorPsycho, Vatuu]' of 'Iris v2.8.0-1.20.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
05.11 21:53:56 [Server] INFO [STDOUT] [Iris]: Craftbukkit v1_20_R2  NMSBinding1X Successfully Bound
05.11 21:53:56 [Server] INFO [STDOUT] [Iris]: Note: Some features of Iris may not work the same since you are on an unsupported version of Minecraft.
05.11 21:53:56 [Server] INFO [STDOUT] [Iris]: Note: If this is a new version, expect an update soon.
05.11 21:53:57 [Server] INFO [Iris]: Loading ExternalDataProvider...
05.11 21:53:57 [Server] INFO [Iris]: Version Information: git-Paper-279 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
05.11 21:53:57 [Server] INFO [Iris]: ============================================
05.11 21:53:57 [Server] INFO [Iris]: =
05.11 21:53:57 [Server] INFO [Iris]: =
05.11 21:53:57 [Server] INFO [Iris]: =
05.11 21:53:57 [Server] INFO [Iris]: Iris is not compatible with this version of Minecraft.
05.11 21:53:57 [Server] INFO Please use 1.20.1 or use an older version of Iris.
05.11 21:53:57 [Server] INFO [Iris]: =
05.11 21:53:57 [Server] INFO [Iris]: =
05.11 21:53:57 [Server] INFO [Iris]: =
05.11 21:53:57 [Server] INFO [Iris]: ============================================
05.11 21:53:57 [Server] INFO [Iris]: We recommend using Purpur for the best experience with Iris.
05.11 21:53:57 [Server] INFO [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
05.11 21:53:57 [Server] INFO [Iris]: Plugins that work on Spigot / Paper work on Purpur.
05.11 21:53:58 [Server] INFO [Iris]: You can download it here: https://purpurmc.org
05.11 21:53:58 [Server] INFO Enabling PlugManX v2.3.5
05.11 21:53:58 [Server] WARN ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
05.11 21:53:58 [Server] WARN It seems like you're running on paper.
05.11 21:53:58 [Server] WARN This may cause issues.
05.11 21:53:58 [Server] WARN If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
05.11 21:53:58 [Server] WARN Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
05.11 21:53:58 [Server] WARN ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
05.11 21:53:58 [Server] INFO Preparing level "lobby"
05.11 21:53:59 [Server] INFO Preparing start region for dimension minecraft:overworld
05.11 21:53:59 [Server] INFO Time elapsed: 371 ms
05.11 21:54:00 [Server] INFO Preparing start region for dimension minecraft:the_nether
05.11 21:54:00 [Server] INFO Time elapsed: 107 ms
05.11 21:54:00 [Server] INFO Preparing start region for dimension minecraft:the_end
05.11 21:54:00 [Server] INFO Time elapsed: 123 ms
05.11 21:54:00 [Server] INFO Enabling PlaceholderAPI v2.11.5
05.11 21:54:01 [Server] INFO Fetching available expansion information...
05.11 21:54:01 [Server] INFO Enabling DeluxeHub v3.5.5
05.11 21:54:01 [Server] INFO _   _            _          _    _
05.11 21:54:01 [Server] INFO | \ |_ |  | | \/ |_ |_| | | |_)   _)
05.11 21:54:01 [Server] INFO |_/ |_ |_ |_| /\ |_ | | |_| |_)   _)
05.11 21:54:01 [Server] INFO Version: 3.5.5
05.11 21:54:01 [Server] INFO Author: ItsLewizzz
05.11 21:54:01 [Server] INFO Hooked into PlaceholderAPI
05.11 21:54:01 [Server] INFO Loaded custom menu 'serverselector'.
05.11 21:54:02 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:54:02 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:54:02 [Server] INFO [NBTAPI] Using the plugin 'DeluxeHub' to create a bStats instance!
05.11 21:54:02 [Server] INFO Loaded 15 plugin modules.
05.11 21:54:02 [Server] INFO Successfully loaded in 1026ms
05.11 21:54:02 [Server] INFO Enabling EnchantsSquared v2.5.7
05.11 21:54:02 [Server] INFO Enabling Essentials v2.21.0-dev+17-79449ef
05.11 21:54:04 [Server] INFO Attempting to convert old kits in config.yml to new kits.yml
05.11 21:54:04 [Server] INFO No kits found to migrate.
05.11 21:54:04 [Server] INFO Loaded 39094 items from items.json.
05.11 21:54:04 [Server] INFO Using locale en_US
05.11 21:54:04 [Server] INFO ServerListPingEvent: Spigot iterator API
05.11 21:54:04 [Server] INFO Starting Metrics. Opt-out using the global bStats config.
05.11 21:54:04 [Server] INFO [Economy] Essentials Economy hooked.
05.11 21:54:04 [Server] INFO Using Vault based permissions (LuckPerms)
05.11 21:54:04 [Server] INFO Enabling WorldGuard v7.0.9+5934e49
05.11 21:54:05 [Server] INFO (lobby) TNT ignition is PERMITTED.
05.11 21:54:05 [Server] INFO (lobby) Lighters are PERMITTED.
05.11 21:54:05 [Server] INFO (lobby) Lava fire is PERMITTED.
05.11 21:54:05 [Server] INFO (lobby) Fire spread is UNRESTRICTED.
05.11 21:54:05 [Server] INFO Loaded configuration for world 'lobby'
05.11 21:54:05 [Server] INFO (lobby_nether) TNT ignition is PERMITTED.
05.11 21:54:05 [Server] INFO (lobby_nether) Lighters are PERMITTED.
05.11 21:54:05 [Server] INFO (lobby_nether) Lava fire is PERMITTED.
05.11 21:54:05 [Server] INFO (lobby_nether) Fire spread is UNRESTRICTED.
05.11 21:54:05 [Server] INFO Loaded configuration for world 'lobby_nether'
05.11 21:54:05 [Server] INFO (lobby_the_end) TNT ignition is PERMITTED.
05.11 21:54:05 [Server] INFO (lobby_the_end) Lighters are PERMITTED.
05.11 21:54:05 [Server] INFO (lobby_the_end) Lava fire is PERMITTED.
05.11 21:54:05 [Server] INFO (lobby_the_end) Fire spread is UNRESTRICTED.
05.11 21:54:05 [Server] INFO Loaded configuration for world 'lobby_the_end'
05.11 21:54:05 [Server] INFO Loading region data...
05.11 21:54:05 [Server] INFO Enabling IridiumSkyblock v4.0.7
05.11 21:54:06 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock
05.11 21:54:09 [Server] INFO Time elapsed: 3092 ms
05.11 21:54:09 [Server] INFO (IridiumSkyblock) TNT ignition is PERMITTED.
05.11 21:54:09 [Server] INFO (IridiumSkyblock) Lighters are PERMITTED.
05.11 21:54:09 [Server] INFO (IridiumSkyblock) Lava fire is PERMITTED.
05.11 21:54:09 [Server] INFO (IridiumSkyblock) Fire spread is UNRESTRICTED.
05.11 21:54:09 [Server] INFO Loaded configuration for world 'IridiumSkyblock'
05.11 21:54:09 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_nether
05.11 21:54:09 [Server] INFO Time elapsed: 193 ms
05.11 21:54:09 [Server] INFO (IridiumSkyblock_nether) TNT ignition is PERMITTED.
05.11 21:54:09 [Server] INFO (IridiumSkyblock_nether) Lighters are PERMITTED.
05.11 21:54:09 [Server] INFO (IridiumSkyblock_nether) Lava fire is PERMITTED.
05.11 21:54:09 [Server] INFO (IridiumSkyblock_nether) Fire spread is UNRESTRICTED.
05.11 21:54:09 [Server] INFO Loaded configuration for world 'IridiumSkyblock_nether'
05.11 21:54:09 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_the_end
05.11 21:54:10 [Server] INFO Time elapsed: 434 ms
05.11 21:54:10 [Server] INFO (IridiumSkyblock_the_end) TNT ignition is PERMITTED.
05.11 21:54:10 [Server] INFO (IridiumSkyblock_the_end) Lighters are PERMITTED.
05.11 21:54:10 [Server] INFO (IridiumSkyblock_the_end) Lava fire is PERMITTED.
05.11 21:54:10 [Server] INFO (IridiumSkyblock_the_end) Fire spread is UNRESTRICTED.
05.11 21:54:10 [Server] INFO Loaded configuration for world 'IridiumSkyblock_the_end'
05.11 21:54:12 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock_the_end'
05.11 21:54:12 [Server] INFO Halted chunk system for world 'IridiumSkyblock_the_end'
05.11 21:54:12 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock_the_end'
05.11 21:54:12 [Server] INFO Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'IridiumSkyblock_the_end' in 0.01s
05.11 21:54:12 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:54:12 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:54:12 [Server] INFO [NBTAPI] Using the plugin 'IridiumSkyblock' to create a bStats instance!
05.11 21:54:12 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_the_end
05.11 21:54:12 [Server] INFO Time elapsed: 231 ms
05.11 21:54:13 [Server] INFO Successfully registered internal expansion: iridiumskyblock [4.0.7]
05.11 21:54:13 [Server] INFO Successfully registered Placeholders for PlaceholderAPI.
05.11 21:54:13 [Server] INFO -------------------------------
05.11 21:54:13 [Server] INFO IridiumSkyblock Enabled!
05.11 21:54:13 [Server] INFO -------------------------------
05.11 21:54:13 [Server] INFO Enabling Citizens v2.0.33-SNAPSHOT (build 3219)
05.11 21:54:13 [Server] INFO Loading external libraries
05.11 21:54:13 [Server] INFO Successfully registered internal expansion: citizensplaceholder [1.0.0]
05.11 21:54:13 [Server] INFO Loaded economy handling via Vault.
05.11 21:54:13 [Server] INFO Enabling Multiverse-Core v4.3.12
05.11 21:54:13 [Server] WARN "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
05.11 21:54:13 [Server] INFO We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
05.11 21:54:15 [Server] INFO Preparing start region for dimension minecraft:survival_world_end
05.11 21:54:15 [Server] INFO Time elapsed: 704 ms
05.11 21:54:15 [Server] INFO (survival_world_end) TNT ignition is PERMITTED.
05.11 21:54:15 [Server] INFO (survival_world_end) Lighters are PERMITTED.
05.11 21:54:15 [Server] INFO (survival_world_end) Lava fire is PERMITTED.
05.11 21:54:15 [Server] INFO (survival_world_end) Fire spread is UNRESTRICTED.
05.11 21:54:15 [Server] INFO Loaded configuration for world 'survival_world_end'
05.11 21:54:16 [Server] INFO Preparing start region for dimension minecraft:survival_world_nether
05.11 21:54:16 [Server] INFO Time elapsed: 212 ms
05.11 21:54:16 [Server] INFO (survival_world_nether) TNT ignition is PERMITTED.
05.11 21:54:16 [Server] INFO (survival_world_nether) Lighters are PERMITTED.
05.11 21:54:16 [Server] INFO (survival_world_nether) Lava fire is PERMITTED.
05.11 21:54:16 [Server] INFO (survival_world_nether) Fire spread is UNRESTRICTED.
05.11 21:54:16 [Server] INFO Loaded configuration for world 'survival_world_nether'
05.11 21:54:16 [Server] INFO Preparing start region for dimension minecraft:lobby_test
05.11 21:54:16 [Server] INFO Time elapsed: 105 ms
05.11 21:54:16 [Server] INFO (lobby_test) TNT ignition is PERMITTED.
05.11 21:54:16 [Server] INFO (lobby_test) Lighters are PERMITTED.
05.11 21:54:16 [Server] INFO (lobby_test) Lava fire is PERMITTED.
05.11 21:54:16 [Server] INFO (lobby_test) Fire spread is UNRESTRICTED.
05.11 21:54:16 [Server] INFO Loaded configuration for world 'lobby_test'
05.11 21:54:17 [Server] INFO Preparing start region for dimension minecraft:world
05.11 21:54:17 [Server] INFO Time elapsed: 285 ms
05.11 21:54:17 [Server] INFO (world) TNT ignition is PERMITTED.
05.11 21:54:17 [Server] INFO (world) Lighters are PERMITTED.
05.11 21:54:17 [Server] INFO (world) Lava fire is PERMITTED.
05.11 21:54:17 [Server] INFO (world) Fire spread is UNRESTRICTED.
05.11 21:54:17 [Server] INFO Loaded configuration for world 'world'
05.11 21:54:17 [Server] INFO Preparing start region for dimension minecraft:world_the_end
05.11 21:54:17 [Server] INFO Time elapsed: 167 ms
05.11 21:54:17 [Server] INFO (world_the_end) TNT ignition is PERMITTED.
05.11 21:54:17 [Server] INFO (world_the_end) Lighters are PERMITTED.
05.11 21:54:17 [Server] INFO (world_the_end) Lava fire is PERMITTED.
05.11 21:54:17 [Server] INFO (world_the_end) Fire spread is UNRESTRICTED.
05.11 21:54:17 [Server] INFO Loaded configuration for world 'world_the_end'
05.11 21:54:18 [Server] INFO Preparing start region for dimension minecraft:world_nether
05.11 21:54:18 [Server] INFO Time elapsed: 182 ms
05.11 21:54:18 [Server] INFO (world_nether) TNT ignition is PERMITTED.
05.11 21:54:18 [Server] INFO (world_nether) Lighters are PERMITTED.
05.11 21:54:18 [Server] INFO (world_nether) Lava fire is PERMITTED.
05.11 21:54:18 [Server] INFO (world_nether) Fire spread is UNRESTRICTED.
05.11 21:54:18 [Server] INFO Loaded configuration for world 'world_nether'
05.11 21:54:20 [Server] INFO Detected world: survival_world, commencing injection...
05.11 21:54:20 [Server] INFO Injection success! Proceeding with generation.
05.11 21:54:20 [Server] INFO Preparing start region for dimension minecraft:survival_world
05.11 21:54:20 [Server] INFO Time elapsed: 758 ms
05.11 21:54:20 [Server] INFO survival_world loaded.
05.11 21:54:20 [Server] INFO (survival_world) TNT ignition is PERMITTED.
05.11 21:54:20 [Server] INFO (survival_world) Lighters are PERMITTED.
05.11 21:54:20 [Server] INFO (survival_world) Lava fire is PERMITTED.
05.11 21:54:20 [Server] INFO (survival_world) Fire spread is UNRESTRICTED.
05.11 21:54:20 [Server] INFO Loaded configuration for world 'survival_world'
05.11 21:54:21 [Server] INFO 13 - World(s) loaded.
05.11 21:54:21 [Server] WARN Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
05.11 21:54:21 [Server] INFO Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
05.11 21:54:21 [Server] INFO Enabling EssentialsChat v2.21.0-dev+17-79449ef
05.11 21:54:21 [Server] INFO Starting Metrics. Opt-out using the global bStats config.
05.11 21:54:21 [Server] INFO Enabling Towny v0.99.6.0
05.11 21:54:21 [Server] INFO ====================      Towny      ========================
05.11 21:54:26 [Server] INFO Successfully loaded translations for 42 languages.
05.11 21:54:26 [Server] INFO Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
05.11 21:54:26 [Server] INFO Database: [Load] flatfile [Save] flatfile
05.11 21:54:27 [Server] INFO Database: Loaded in 247ms.
05.11 21:54:27 [Server] INFO Database: 100% of residents have stored UUIDs.
05.11 21:54:27 [Server] INFO Cleaning up old backups...
05.11 21:54:27 [Server] INFO Successfully cleaned backups.
05.11 21:54:27 [Server] INFO Making backup...
05.11 21:54:27 [Server] INFO Time until a New Day: 14 hours, 5 minutes, 33 seconds
05.11 21:54:27 [Server] INFO Checking for updates...
05.11 21:54:27 [Server] INFO New update available: 0.100.0.2 | Current version: 0.99.6.0
05.11 21:54:27 [Server] INFO Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.100.0.2
05.11 21:54:27 [Server] INFO Searching for third-party plugins...
05.11 21:54:27 [Server] INFO Plugins found:
05.11 21:54:27 [Server] INFO Permissions: TownyPerms, LuckPerms v5.4.104 via Vault
05.11 21:54:27 [Server] INFO Chat: LuckPerms v5.4.104 via Vault
05.11 21:54:27 [Server] INFO Economy: EssentialsX Economy via Vault
05.11 21:54:27 [Server] INFO Successfully registered internal expansion: townyadvanced [0.99.6.0]
05.11 21:54:27 [Server] INFO Add-ons: TownyChat v0.109, PlaceholderAPI v2.11.5
05.11 21:54:27 [Server] INFO Warning: EssentialsX Economy has been known to reset
05.11 21:54:27 [Server] INFO town and nation bank accounts on rare occasions.
05.11 21:54:28 [Server] INFO =============================================================
05.11 21:54:28 [Server] INFO Version: 0.99.6.0 - Plugin Enabled
05.11 21:54:28 [Server] INFO =============================================================
05.11 21:54:28 [Server] INFO Enabling MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
05.11 21:54:28 [Server] INFO Towny flatfiles and settings successfully backed up.
05.11 21:54:29 [Server] INFO Loading MythicMobs for Paper (MC: 1.20.2)...
05.11 21:54:29 [Server] INFO The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
05.11 21:54:30 [Server] INFO Mythic GriefPrevention Support has been enabled!
05.11 21:54:30 [Server] INFO Mythic mcMMO Support has been enabled!
05.11 21:54:30 [Server] INFO Successfully registered internal expansion: mythic [5.0.0]
05.11 21:54:30 [Server] INFO Mythic PlaceholderAPI Support has been enabled!
05.11 21:54:30 [Server] INFO Mythic ProtocolLib Support has been enabled!
05.11 21:54:30 [Server] INFO Mythic Vault Support has been enabled!
05.11 21:54:30 [Server] INFO Mythic WorldGuard Support has been enabled!
05.11 21:54:30 [Server] INFO Base directory /plugins/MythicMobs/SavedData
05.11 21:54:30 [Server] INFO Module directory /plugins/MythicMobs/SavedData/worlds
05.11 21:54:32 [Server] INFO Loading Packs...
05.11 21:54:33 [Server] INFO Loading Items...
05.11 21:54:33 [Server] INFO Loading Item Groups...
05.11 21:54:33 [Server] INFO Loading Skills...
05.11 21:54:33 [Server] INFO Loading stat ATTACK_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat ATTACK_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat BONUS_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat CRITICAL_STRIKE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat CRITICAL_STRIKE_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat CRITICAL_STRIKE_RESILIENCE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat DAMAGE_REDUCTION from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat DEFENSE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat DODGE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat DODGE_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat HEALTH from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat HEALTH_REGENERATION from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat LIFESTEAL_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat LIFESTEAL_POWER from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat MOVEMENT_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat PARRY_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat PARRY_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat PARRY_POWER from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat PARRY_COUNTERATTACK from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat ARMOR_GENERIC from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat ARMOR_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat ARMOR_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat DAMAGE_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat DAMAGE_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat FIRE_RESISTANCE from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading stat SPEED from /plugins/MythicMobs/stats.yml
05.11 21:54:33 [Server] INFO Loading Drop Tables...
05.11 21:54:33 [Server] INFO Loading Random Spawns...
05.11 21:54:33 [Server] INFO Loading Spawn Blocks...
05.11 21:54:33 [Server] INFO ✓ Loaded 8 mobs.
05.11 21:54:33 [Server] INFO ✓ Loaded 3 vanilla mob overrides.
05.11 21:54:33 [Server] INFO ✓ Loaded 0 mob stacks.
05.11 21:54:33 [Server] INFO ✓ Loaded 3 skills.
05.11 21:54:33 [Server] INFO ✓ Loaded 0 random spawns.
05.11 21:54:33 [Server] INFO ✓ Loaded 3 mythic items.
05.11 21:54:33 [Server] INFO ✓ Loaded 2 drop tables.
05.11 21:54:33 [Server] INFO ✓ Loaded 0 mob spawners.
05.11 21:54:33 [Server] INFO MythicMobs configuration file loaded successfully.
05.11 21:54:33 [Server] INFO Started up bStats Metrics
05.11 21:54:33 [Server] INFO ✓ MythicMobs v5.4.1 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
05.11 21:54:33 [Server] INFO Enabling GriefPrevention v16.18.1
05.11 21:54:33 [Server] INFO Finished loading configuration.
05.11 21:54:33 [Server] INFO 1 total claims loaded.
05.11 21:54:34 [Server] INFO Customizable messages loaded.
05.11 21:54:34 [Server] INFO Successfully hooked into WorldGuard.
05.11 21:54:34 [Server] INFO Finished loading data (File Mode).
05.11 21:54:35 [Server] INFO Boot finished.
05.11 21:54:35 [Server] INFO Enabling Factions v1.6.9.5-4.1.3-STABLE
05.11 21:54:35 [Server] INFO === ENABLE START ===
05.11 21:54:35 [Server] INFO Loaded 1 players
05.11 21:54:35 [Server] INFO Loaded 3 Factions
05.11 21:54:35 [Server] INFO Loading board from disk
05.11 21:54:35 [Server] INFO Loaded 0 board locations
05.11 21:54:35 [Server] INFO Economy integration through Vault plugin successful.
05.11 21:54:35 [Server] INFO NOTE: Economy is disabled. You can enable it with the command: f config econEnabled true
05.11 21:54:35 [Server] INFO CoreX Integration Starting!
05.11 21:54:35 [Server] INFO Enabling 15 CoreX Features...
05.11 21:54:35 [Server] INFO Loaded 1 timers into list!
05.11 21:54:36 [Server] INFO Internal Factions Top Being Used. NOTE: Very Basic
05.11 21:54:36 [Server] INFO Successfully registered internal expansion: factionsuuid [1.6.9.5-4.1.3-STABLE]
05.11 21:54:36 [Server] INFO Successfully registered placeholders with PlaceholderAPI.
05.11 21:54:36 [Server] INFO === ENABLE DONE (Took 1,130.296ms) ===
05.11 21:54:36 [Server] INFO Enabling mcMMO v2.1.224
05.11 21:54:37 [Server] INFO Successfully registered internal expansion: mcmmo [1.0,0]
05.11 21:54:37 [Server] INFO Enabling TownyChat v0.109
05.11 21:54:37 [Server] INFO Towny version 0.99.6.0 found.
05.11 21:54:37 [Server] INFO Default Channel set to general
05.11 21:54:37 [Server] INFO Enabling Multiverse-Portals v4.2.3
05.11 21:54:37 [Server] INFO 0 - Portals(s) loaded
05.11 21:54:37 [Server] INFO Found FastAsyncWorldEdit. Using it for selections.
05.11 21:54:37 [Server] INFO Enabled - By Rigby and fernferret
05.11 21:54:37 [Server] INFO Enabling GCore v8.48.0
05.11 21:54:37 [Server] INFO Already processed v7 -> v8 (config)
05.11 21:54:37 [Server] INFO Already processed v7 -> v8 (data)
05.11 21:54:37 [Server] INFO Already processed v8.4 -> v8.5
05.11 21:54:37 [Server] INFO Already processed v8.8 -> v8.9
05.11 21:54:37 [Server] INFO Already processed v8.23 -> v8.24
05.11 21:54:37 [Server] INFO Already processed v8.24 -> v8.25
05.11 21:54:37 [Server] INFO Already processed v8.29 -> v8.30
05.11 21:54:37 [Server] INFO Found server version MC_1_20_R2
05.11 21:54:37 [Server] INFO Loading materials...
05.11 21:54:38 [Server] INFO Loading sounds...
05.11 21:54:39 [Server] INFO Loading particles...
05.11 21:54:39 [Server] INFO Enabled currency VAULT
05.11 21:54:39 [Server] INFO Enabled currency XP_LEVEL
05.11 21:54:39 [Server] INFO Enabled currency XP
05.11 21:54:39 [Server] INFO Loading texts...
05.11 21:54:39 [Server] INFO Text durationformatdays doesn't exist in default files (not even in en_US)
05.11 21:54:39 [Server] INFO Loaded 1 missing text from default lang for generic.yml : durationFormatDays
05.11 21:54:39 [Server] INFO Enabled integration for Citizens
05.11 21:54:39 [Server] INFO Successfully registered internal expansion: gcore [1.0.0]
05.11 21:54:39 [Server] INFO Enabled integration for PlaceholderAPI
05.11 21:54:39 [Server] INFO Enabled integration for MythicMobs
05.11 21:54:39 [Server] INFO Initializing worker and caches
05.11 21:54:39 [Server] INFO Enabled NPC manager with ProtocolLib
05.11 21:54:39 [Server] INFO Registering integrations
05.11 21:54:39 [Server] INFO Initializing tasks and listeners
05.11 21:54:39 [Server] INFO Successfully enabled
05.11 21:54:39 [Server] INFO Enabling BetterRTP v3.6.11
05.11 21:54:39 [Server] INFO Cooldown = 600
05.11 21:54:40 [Server] INFO Successfully registered internal expansion: betterrtp [3.6.11]
05.11 21:54:40 [Server] INFO Enabling SchematicBrushReborn v2.5.3
05.11 21:54:40 [Server] INFO Locale plugins/SchematicBrushReborn/messages/messages_en_US.properties is up to date.
05.11 21:54:40 [Server] INFO Registered entry of type storage with de.eldoria.schematicbrush.schematics.SchematicBrushCache at Schematic Registry
05.11 21:54:40 [Server] INFO Path: plugins/SchematicBrushReborn/schematics does not exists. Skipping watch service registration.
05.11 21:54:40 [Server] INFO Path: plugins/WorldEdit/schematics does not exists. Skipping watch service registration.
05.11 21:54:40 [Server] INFO Metrics enabled. Thank you <3
05.11 21:54:40 [Server] INFO Enabled. Required 185 ms.
05.11 21:54:40 [Server] INFO Enabling DecentHolograms v2.8.4
05.11 21:54:40 [Server] INFO Using ProtocolLib for packet listening.
05.11 21:54:40 [Server] INFO Enabling ChestSort v13.6.4
05.11 21:54:40 [Server] INFO Hooked into WorldGuard 7.0.9+5934e49
05.11 21:54:40 [Server] INFO Use permissions: true
05.11 21:54:40 [Server] INFO Current sorting method: {category},{itemsFirst},{name},{color},{customName}
05.11 21:54:40 [Server] INFO Allow automatic chest sorting:true
05.11 21:54:40 [Server] INFO |- Chest sorting enabled by default: false
05.11 21:54:40 [Server] INFO |- Sort time: close
05.11 21:54:40 [Server] INFO Allow automatic inventory sorting:true
05.11 21:54:40 [Server] INFO |- Inventory sorting enabled by default: false
05.11 21:54:40 [Server] INFO Auto generate category files: true
05.11 21:54:40 [Server] INFO Allow hotkeys: true
05.11 21:54:40 [Server] INFO Hotkeys enabled by default:
05.11 21:54:40 [Server] INFO |- Middle-Click: true
05.11 21:54:40 [Server] INFO |- Shift-Click: true
05.11 21:54:40 [Server] INFO |- Double-Click: true
05.11 21:54:40 [Server] INFO |- Shift-Right-Click: true
05.11 21:54:40 [Server] INFO Allow additional hotkeys: true
05.11 21:54:40 [Server] INFO Additional hotkeys enabled by default:
05.11 21:54:40 [Server] INFO |- Left-Click: false
05.11 21:54:40 [Server] INFO |- Right-Click: false
05.11 21:54:40 [Server] INFO Check for updates: true
05.11 21:54:40 [Server] INFO Check interval: 4 hours (4.0 seconds)
05.11 21:54:40 [Server] INFO Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
05.11 21:54:40 [Server] INFO Successfully registered internal expansion: chestsort [13.6.4]
05.11 21:54:40 [Server] INFO Enabling DiscordSRV v1.26.2
05.11 21:54:40 [Server] INFO Enabling JukeboxExtendedReborn v1.2.8
05.11 21:54:40 [Server] INFO New version of SchematicBrushReborn available.
05.11 21:54:40 [Server] INFO New Version: 2.5.5. Published 9 days ago! 2023.10.27 09:01
05.11 21:54:40 [Server] INFO Current version: 2.5.3 Published 142 days ago! 2023.06.16 12:20
05.11 21:54:40 [Server] INFO Download the new version via Discord: https://www.spigotmc.org/resources/98499/
05.11 21:54:40 [Server] INFO Discs.json file not found please provide it in the plugin directory
05.11 21:54:40 [Server] INFO [https://github.com/spartacus04/jext-reborn/wiki/How-to-set-up-the-plugin]
05.11 21:54:40 [Server] WARN java.io.FileNotFoundException: discs.json file not found!
05.11 21:54:40 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.config.ConfigManager$Companion.load(ConfigManager.kt:75)
05.11 21:54:40 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.Jext.load(Jext.kt:67)
05.11 21:54:40 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.Jext.onEnable(Jext.kt:35)
05.11 21:54:40 [Server] WARN at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
05.11 21:54:40 [Server] WARN at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
05.11 21:54:40 [Server] WARN at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
05.11 21:54:40 [Server] WARN at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
05.11 21:54:40 [Server] WARN at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644)
05.11 21:54:40 [Server] WARN at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555)
05.11 21:54:40 [Server] WARN at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627)
05.11 21:54:40 [Server] WARN at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
05.11 21:54:40 [Server] WARN at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
05.11 21:54:40 [Server] WARN at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
05.11 21:54:40 [Server] WARN at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
05.11 21:54:40 [Server] WARN at java.base/java.lang.Thread.run(Thread.java:833)
05.11 21:54:40 [Server] INFO Disabling JukeboxExtendedReborn v1.2.8
05.11 21:54:40 [Server] INFO Disabled Jukebox Extended Reborn, Mi Re Do!
05.11 21:54:40 [Server] INFO Enabling NoteBlockAPI v1.6.2
05.11 21:54:40 [Server] ERROR No bot token has been set in the config; a bot token is required to connect to Discord.
05.11 21:54:40 [Server] INFO Enabling BigDoors vAlpha 0.1.8.48
05.11 21:54:40 [Server] INFO Power Block Types:
05.11 21:54:41 [Server] INFO - GOLD_BLOCK
05.11 21:54:41 [Server] INFO Blacklisted materials:
05.11 21:54:41 [Server] INFO - BEDROCK
05.11 21:54:41 [Server] INFO - END_PORTAL
05.11 21:54:41 [Server] INFO - END_PORTAL_FRAME
05.11 21:54:41 [Server] INFO - NETHER_PORTAL
05.11 21:54:41 [Server] INFO No materials Whitelisted!
05.11 21:54:41 [Server] INFO DestroyListed materials:
05.11 21:54:41 [Server] INFO - LAVA
05.11 21:54:41 [Server] INFO - WATER
05.11 21:54:41 [Server] INFO - SNOW
05.11 21:54:41 [Server] INFO - FERN
05.11 21:54:41 [Server] INFO - GRASS
05.11 21:54:41 [Server] INFO - TALL_GRASS
05.11 21:54:41 [Server] INFO - SEAGRASS
05.11 21:54:41 [Server] INFO - TALL_SEAGRASS
05.11 21:54:41 [Server] INFO DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
05.11 21:54:41 [Server] WARN mcMMO detected! All ores are blacklisted to avoid item duplication! This can be overridden in the config.
05.11 21:54:41 [Server] INFO Enabling stats! Thanks, it really helps!
05.11 21:54:41 [Server] INFO Successfully hooked into "WorldGuard"!
05.11 21:54:41 [Server] INFO Successfully hooked into "Towny"!
05.11 21:54:41 [Server] INFO Successfully hooked into "GriefPrevention"!
05.11 21:54:41 [Server] INFO Enabling ItemsAdder v3.6.2-beta-r2
05.11 21:54:41 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:54:41 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:54:41 [Server] INFO   ___  ___        __        __   __   ___  __      ItemsAdder 3.6.2-beta-r2
05.11 21:54:41 [Server] INFO |  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.27
05.11 21:54:41 [Server] INFO |  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-279 (MC: 1.20.2)
05.11 21:54:41 [Server] INFO
05.11 21:54:41 [Server] INFO [Host] Starting self-host webserver on port: 3645
05.11 21:54:42 [Server] INFO [Iris]: Enabled ExternalDataProvider for ItemsAdder.
05.11 21:54:42 [Server] INFO Registered Citizens NPC Trait: customentity
05.11 21:54:42 [Server] INFO Enabling Multiverse-NetherPortals v4.2.3
05.11 21:54:42 [Server] INFO Enabled - By Rigby and fernferret
05.11 21:54:42 [Server] INFO Enabling BedWars v0.2.30
05.11 21:54:42 [Server] INFO Successfully loaded messages for BedWars! Language: English
05.11 21:54:42 [Server] INFO Loading statistics from YAML-File ...
05.11 21:54:42 [Server] INFO Successfully registered internal expansion: bedwars [0.2.30]
05.11 21:54:42 [Server] INFO =====================  by ScreamingSandals <Misat11, Iamceph, Pronze>
05.11 21:54:42 [Server] INFO + Screaming BedWars +  Version: 0.2.30 FREE
05.11 21:54:42 [Server] INFO =====================  STABLE VERSION
05.11 21:54:42 [Server] INFO Found Vault
05.11 21:54:42 [Server] INFO Everything is loaded! If you like our work, consider visiting our Patreon! <3
05.11 21:54:42 [Server] INFO https://www.patreon.com/screamingsandals
05.11 21:54:42 [Server] INFO Enabling TradingCards v5.7.19
05.11 21:54:42 [Server] WARN Tried getting children from a non class object, returning empty list.
05.11 21:54:42 [Server] WARN Tried getting children from a non class object, returning empty list.
05.11 21:54:43 [Server] INFO Loading general.yml
05.11 21:54:43 [Server] INFO Loading chances.yml
05.11 21:54:43 [Server] INFO Loading messages.yml
05.11 21:54:43 [Server] INFO Loading storage.yml
05.11 21:54:43 [Server] INFO Loading advanced.yml
05.11 21:54:43 [Server] INFO Using storage YAML
05.11 21:54:43 [Server] INFO Loading decks.yml
05.11 21:54:43 [Server] INFO Loading packs.yml
05.11 21:54:43 [Server] INFO Loading rarities.yml
05.11 21:54:43 [Server] INFO Loading series.yml
05.11 21:54:43 [Server] INFO Loading custom-types.yml
05.11 21:54:43 [Server] INFO Loading cards.yml
05.11 21:54:43 [Server] INFO Loading cards.yml
05.11 21:54:43 [Server] INFO Loading upgrades.yml
05.11 21:54:43 [Server] WARN Could not get the type for goat_horn reason: null
05.11 21:54:43 [Server] WARN Defaulting to passive.
05.11 21:54:43 [Server] INFO Loading player-blacklist.yml
05.11 21:54:43 [Server] INFO Loading world-blacklist.yml
05.11 21:54:43 [Server] INFO Vault hook successful!
05.11 21:54:43 [Server] INFO Initializing managers...
05.11 21:54:43 [Server] INFO Loaded RarityManager.
05.11 21:54:43 [Server] INFO Loaded DropTypeManager.
05.11 21:54:43 [Server] INFO Loaded SeriesManager.
05.11 21:54:43 [Server] INFO Loaded 136 cards.
05.11 21:54:43 [Server] INFO Loaded CardManager.
05.11 21:54:43 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:54:43 [Server] WARN [NBTAPI] This Server-Version(v1_20_R2) is not supported by this NBT-API Version(2.11.3) located in TradingCards. The NBT-API will try to work as good as it can! Some functions may not work!
05.11 21:54:43 [Server] INFO [NBTAPI] Found Gson: class com.google.gson.Gson
05.11 21:54:43 [Server] ERROR Error occurred while enabling TradingCards v5.7.19 (Is it up to date?)
05.11 21:54:43 [Server] INFO net.tinetwork.tradingcards.nbt.NbtApiException: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.nbt.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.getType(NBTCompound.java:1016) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.addCompound(NBTCompound.java:669) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.getOrCreateCompound(NBTCompound.java:709) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.generatePack(BoosterPackManager.java:115) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.generatePack(BoosterPackManager.java:88) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.lambda$newMappingFunction$3(LocalLoadingCache.java:183) ~[?:?]
05.11 21:54:43 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.lambda$doComputeIfAbsent$14(BoundedLocalCache.java:2685) ~[?:?]
05.11 21:54:43 [Server] INFO at java.util.concurrent.ConcurrentHashMap.compute(ConcurrentHashMap.java:1916) ~[?:?]
05.11 21:54:43 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.doComputeIfAbsent(BoundedLocalCache.java:2683) ~[?:?]
05.11 21:54:43 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.computeIfAbsent(BoundedLocalCache.java:2666) ~[?:?]
05.11 21:54:43 [Server] INFO at com.github.benmanes.caffeine.cache.LocalCache.computeIfAbsent(LocalCache.java:112) ~[?:?]
05.11 21:54:43 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.get(LocalLoadingCache.java:58) ~[?:?]
05.11 21:54:43 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.loadSequentially(LocalLoadingCache.java:82) ~[?:?]
05.11 21:54:43 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.getAll(LocalLoadingCache.java:65) ~[?:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.preLoadItemStackCache(BoosterPackManager.java:70) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.<init>(BoosterPackManager.java:41) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.TradingCards.initManagers(TradingCards.java:258) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.TradingCards.onEnable(TradingCards.java:157) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:43 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:43 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:43 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:54:43 [Server] INFO Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class
05.11 21:54:43 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
05.11 21:54:43 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
05.11 21:54:43 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:54:43 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:54:43 [Server] INFO at net.tinetwork.tradingcards.nbt.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[TradingCards-5.7.19.jar:?]
05.11 21:54:43 [Server] INFO ... 31 more
05.11 21:54:43 [Server] INFO Disabling TradingCards v5.7.19
05.11 21:54:43 [Server] INFO Enabling WorldEditSelectionVisualizer v2.1.5
05.11 21:54:43 [Server] INFO Using WorldEdit 7 api
05.11 21:54:43 [Server] INFO Successfully registered internal expansion: wesv [2.1.5]
05.11 21:54:43 [Server] INFO PlaceholderAPI extension successfully registered.
05.11 21:54:43 [Server] INFO Enabling GSlotMachine v3.1.1
05.11 21:54:43 [Server] INFO Already processed v2 -> v3 (config)
05.11 21:54:43 [Server] INFO Already processed v2 -> v3 (data)
05.11 21:54:43 [Server] INFO Successfully loaded 1 machine type : default
05.11 21:54:43 [Server] INFO Loading texts...
05.11 21:54:43 [Server] INFO Successfully enabled
05.11 21:54:43 [Server] INFO Enabling GWarp v[2.13.0.2]
05.11 21:54:43 [Server] INFO The Plugin was successfully enabled.
05.11 21:54:43 [Server] INFO Enabling ColoredSigns v6.2.1.212
05.11 21:54:43 [Server] INFO Enabling GPFlags v5.12.9
05.11 21:54:44 [Server] INFO Finished loading configuration.
05.11 21:54:44 [Server] INFO Finished loading data.
05.11 21:54:45 [Server] INFO Successfully loaded in 1.11 seconds
05.11 21:54:45 [Server] INFO Enabling TAB v4.0.7
05.11 21:54:45 [Server] INFO Successfully registered internal expansion: tab [4.0.7]
05.11 21:54:45 [Server] INFO Enabled in 271ms
05.11 21:54:45 [Server] INFO Enabling TNTRun v2.4.5-SNAPSHOT
05.11 21:54:45 [Server] INFO Successfully registered internal expansion: tntrun [2.4.5-SNAPSHOT]
05.11 21:54:45 [Server] INFO Initialization finished. Consider donating: https://buymeacoffee.com/despical
05.11 21:54:45 [Server] INFO Enabling spark v1.10.34
05.11 21:54:46 [Server] INFO Using Paper ServerTickStartEvent for tick monitoring
05.11 21:54:46 [Server] INFO Starting background profiler...
05.11 21:54:46 [Server] INFO Successfully registered internal expansion: spark [1.10.34]
05.11 21:54:46 [Server] INFO Registered PlaceholderAPI placeholders
05.11 21:54:46 [Server] INFO Enabling NBTAPI v2.11.3
05.11 21:54:46 [Server] INFO Adding listeners...
05.11 21:54:46 [Server] INFO Gson:
05.11 21:54:46 [Server] INFO Checking bindings...
05.11 21:54:46 [Server] INFO All Classes were able to link!
05.11 21:54:46 [Server] INFO All Methods were able to link!
05.11 21:54:46 [Server] INFO Running NBT reflection test...
05.11 21:54:46 [Server] WARN Error during 'EqualsTest' test!
05.11 21:54:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.getType(NBTCompound.java:1016) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.addCompound(NBTCompound.java:669) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.compounds.EqualsTest.test(EqualsTest.java:25) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:54:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@2fd26360
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) ~[?:?]
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:54:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO ... 17 more
05.11 21:54:46 [Server] WARN Error during 'EmptyItemTest' test!
05.11 21:54:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'getBoolean(java.lang.String)', loaded: true, Enum: COMPOUND_GET_BOOLEAN, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.getBoolean(NBTCompound.java:438) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.EmptyItemTest.test(EmptyItemTest.java:16) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:54:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:54:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO ... 16 more
05.11 21:54:46 [Server] WARN Error during 'ItemMergingTest' test!
05.11 21:54:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.ItemMergingTest.test(ItemMergingTest.java:22) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:54:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@52ae6dcf
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:54:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO ... 16 more
05.11 21:54:46 [Server] WARN Error during 'DirectApplyTest' test!
05.11 21:54:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.DirectApplyTest.test(DirectApplyTest.java:17) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:54:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@27e68ac8
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:54:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO ... 16 more
05.11 21:54:46 [Server] WARN Error during 'DirectApplyMetaTest' test!
05.11 21:54:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.DirectApplyMetaTest.test(DirectApplyMetaTest.java:18) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:54:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:54:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@60e8aa19
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:54:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:54:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:54:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:54:46 [Server] INFO ... 16 more
05.11 21:54:46 [Server] INFO EqualsTest: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO DirectApplyMetaTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO EmptyItemTest: [?]Error while calling the method 'getBoolean(java.lang.String)', loaded: true, Enum: COMPOUND_GET_BOOLEAN, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO DirectApplyTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] INFO ItemMergingTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:54:46 [Server] WARN WARNING! This version of NBT-API seems to be broken with your Spigot version! Plugins that don't check properly may throw Exeptions, crash or have unexpected behaviors!
05.11 21:54:46 [Server] INFO Enabling BetterRTPAddons v1.8.8
05.11 21:54:46 [Server] INFO Enabling GridSelector v1.3.0
05.11 21:54:46 [Server] INFO Initializing message blocker. Whitelisted terms: [GS]
05.11 21:54:46 [Server] INFO Detected Chat signing support
05.11 21:54:46 [Server] INFO Locale plugins/GridSelector/messages/messages_en_US.properties is up to date.
05.11 21:54:46 [Server] INFO Registered entry of type grid with de.eldoria.gridselector.schematics.GridSchematics at Schematic Registry
05.11 21:54:46 [Server] INFO Enabled. Required 130 ms.
05.11 21:54:46 [Server] INFO Enabling EggWars v6.1.2
05.11 21:54:46 [Server] INFO Loading data for languages...
05.11 21:54:47 [Server] INFO Successfully registered internal expansion: EggWars [6.1.2]
05.11 21:54:47 [Server] INFO Loading data for kits...
05.11 21:54:47 [Server] INFO Loading data for token types...
05.11 21:54:47 [Server] INFO Loading data for generators...
05.11 21:54:47 [Server] INFO Loading data for main trades...
05.11 21:54:47 [Server] INFO Enabling YamipaPlugin v1.2.11
05.11 21:54:47 [Server] INFO Enabled image animation support
05.11 21:54:47 [Server] INFO No placed fake images configuration file found
05.11 21:54:47 [Server] INFO Enabling AdvancedKeep v2.0.1
05.11 21:54:47 [Server] INFO [ACF] Enabled Asynchronous Tab Completion Support!
05.11 21:54:47 [Server] INFO Enabling CrateReloaded v2.3.1
05.11 21:54:47 [Server] INFO Spigot Version: 1_20_R2
05.11 21:54:47 [Server] INFO Plugin is not enabled: HolographicDisplays
05.11 21:54:47 [Server] INFO Provider: Vault
05.11 21:54:47 [Server] INFO Provider: EffectLib
05.11 21:54:47 [Server] INFO Crate Configurations (1): crate.yml
05.11 21:54:47 [Server] INFO Enabling Skywars v5.6.22
05.11 21:54:47 [Server] ERROR Could not find support for this CraftBukkit version: v1_20_R2. Now disabling the plugin!
05.11 21:54:47 [Server] INFO Check for updates at https://gcnt.net/download/skywars
05.11 21:54:47 [Server] INFO Enabling UltraCosmetics v3.4.1
05.11 21:54:48 [Server] INFO Checking for update...
05.11 21:54:48 [Server] INFO -------------------------------------------------------------------
05.11 21:54:48 [Server] INFO Thanks for using UltraCosmetics! Version: 3.4.1-RELEASE (commit c5c2a02)
05.11 21:54:48 [Server] INFO Plugin by Datatags. Original Author: iSach
05.11 21:54:48 [Server] INFO Link: https://bit.ly/UltraCosmetics
05.11 21:54:48 [Server] INFO Initializing module v1_20 (expected version: 1.20.2)
05.11 21:54:48 [Server] INFO Entity registry is not vanilla, skipping unfreeze and refreeze
05.11 21:54:48 [Server] INFO Loaded NMS support
05.11 21:55:00 [Server] WARN Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
05.11 21:55:00 [Server] INFO Successfully registered internal expansion: ultracosmetics [3.4.1]
05.11 21:55:00 [Server] INFO Hooked into PlaceholderAPI
05.11 21:55:00 [Server] INFO Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
05.11 21:55:00 [Server] INFO WorldGuard custom flags enabled
05.11 21:55:00 [Server] INFO Hooked into Vault:EssentialsX Economy for economy.
05.11 21:55:00 [Server] INFO Hooked into ChestSort
05.11 21:55:00 [Server] INFO Hooked into Towny
05.11 21:55:00 [Server] INFO UltraCosmetics successfully finished loading in 12779ms!
05.11 21:55:00 [Server] INFO -------------------------------------------------------------------
05.11 21:55:00 [Server] INFO Enabling ZombieApocalypse v1.4.8
05.11 21:55:00 [Server] INFO Configuration has been successfully loaded!
05.11 21:55:00 [Server] INFO If you really love this project, you could consider donating to help me keep this project alive! https://paypal.me/3ricL
05.11 21:55:00 [Server] INFO Enabling JukeLooper v2.5
05.11 21:55:00 [Server] INFO Enabling HeadHunterPlugin v2.0.7
05.11 21:55:00 [Server] INFO Enabling RankVouchers v3.0*
05.11 21:55:00 [Server] INFO ---------------------------
05.11 21:55:00 [Server] INFO ---------------------------
05.11 21:55:00 [Server] INFO Hooked into PlaceholderAPI!
05.11 21:55:00 [Server] INFO Hooked into WorldGuard!
05.11 21:55:00 [Server] INFO Developed by Setups.io.
05.11 21:55:00 [Server] INFO Ready!
05.11 21:55:00 [Server] WARN Plugin 'RankVouchers' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors:
05.11 21:55:00 [Server] INFO [ACF] Minecraft Version: 1.20
05.11 21:55:00 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers' - this is deprecated behavior, please report it to the authors:
05.11 21:55:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers help' - this is deprecated behavior, please report it to the authors:
05.11 21:55:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers reload' - this is deprecated behavior, please report it to the authors:
05.11 21:55:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers give' - this is deprecated behavior, please report it to the authors:
05.11 21:55:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers giveall' - this is deprecated behavior, please report it to the authors:
05.11 21:55:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers list' - this is deprecated behavior, please report it to the authors:
05.11 21:55:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers create' - this is deprecated behavior, please report it to the authors:
05.11 21:55:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers remove' - this is deprecated behavior, please report it to the authors:
05.11 21:55:01 [Server] INFO Enabling GreetingPlugin v2.0-SNAPSHOT
05.11 21:55:01 [Server] INFO Greeting Plugin has been enabled.
05.11 21:55:01 [Server] INFO Enabling Waypoints v4.2.0
05.11 21:55:01 [Server] INFO Found squaremap plugin
05.11 21:55:01 [Server] INFO Enabling Multiverse-Inventories v4.2.6
05.11 21:55:01 [Server] INFO enabled.
05.11 21:55:01 [Server] INFO Enabling TreeAssist v7.3.49
05.11 21:55:01 [Server] INFO sending full Metrics! You can deactivate this in the config.yml
05.11 21:55:01 [Server] INFO debugging: off
05.11 21:55:01 [Server] INFO Successfully registered internal expansion: ta [0.0.1]
05.11 21:55:01 [Server] INFO Checking for updates...
05.11 21:55:01 [Server] INFO Enabling MusicBox v2.0.13
05.11 21:55:01 [Server] INFO Enabling Guilds v3.5.7.0
05.11 21:55:02 [Server] INFO ________
05.11 21:55:02 [Server] INFO /  _____/
05.11 21:55:02 [Server] INFO /   \  ___   Guilds v3.5.7.0
05.11 21:55:02 [Server] INFO \    \_\  \  Server Version: git-Paper-279 (MC: 1.20.2)
05.11 21:55:02 [Server] INFO \______  /
05.11 21:55:02 [Server] INFO \/
05.11 21:55:02 [Server] INFO Economy Found: EssentialsX Economy
05.11 21:55:02 [Server] INFO Permissions Found: LuckPerms
05.11 21:55:03 [Server] INFO Successfully registered internal expansion: guilds [2.1]
05.11 21:55:03 [Server] INFO [ACF] Enabled Asynchronous Tab Completion Support!
05.11 21:55:04 [Server] INFO Your version of Guilds (3.5.7.0) is up to date!
05.11 21:55:04 [Server] INFO Ready to go! That only took 1716ms
05.11 21:55:04 [Server] INFO Enabling PlayerParticles v8.4
05.11 21:55:04 [Server] INFO Initializing using RoseGarden v1.1.0.52-SNAPSHOT
05.11 21:55:04 [Server] INFO Data handler connected using SQLite.
05.11 21:55:04 [Server] INFO Features
05.11 21:55:04 [Server] INFO - Added initial support for 1.20.X
05.11 21:55:04 [Server] INFO Bug Fixes
05.11 21:55:04 [Server] INFO - Fixed a bug related to banking commands
05.11 21:55:04 [Server] INFO Notes
05.11 21:55:04 [Server] INFO - Currently dealing with some real life stuff, hope to be back soon.
05.11 21:55:04 [Server] INFO Successfully registered internal expansion: playerparticles [8.4]
05.11 21:55:04 [Server] INFO Enabling BigDoorsOpener v2.5.2
05.11 21:55:05 [Server] INFO Enabled. Required 72 ms.
05.11 21:55:05 [Server] INFO Enabling LPC v3.6.0
05.11 21:55:05 [Server] INFO Enabling DeluxeMenus v1.13.7-Release
05.11 21:55:05 [Server] INFO Successfully hooked into PlaceholderAPI!
05.11 21:55:05 [Server] INFO 3 GUI menus loaded!
05.11 21:55:05 [Server] INFO You are running the latest version of DeluxeMenus!
05.11 21:55:05 [Server] INFO Successfully hooked into Vault!
05.11 21:55:05 [Server] INFO Successfully registered internal expansion: deluxemenus [1.13.7-Release]
05.11 21:55:05 [Server] INFO Enabling Chunky v1.3.92
05.11 21:55:05 [Server] INFO Enabling Images v2.3.1
05.11 21:55:05 [Server] INFO ProtocolLib detected. Enabling generic packet handling...
05.11 21:55:05 [Server] INFO Enabling FacilisCommon v1.0.2-SNAPSHOT
05.11 21:55:05 [Server] INFO Enabling Invsee v1.0.0*
05.11 21:55:05 [Server] INFO Enabling AuctionHouse v3.5.1
05.11 21:55:06 [Server] INFO Found locale file en_us.json
05.11 21:55:06 [Server] WARN A backup of the database has been saved with .backup extension.
05.11 21:55:06 [Server] INFO Using NMS version v1_20_R2
05.11 21:55:06 [Server] ERROR Error! This plugin only supports Spigot versions 1.20.x!
05.11 21:55:06 [Server] ERROR Plugin will be disabled!
05.11 21:55:06 [Server] INFO Disabling AuctionHouse v3.5.1
05.11 21:55:06 [Server] INFO Saving auctions data
05.11 21:55:06 [Server] INFO Enabling Arcade v1.55
05.11 21:55:06 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
05.11 21:55:06 [Server] INFO Arcade only works for:
05.11 21:55:06 [Server] INFO - 1.20.1
05.11 21:55:06 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
05.11 21:55:06 [Server] INFO Enabling FishRewards v1.2.4
05.11 21:55:06 [Server] INFO A new plugin update is available. Download link: https://www.spigotmc.org/resources/111966/
05.11 21:55:06 [Server] INFO loaded 3 packs
05.11 21:55:06 [Server] WARN Plugin Vanillahungergames v2.4 tried to register permission 'admin' but it's already registered
05.11 21:55:06 [Server] INFO Enabling Vanillahungergames v2.4
05.11 21:55:06 [Server] INFO Enabling NotBounties v1.12.1
05.11 21:55:06 [Server] INFO Using Vault as currency!
05.11 21:55:06 [Server] INFO Successfully registered internal expansion: notbounties [1.12.1]
05.11 21:55:06 [Server] INFO Database not connected, using internal storage
05.11 21:55:06 [Server] INFO Enabling ImageOnMap v4.2.2
05.11 21:55:06 [Server] INFO Loaded 0 player map files.
05.11 21:55:06 [Server] INFO Enabling VoxelSniper v8.12.4
05.11 21:55:08 [Server] INFO Registered 70 Sniper Brushes with 136 handles.
05.11 21:55:08 [Server] INFO Registered Sniper Listener.
05.11 21:55:08 [Server] INFO Checking for updates...
05.11 21:55:08 [Server] INFO Enabling UltimateShop v1.7.7
05.11 21:55:08 [Server] INFO Loaded shop: crops1.yml!
05.11 21:55:08 [Server] INFO Loaded shop: baits.yml!
05.11 21:55:08 [Server] INFO Loaded shop: crops.yml!
05.11 21:55:08 [Server] INFO Loaded shop: logs.yml!
05.11 21:55:08 [Server] INFO Loaded shop: drops.yml!
05.11 21:55:08 [Server] INFO Loaded shop: ores.yml!
05.11 21:55:08 [Server] INFO Loaded shop: blocks.yml!
05.11 21:55:08 [Server] INFO Loaded menu: main.yml!
05.11 21:55:08 [Server] INFO Hooking into PlaceholderAPI...
05.11 21:55:08 [Server] INFO Successfully registered internal expansion: ultimateshop [1.0.0]
05.11 21:55:08 [Server] INFO Finished hook!
05.11 21:55:08 [Server] INFO Plugin is loaded. Author: PQguanfang.
05.11 21:55:08 [Server] INFO Enabling TavernBard v1.2
05.11 21:55:08 [Server] INFO MythicMobs detected. Support enabled!
05.11 21:55:10 [Server] INFO Placeholder expansion registration initializing...
05.11 21:55:10 [Server] INFO Running delayed init tasks
05.11 21:55:10 [Server] INFO Fetching version information...
05.11 21:55:10 [Server] INFO [License] Store product licensed to: darkclone9 (353993)
05.11 21:55:10 [Server] INFO Loading holograms...
05.11 21:55:10 [Server] INFO Plugin 'WorldGuard' found. Using it now.
05.11 21:55:10 [Server] INFO Attempting to use plugin 'WorldGuard'
05.11 21:55:10 [Server] INFO Plugin 'Towny' found. Using it now.
05.11 21:55:10 [Server] INFO Attempting to use plugin 'Towny'
05.11 21:55:10 [Server] INFO Loaded 5 holograms!
05.11 21:55:10 [Server] INFO Plugin 'GriefPrevention' found. Using it now.
05.11 21:55:10 [Server] INFO Attempting to use plugin 'GriefPrevention'
05.11 21:55:10 [Server] INFO [Iris]: Server type & version: git-Paper-279 (MC: 1.20.2)
05.11 21:55:10 [Server] INFO Fetching version information...
05.11 21:55:10 [Server] INFO [Iris]: Bukkit version: 1.20.2-R0.1-SNAPSHOT
05.11 21:55:10 [Server] INFO [Iris]: Java version: 17
05.11 21:55:10 [Server] INFO [Iris]: Custom Biomes: 0
05.11 21:55:10 [Server] INFO [Iris]: Version Information: git-Paper-279 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
05.11 21:55:10 [Server] INFO [Iris]: ============================================
05.11 21:55:10 [Server] INFO [Iris]: =
05.11 21:55:10 [Server] INFO [Iris]: =
05.11 21:55:10 [Server] INFO Checking for Updates ...
05.11 21:55:10 [Server] INFO [Iris]: =
05.11 21:55:10 [Server] INFO You are running the latest version on Spigot.
05.11 21:55:10 [Server] INFO [Iris]: Iris is not compatible with this version of Minecraft.
05.11 21:55:10 [Server] INFO Please use 1.20.1 or use an older version of Iris.
05.11 21:55:10 [Server] INFO [Iris]: =
05.11 21:55:10 [Server] INFO [Iris]: =
05.11 21:55:10 [Server] INFO [Iris]: =
05.11 21:55:10 [Server] INFO [Iris]: ============================================
05.11 21:55:10 [Server] INFO [Iris]: We recommend using Purpur for the best experience with Iris.
05.11 21:55:10 [Server] INFO [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
05.11 21:55:10 [Server] INFO [Iris]: Plugins that work on Spigot / Paper work on Purpur.
05.11 21:55:10 [Server] INFO [Iris]: You can download it here: https://purpurmc.org
05.11 21:55:10 [Server] INFO [Iris]: Custom Dimensions: 1
05.11 21:55:10 [Server] INFO [Iris]:   overworld v3700
05.11 21:55:11 [Server] INFO No new version available
05.11 21:55:11 [Server] INFO The version v4.3.0 for Waypoints is available.
05.11 21:55:11 [Server] INFO Checkout the release here: https://github.com/Sytm/waypoints/releases/tag/v4.3.0
05.11 21:55:11 [Server] INFO [Iris]:
05.11 21:55:11 [Server] INFO @@@@@@@@@@@@@@@@@
05.11 21:55:11 [Server] INFO @@&&&&&&&&&&&&&&&   .(((()))).
05.11 21:55:11 [Server] INFO @@@&&&&&&&&&&&&&  .((((((())))))).
05.11 21:55:11 [Server] INFO @@@&&&&&&&&&&&&  ((((((((()))))))))                @
05.11 21:55:11 [Server] INFO @@@&&&&@@@@@&    ((((((((-)))))))))               @@
05.11 21:55:11 [Server] INFO @@@&&            ((((((({ }))))))))            &&@@@     Iris
05.11 21:55:11 [Server] INFO @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
05.11 21:55:11 [Server] INFO @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v2.8.0-1.20.1
05.11 21:55:11 [Server] INFO '((((((()))))))'  &&&&&&&&&&&&&@@@
05.11 21:55:11 [Server] INFO '(((())))'   &&&&&&&&&&&&&&&@@
05.11 21:55:11 [Server] INFO @@@@@@@@@@@@@@@@@
05.11 21:55:11 [Server] INFO Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
05.11 21:55:11 [Server] WARN You're 2 EssentialsX dev build(s) out of date!
05.11 21:55:11 [Server] WARN Download it here: https://essentialsx.net/downloads.html
05.11 21:55:11 [Server] INFO -******* TownyChat enabled *******-
05.11 21:55:11 [Server] INFO Disabling DiscordSRV v1.26.2
05.11 21:55:11 [Server] INFO Checking for updates...
05.11 21:55:11 [Server] INFO [Pack] Extracting internal contents from .jar
05.11 21:55:11 [Server] INFO [Pack] DONE extracting internal contents from .jar
05.11 21:55:11 [Server] INFO No new updates available.
05.11 21:55:13 [Server] WARN Custom entities 'fast_packets_creation' is disabled. This might cause stuttering animations. More info: https://a.devs.beer/ia-delaypackets
05.11 21:55:14 [Server] INFO Loaded 7 recipes
05.11 21:55:15 [Server] INFO Loaded 2 NPCs.
05.11 21:55:15 [Server] INFO Post startup done. Required 35 ms.
05.11 21:55:15 [Server] INFO Post startup done. Required 0 ms.
05.11 21:55:15 [Server] INFO First run!
05.11 21:55:15 [Server] INFO Hooked into Big Doors successfully.
05.11 21:55:15 [Server] INFO World Guard found. Trying to get a hook.
05.11 21:55:15 [Server] INFO Hooked into world guard successfully.
05.11 21:55:15 [Server] INFO Placeholder API found. Enabling placeholder usage.
05.11 21:55:15 [Server] INFO MythicMobs found. Enabling mythic mobs listener.
05.11 21:55:15 [Server] INFO Config is up to date.
05.11 21:55:15 [Server] INFO Config loaded!
05.11 21:55:15 [Server] INFO Java 15 or newer detected. Searching for external Engine.
05.11 21:55:15 [Server] INFO New version of SchematicBrushReborn available.
05.11 21:55:15 [Server] INFO New Version: 2.5.5. Published 9 days ago! 2023.10.27 09:01
05.11 21:55:15 [Server] INFO Current version: 2.5.3 Published 142 days ago! 2023.06.16 12:20
05.11 21:55:15 [Server] INFO Download the new version via Discord: https://discord.gg/zRW9Vpu
05.11 21:55:16 [Server] INFO OpenJDK Nashorn script engine started.
05.11 21:55:16 [Server] INFO Locale plugins/BigDoorsOpener/messages/messages_en_US.properties is up to date.
05.11 21:55:16 [Server] INFO Locale plugins/BigDoorsOpener/messages/messages_de_DE.properties is up to date.
05.11 21:55:16 [Server] INFO Metrics enabled. Thank you very much!
05.11 21:55:16 [Server] INFO Post startup done. Required 1134 ms.
05.11 21:55:16 [Server] INFO Successfully registered external expansion: vault [1.8.1]
05.11 21:55:16 [Server] INFO Successfully registered external expansion: essentials [1.5.2]
05.11 21:55:16 [Server] INFO Successfully registered external expansion: luckperms [5.4-R2]
05.11 21:55:16 [Server] INFO 3 placeholder hook(s) registered!
05.11 21:55:16 [Server] INFO You are using the latest version of IridiumSkyblock.
05.11 21:55:16 [Server] INFO Successfully registered internal expansion: iris [2.8.0-1.20.1]
05.11 21:55:16 [Server] Startup Done (115.268s)! For help, type "help"
05.11 21:55:16 [Server] WARN Can't keep up! Is the server overloaded? Running 6123ms or 122 ticks behind
05.11 21:55:16 [Server] INFO Timings Reset
05.11 21:55:17 [Server] INFO Loaded 344 items
05.11 21:55:17 [Server] INFO Used 0/188 REAL block IDs
05.11 21:55:17 [Server] INFO Used 29/750 REAL_NOTE block IDs
05.11 21:55:17 [Server] INFO Used 0/63 REAL_TRANSPARENT block IDs
05.11 21:55:17 [Server] INFO Used 0/127 REAL_WIRE block IDs
05.11 21:55:17 [Server] INFO Used 0/14 FIRE block IDs
05.11 21:55:17 [Server] INFO Used 587/6608 font_images
05.11 21:55:17 [Server] INFO [Init] Loaded 29 categories
05.11 21:55:17 [Server] INFO [Init] Loaded successfully.
05.11 21:55:17 [Server] INFO [Pack] Checking resourcepack url...
05.11 21:55:18 [Server] INFO Successfully registered internal expansion: img [1.0.1]
05.11 21:55:18 [Server] INFO Successfully registered internal expansion: iaplayerstat [1.0.1]
05.11 21:55:18 [Server] INFO Reloading ItemsAdder Custom Entities Citizens NPCs
05.11 21:55:18 [Server] INFO Reloading plugin...
05.11 21:55:19 [Server] INFO Loading Packs...
05.11 21:55:19 [Server] INFO Loading Items...
05.11 21:55:19 [Server] INFO Loading Item Groups...
05.11 21:55:19 [Server] INFO Loading Skills...
05.11 21:55:19 [Server] INFO Loading stat ATTACK_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat ATTACK_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat BONUS_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat CRITICAL_STRIKE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat CRITICAL_STRIKE_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat CRITICAL_STRIKE_RESILIENCE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat DAMAGE_REDUCTION from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat DEFENSE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat DODGE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat DODGE_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat HEALTH from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat HEALTH_REGENERATION from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat LIFESTEAL_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat LIFESTEAL_POWER from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat MOVEMENT_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat PARRY_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat PARRY_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat PARRY_POWER from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat PARRY_COUNTERATTACK from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat ARMOR_GENERIC from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat ARMOR_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat ARMOR_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat DAMAGE_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat DAMAGE_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat FIRE_RESISTANCE from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading stat SPEED from /plugins/MythicMobs/stats.yml
05.11 21:55:19 [Server] INFO Loading Drop Tables...
05.11 21:55:19 [Server] INFO Loading Random Spawns...
05.11 21:55:19 [Server] INFO Loading Spawn Blocks...
05.11 21:55:19 [Server] INFO ✓ Loaded 8 mobs.
05.11 21:55:19 [Server] INFO ✓ Loaded 3 vanilla mob overrides.
05.11 21:55:19 [Server] INFO ✓ Loaded 0 mob stacks.
05.11 21:55:19 [Server] INFO ✓ Loaded 3 skills.
05.11 21:55:19 [Server] INFO ✓ Loaded 0 random spawns.
05.11 21:55:19 [Server] INFO ✓ Loaded 3 mythic items.
05.11 21:55:19 [Server] INFO ✓ Loaded 2 drop tables.
05.11 21:55:19 [Server] INFO ✓ Loaded 0 mob spawners.
05.11 21:55:19 [Server] INFO Mythic has finished reloading!
05.11 21:55:19 [Server] INFO Mythic has finished reloading!
05.11 21:55:20 [Server] INFO [Pack] Resourcepack URL (self-host): http://147.135.70.77:3645/generated.zip
05.11 21:55:20 [Server] INFO Checking for updates...
05.11 21:55:20 [Server] INFO You are running the latest version.
05.11 21:55:21 [Server] INFO [Iris]: Checking Data Packs...
05.11 21:55:22 [Server] INFO Checking plugin version...
05.11 21:55:22 [Server] INFO No updates found
05.11 21:55:23 [Server] INFO [Iris]: Data Packs Setup!
05.11 21:55:23 [Server] INFO [Iris]: ===================================================================================
05.11 21:55:23 [Server] INFO [Iris]: Pack overworld has 94 custom biome(s).
05.11 21:55:23 [Server] INFO [Iris]: Your server version does not yet support datapacks for iris.
05.11 21:55:23 [Server] INFO [Iris]: The world will generate these biomes as backup biomes.
05.11 21:55:23 [Server] INFO [Iris]: ====================================================================================
05.11 21:55:23 [Server] INFO Loaded 0 images...
05.11 21:55:25 [Server] WARN Task #4967 for NotBounties v1.12.1 generated an exception
05.11 21:55:25 [Server] INFO java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
05.11 21:55:25 [Server] INFO at jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) ~[?:?]
05.11 21:55:25 [Server] INFO at jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) ~[?:?]
05.11 21:55:25 [Server] INFO at jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) ~[?:?]
05.11 21:55:25 [Server] INFO at java.util.Objects.checkIndex(Objects.java:359) ~[?:?]
05.11 21:55:25 [Server] INFO at java.util.ArrayList.get(ArrayList.java:427) ~[?:?]
05.11 21:55:25 [Server] INFO at me.jadenp.notbounties.NotBounties$3.run(NotBounties.java:744) ~[NotBounties-LATEST-[1.12.1].jar:?]
05.11 21:55:25 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:55:25 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:55:25 [Server] INFO at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1470) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:55:25 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:55:25 [Server] INFO at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1379) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:55:25 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1156) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:55:25 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:55:25 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:56:05 [Server] INFO CONSOLE issued server command: /list
05.11 21:56:05 [Server] INFO There are 0 out of maximum 120 players online.
05.11 21:56:53 [Server] INFO CONSOLE issued server command: /list
05.11 21:56:53 [Server] INFO There are 0 out of maximum 120 players online.
05.11 21:57:42 [Server] INFO CONSOLE issued server command: /list
05.11 21:57:42 [Server] INFO There are 0 out of maximum 120 players online.
05.11 21:58:31 [Server] INFO CONSOLE issued server command: /list
05.11 21:58:31 [Server] INFO There are 0 out of maximum 120 players online.
05.11 21:59:19 [Server] INFO CONSOLE issued server command: /list
05.11 21:59:19 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:00:08 [Server] INFO CONSOLE issued server command: /list
05.11 22:00:08 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:00:22 [Server] WARN Can't keep up! Is the server overloaded? Running 5033ms or 100 ticks behind
05.11 22:00:56 [Server] INFO CONSOLE issued server command: /list
05.11 22:00:56 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:01:45 [Server] INFO CONSOLE issued server command: /list
05.11 22:01:45 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:02:33 [Server] INFO CONSOLE issued server command: /list
05.11 22:02:33 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:03:08 [Multicraft] Auto-saving world...
05.11 22:03:08 [Server] INFO Saving is already turned on
05.11 22:03:08 [Server] INFO Saving the game (this may take a moment!)
05.11 22:03:08 [Server] INFO Saved the game
05.11 22:03:22 [Server] INFO CONSOLE issued server command: /list
05.11 22:03:22 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:04:11 [Server] INFO CONSOLE issued server command: /list
05.11 22:04:11 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:04:59 [Server] INFO CONSOLE issued server command: /list
05.11 22:04:59 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:05:48 [Server] INFO CONSOLE issued server command: /list
05.11 22:05:48 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:06:36 [Server] INFO CONSOLE issued server command: /list
05.11 22:06:36 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:07:25 [Server] INFO CONSOLE issued server command: /list
05.11 22:07:25 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:08:13 [Server] INFO CONSOLE issued server command: /list
05.11 22:08:13 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:09:02 [Server] INFO CONSOLE issued server command: /list
05.11 22:09:02 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:09:51 [Server] INFO CONSOLE issued server command: /list
05.11 22:09:51 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:10:39 [Server] INFO CONSOLE issued server command: /list
05.11 22:10:39 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:11:28 [Server] INFO CONSOLE issued server command: /list
05.11 22:11:28 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:12:16 [Server] INFO CONSOLE issued server command: /list
05.11 22:12:16 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:13:05 [Server] INFO CONSOLE issued server command: /list
05.11 22:13:05 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:13:12 [Multicraft] Auto-saving world...
05.11 22:13:12 [Server] INFO Saving is already turned on
05.11 22:13:12 [Server] INFO Saving the game (this may take a moment!)
05.11 22:13:12 [Server] INFO Saved the game
05.11 22:13:54 [Server] INFO CONSOLE issued server command: /list
05.11 22:13:54 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:14:42 [Server] INFO CONSOLE issued server command: /list
05.11 22:14:42 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:15:31 [Server] INFO CONSOLE issued server command: /list
05.11 22:15:31 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:16:19 [Server] INFO CONSOLE issued server command: /list
05.11 22:16:19 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:17:08 [Server] INFO CONSOLE issued server command: /list
05.11 22:17:08 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:17:56 [Server] INFO CONSOLE issued server command: /list
05.11 22:17:56 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:18:45 [Server] INFO CONSOLE issued server command: /list
05.11 22:18:45 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:19:34 [Server] INFO CONSOLE issued server command: /list
05.11 22:19:34 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:20:22 [Server] INFO CONSOLE issued server command: /list
05.11 22:20:22 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:21:11 [Server] INFO CONSOLE issued server command: /list
05.11 22:21:11 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:21:59 [Server] INFO CONSOLE issued server command: /list
05.11 22:21:59 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:22:48 [Server] INFO CONSOLE issued server command: /list
05.11 22:22:48 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:23:15 [Multicraft] Auto-saving world...
05.11 22:23:15 [Server] INFO Saving is already turned on
05.11 22:23:15 [Server] INFO Saving the game (this may take a moment!)
05.11 22:23:15 [Server] INFO Saved the game
05.11 22:23:36 [Server] INFO CONSOLE issued server command: /list
05.11 22:23:36 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:24:25 [Server] INFO CONSOLE issued server command: /list
05.11 22:24:25 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:25:14 [Server] INFO CONSOLE issued server command: /list
05.11 22:25:14 [Server] INFO There are 0 out of maximum 120 players online.
05.11 22:26:02 [Server] INFO CONSOLE issued server command: /list
05.11 22:26:02 [Server] INFO There are 0 out of maximum 120 players online.