Paste #125872: Edit of paste 125871: Latest.log

Date: 2024/08/23 06:53:41 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste Edit Of Paste 125871 View Edit Report
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


[16:13:41] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
[16:13:41] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[16:13:43] [ServerMain/INFO]: Loaded 7 recipes
[16:13:44] [Server thread/INFO]: Starting minecraft server version 1.19.4
[16:13:44] [Server thread/INFO]: Loading properties
[16:13:44] [Server thread/INFO]: This server is running Paper version git-Paper-550 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: 483368e on ver/1.19.4)
[16:13:44] [Server thread/INFO]: Server Ping Player Sample Count: 12
[16:13:44] [Server thread/INFO]: Using 4 threads for Netty based IO
[16:13:44] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[16:13:44] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 6 worker threads, and gen parallelism of 6 threads
[16:13:44] [Server thread/INFO]: Default game type: SURVIVAL
[16:13:44] [Server thread/INFO]: Generating keypair
[16:13:44] [Server thread/INFO]: Starting Minecraft server on &
[16:13:45] [Server thread/INFO]: Using epoll channel type
[16:13:45] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[16:13:45] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[16:13:45] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[16:13:48] [Server thread/WARN]: Legacy plugin CoreQuests v2.5.0-SNAPSHOT does not specify an api-version.
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [CoreQuests] Loading 1 libraries... please wait
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [CoreQuests] Loaded library /server/libraries/org/jsoup/jsoup/1.16.1/jsoup-1.16.1.jar
[16:13:48] [Server thread/WARN]: Legacy plugin AnimaBossBar v4.7 does not specify an api-version.
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/org/json/json/20220320/json-20220320.jar
[16:13:48] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /server/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[16:13:48] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.0.4-SNAPSHOT
[16:13:48] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.4-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[16:13:48] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[16:13:49] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[16:13:49] [Server thread/INFO]: [ViaBackwards] Loading translations...
[16:13:49] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[16:13:50] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[16:13:50] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[16:13:50] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.14+6360-094b734
[16:13:51] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@561db51e]
[16:13:51] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8+33cdb4a
[16:13:51] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[16:13:51] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.1
[16:13:51] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[16:13:51] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[16:13:52] [Server thread/INFO]: [Parties] Loading server plugin Parties v3.2.15
[16:13:52] [Server thread/INFO]: [Parties] Loading libraries of Parties v3.2.15, this may take a while
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for jar-relocator
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for asm
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for asm-commons
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for gson
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for jdbi3-core
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for geantyref
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for caffeine
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for jdbi3-stringtemplate4
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for ST4
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for antlr-runtime
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for jdbi3-sqlobject
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for slf4j-api
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for slf4j-simple
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for HikariCP
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for mariadb-java-client
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for mysql-connector-j
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for postgresql
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for h2
[16:13:52] [Server thread/INFO]: [Parties] Verifying checksum for exp4j
[16:13:52] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.0.4-SNAPSHOT
[16:13:52] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[16:13:52] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.13.1
[16:13:52] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_19_R3! Trying to find NMS support
[16:13:52] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[16:13:52] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[16:13:52] [Server thread/INFO]: [MBedwars] Loading server plugin MBedwars v5.4.11
[16:13:53] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[16:13:53] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.4.2
[16:13:53] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3479)
[16:13:53] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.24.8.13
[16:13:53] [Server thread/INFO]: [AlonsoLevels] Loading server plugin AlonsoLevels v2.3.2-BETA
[16:13:53] [Server thread/INFO]: [CoreQuests] Loading server plugin CoreQuests v2.5.0-SNAPSHOT
[16:13:53] [Server thread/INFO]: [MBedWarsKits] Loading server plugin MBedWarsKits v1.3
[16:13:53] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[16:13:53] [Server thread/INFO]: [AnimaBossBar] Loading server plugin AnimaBossBar v4.7
[16:13:53] [Server thread/INFO]: [AutoPluginLoader] Loading server plugin AutoPluginLoader v1.3.1
[16:13:53] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.7
[16:13:53] [Server thread/INFO]: [PacketListenerApi] Loading server plugin PacketListenerApi v3.9.10-SNAPSHOT
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] I am loaded from package org.inventivetalent.packetlistener.reflection.minecraft
[16:13:53] [Server thread/WARN]: Nag author(s): '[inventivetalent]' of 'PacketListenerApi v3.9.10-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:13:53] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper/MinecraftVersion] Failed to find version enum for 'org.bukkit.craftbukkit.v1_19_R3'/'v1_19_R3'
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Generating dynamic constant...
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Injected dynamic version v1_19_R3 (#11903).
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Please inform inventivetalent about the outdated version, as this is not guaranteed to work.
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Version is v1_19_R3 (11903)
[16:13:53] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper/MinecraftVersion] Failed to find version enum for 'org.bukkit.craftbukkit.v1_19_R3'/'v1_19_R3'
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Generating dynamic constant...
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Injected dynamic version v1_19_R3 (#11903).
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Please inform inventivetalent about the outdated version, as this is not guaranteed to work.
[16:13:53] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper] Failed to find version enum for 'org.bukkit.craftbukkit.v1_19_R3'/'v1_19_R3'
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper] Generating dynamic constant...
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper] Failed to create deprecated dynamic version
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper] If the above (ReflectionHelper/MinecraftVersion) succeeded, you can ignore this.
[16:13:53] [Server thread/WARN]: java.lang.NoSuchFieldException: Could not resolve field for [ResolverQuery{name='constructorAccessor', types=[]}] in class class java.lang.reflect.Constructor
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.FieldResolver.notFoundException(FieldResolver.java:252)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.FieldResolver.notFoundException(FieldResolver.java:12)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ResolverAbstract.resolve(ResolverAbstract.java:63)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.FieldResolver.resolve(FieldResolver.java:69)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.minecraft.Minecraft.newEnumInstance(Minecraft.java:297)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.minecraft.Minecraft$Version.getVersion(Minecraft.java:263)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.minecraft.Minecraft.<clinit>(Minecraft.java:45)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.minecraft.NMSClassResolver.resolve(NMSClassResolver.java:26)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveSilent(ClassResolver.java:17)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.channel.ChannelAbstract.<clinit>(ChannelAbstract.java:22)
[16:13:53] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[16:13:53] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Unknown Source)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveObject(ClassResolver.java:37)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveObject(ClassResolver.java:9)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ResolverAbstract.resolve(ResolverAbstract.java:53)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolve(ClassResolver.java:29)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.ChannelInjector.newChannelInstance(ChannelInjector.java:41)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.ChannelInjector.inject(ChannelInjector.java:28)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.PacketListenerAPI.load(PacketListenerAPI.java:32)
[16:13:53] [Server thread/WARN]:     at PacketListenerAPI_v3.9.10-SNAPSHOT.jar//org.inventivetalent.packetlistener.PacketListenerPlugin.onLoad(PacketListenerPlugin.java:16)
[16:13:53] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59)
[16:13:53] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18)
[16:13:53] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:40)
[16:13:53] [Server thread/WARN]:     at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36)
[16:13:53] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.loadPlugins(CraftServer.java:431)
[16:13:53] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:273)
[16:13:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1104)
[16:13:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[16:13:53] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[16:13:53] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [PacketListenerAPI] Using INChannel
[16:13:53] [Server thread/INFO]: [PacketListenerAPI] Injected custom channel handlers.
[16:13:53] [Server thread/INFO]: [ajParkour] Loading server plugin ajParkour v2.12.10
[16:13:53] [Server thread/INFO]: [FireBallKnockback] Loading server plugin FireBallKnockback v2.1.0
[16:13:53] [Server thread/INFO]: [AuthMe] Loading server plugin AuthMe v5.6.0-bCUSTOM
[16:13:53] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.0
[16:13:53] [Server thread/INFO]: [momojs] Loading server plugin momojs v1.0.3
[16:13:53] [Server thread/INFO]: [momojs] js engine provider is loaded
[16:13:53] [Server thread/INFO]: [ACubelets] Loading server plugin ACubelets v2.4.7
[16:13:53] [Server thread/INFO]: [ExtraSpecialItems] Loading server plugin ExtraSpecialItems v3.0.2
[16:13:53] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[16:13:53] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[16:13:53] [Server thread/INFO]: [Gen-Splitter] Loading server plugin Gen-Splitter v4.0.0
[16:13:53] [Server thread/INFO]: [PowerCamera] Loading server plugin PowerCamera v0.6
[16:13:53] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.71
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[16:13:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[16:13:53] [Server thread/INFO]: [NDailyRewards] Loading server plugin NDailyRewards v2.3.6
[16:13:53] [Server thread/INFO]: [CombatPlus] Loading server plugin CombatPlus v1.7.4
[16:13:53] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[16:13:53] [Server thread/INFO]: [HeadDB] Loading server plugin HeadDB v5.0.0-rc.10
[16:13:53] [Server thread/INFO]: [MBedwars-Cosmetics] Loading server plugin MBedwars-Cosmetics v1.3.7
[16:13:53] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v7.24.8.13
[16:13:53] [Server thread/INFO]: [ChatManager] Loading server plugin ChatManager v3.7.7
[16:13:53] [Server thread/INFO]: [BlockEffects] Loading server plugin BlockEffects v1.2.5
[16:13:53] [Server thread/INFO]: [PrizeCommands] Loading server plugin PrizeCommands v4.0.1
[16:13:53] [Server thread/INFO]: [MBedwarsBetterTeamSelectorAddon] Loading server plugin MBedwarsBetterTeamSelectorAddon v1.1.0-HOTFIX
[16:13:53] [Server thread/INFO]: [MBLeaderboardsAddon] Loading server plugin MBLeaderboardsAddon v1.1.1
[16:13:53] [Server thread/INFO]: [MBedwarsTweaks] Loading server plugin MBedwarsTweaks v4.2.1
[16:13:53] [Server thread/INFO]: [PrizeCommands] Loading PrizeCommands v4.0.1
[16:13:53] [Server thread/INFO]: [MBedwarsBetterTeamSelectorAddon] Loading MBedwarsBetterTeamSelectorAddon v1.1.0-HOTFIX
[16:13:53] [Server thread/INFO]: [MBLeaderboardsAddon] Loading MBLeaderboardsAddon v1.1.1
[16:13:53] [Server thread/INFO]: [MBedwarsTweaks] Loading MBedwarsTweaks v4.2.1
[16:13:53] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[16:13:53] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[16:13:53] [Thread-13/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[16:13:53] [Thread-13/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.13.1' Newest Version: 2.13.2'
[16:13:53] [Thread-13/WARN]: [NBTAPI] [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)!
[16:13:53] [Server thread/INFO]:         __    
[16:13:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[16:13:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[16:13:53] [Server thread/INFO]: 
[16:13:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[16:13:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [SQLITE]
[16:13:54] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[16:13:54] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[16:13:54] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1502ms)
[16:13:54] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[16:13:54] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[16:13:54] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[16:13:54] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[16:13:54] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[16:13:54] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.14+6360-094b734
[16:13:54] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[16:13:55] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[16:13:55] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R3.PaperweightAdapter as the Bukkit adapter
[16:13:56] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[16:13:56] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.4.2
[16:13:56] [Server thread/WARN]: [SkinsRestorer] You must agree to the rules at 'commands.perSkinPermissionsConsent' in the config to use per skin permissions.
[16:13:57] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.19.4.
[16:13:57] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[16:13:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.4.2]
[16:13:57] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[16:13:57] [Server thread/INFO]: [momojs] Enabling momojs v1.0.3
[16:13:57] [Server thread/INFO]: [momojs] js engine provider is enabled
[16:13:57] [Server thread/INFO]: __momolib.js.nashorn.api.scripting.NashornScriptEngine@51a45166
[16:13:57] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[16:13:57] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[16:13:57] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[16:13:57] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[16:13:57] [Server thread/INFO]: Preparing level "world"
[16:13:58] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[16:13:58] [Server thread/INFO]: Time elapsed: 104 ms
[16:13:58] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[16:13:58] [Server thread/INFO]: Time elapsed: 94 ms
[16:13:58] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[16:13:58] [Server thread/INFO]: Time elapsed: 28 ms
[16:13:58] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.4-SNAPSHOT
[16:13:58] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.4 (762)
[16:13:58] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8+33cdb4a
[16:13:58] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[16:13:58] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[16:13:58] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
[16:13:58] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[16:13:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[16:13:58] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:13:59] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[16:14:00] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[16:14:00] [Server thread/INFO]: [Skript] Enabling Skript v2.9.1
[16:14:01] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[16:14:03] [Server thread/INFO]: [Skript] Loaded 151084 aliases in 3124ms
[16:14:04] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[16:14:04] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[16:14:04] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" 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--].
[16:14:04] [Server thread/INFO]: [Multiverse-Core] 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.
[16:14:04] [Server thread/INFO]: Preparing start region for dimension minecraft:bowser
[16:14:05] [Server thread/INFO]: Time elapsed: 807 ms
[16:14:05] [Server thread/INFO]: [WorldGuard] (Bowser) TNT ignition is PERMITTED.
[16:14:05] [Server thread/INFO]: [WorldGuard] (Bowser) Lighters are PERMITTED.
[16:14:05] [Server thread/INFO]: [WorldGuard] (Bowser) Lava fire is blocked.
[16:14:05] [Server thread/INFO]: [WorldGuard] (Bowser) Fire spread is UNRESTRICTED.
[16:14:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Bowser'
[16:14:05] [Server thread/INFO]: Preparing start region for dimension minecraft:penguin
[16:14:05] [Server thread/INFO]: Time elapsed: 280 ms
[16:14:05] [Server thread/INFO]: [WorldGuard] (Penguin) TNT ignition is PERMITTED.
[16:14:05] [Server thread/INFO]: [WorldGuard] (Penguin) Lighters are PERMITTED.
[16:14:05] [Server thread/INFO]: [WorldGuard] (Penguin) Lava fire is blocked.
[16:14:05] [Server thread/INFO]: [WorldGuard] (Penguin) Fire spread is UNRESTRICTED.
[16:14:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Penguin'
[16:14:06] [Server thread/INFO]: Preparing start region for dimension minecraft:pirates
[16:14:08] [Server thread/INFO]: Time elapsed: 2192 ms
[16:14:08] [Server thread/INFO]: [WorldGuard] (Pirates) TNT ignition is PERMITTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Pirates) Lighters are PERMITTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Pirates) Lava fire is blocked.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Pirates) Fire spread is UNRESTRICTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Pirates'
[16:14:08] [Server thread/INFO]: Preparing start region for dimension minecraft:mario
[16:14:08] [Server thread/INFO]: Time elapsed: 3 ms
[16:14:08] [Server thread/INFO]: [WorldGuard] (Mario) TNT ignition is PERMITTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Mario) Lighters are PERMITTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Mario) Lava fire is blocked.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Mario) Fire spread is UNRESTRICTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Mario'
[16:14:08] [Server thread/INFO]: Preparing start region for dimension minecraft:greece
[16:14:08] [Server thread/INFO]: Time elapsed: 9 ms
[16:14:08] [Server thread/INFO]: [WorldGuard] (Greece) TNT ignition is PERMITTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Greece) Lighters are PERMITTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Greece) Lava fire is blocked.
[16:14:08] [Server thread/INFO]: [WorldGuard] (Greece) Fire spread is UNRESTRICTED.
[16:14:08] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Greece'
[16:14:08] [Server thread/INFO]: Preparing start region for dimension minecraft:winter
[16:14:09] [Server thread/INFO]: Time elapsed: 490 ms
[16:14:09] [Server thread/INFO]: [WorldGuard] (Winter) TNT ignition is PERMITTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Winter) Lighters are PERMITTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Winter) Lava fire is blocked.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Winter) Fire spread is UNRESTRICTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Winter'
[16:14:09] [Server thread/INFO]: Preparing start region for dimension minecraft:planet98
[16:14:09] [Server thread/INFO]: Time elapsed: 4 ms
[16:14:09] [Server thread/INFO]: [WorldGuard] (Planet98) TNT ignition is PERMITTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Planet98) Lighters are PERMITTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Planet98) Lava fire is blocked.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Planet98) Fire spread is UNRESTRICTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Planet98'
[16:14:09] [Server thread/INFO]: Preparing start region for dimension minecraft:mill
[16:14:09] [Server thread/INFO]: Time elapsed: 180 ms
[16:14:09] [Server thread/INFO]: [WorldGuard] (Mill) TNT ignition is PERMITTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Mill) Lighters are PERMITTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Mill) Lava fire is blocked.
[16:14:09] [Server thread/INFO]: [WorldGuard] (Mill) Fire spread is UNRESTRICTED.
[16:14:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Mill'
[16:14:09] [Server thread/INFO]: Preparing start region for dimension minecraft:tree
[16:14:10] [Server thread/INFO]: Time elapsed: 405 ms
[16:14:10] [Server thread/INFO]: [WorldGuard] (Tree) TNT ignition is PERMITTED.
[16:14:10] [Server thread/INFO]: [WorldGuard] (Tree) Lighters are PERMITTED.
[16:14:10] [Server thread/INFO]: [WorldGuard] (Tree) Lava fire is blocked.
[16:14:10] [Server thread/INFO]: [WorldGuard] (Tree) Fire spread is UNRESTRICTED.
[16:14:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Tree'
[16:14:10] [Server thread/INFO]: Preparing start region for dimension minecraft:bzzzz
[16:14:10] [Server thread/INFO]: Time elapsed: 5 ms
[16:14:10] [Server thread/INFO]: [WorldGuard] (Bzzzz) TNT ignition is PERMITTED.
[16:14:10] [Server thread/INFO]: [WorldGuard] (Bzzzz) Lighters are PERMITTED.
[16:14:10] [Server thread/INFO]: [WorldGuard] (Bzzzz) Lava fire is blocked.
[16:14:10] [Server thread/INFO]: [WorldGuard] (Bzzzz) Fire spread is UNRESTRICTED.
[16:14:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Bzzzz'
[16:14:10] [Server thread/INFO]: Preparing start region for dimension minecraft:state
[16:14:11] [Server thread/INFO]: Time elapsed: 398 ms
[16:14:11] [Server thread/INFO]: [WorldGuard] (state) TNT ignition is PERMITTED.
[16:14:11] [Server thread/INFO]: [WorldGuard] (state) Lighters are PERMITTED.
[16:14:11] [Server thread/INFO]: [WorldGuard] (state) Lava fire is blocked.
[16:14:11] [Server thread/INFO]: [WorldGuard] (state) Fire spread is UNRESTRICTED.
[16:14:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'state'
[16:14:11] [Server thread/INFO]: Preparing start region for dimension minecraft:hospital
[16:14:12] [Server thread/INFO]: Time elapsed: 981 ms
[16:14:12] [Server thread/INFO]: [WorldGuard] (Hospital) TNT ignition is PERMITTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] (Hospital) Lighters are PERMITTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] (Hospital) Lava fire is blocked.
[16:14:12] [Server thread/INFO]: [WorldGuard] (Hospital) Fire spread is UNRESTRICTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Hospital'
[16:14:12] [Server thread/INFO]: Preparing start region for dimension minecraft:palmtree
[16:14:12] [Server thread/INFO]: Time elapsed: 3 ms
[16:14:12] [Server thread/INFO]: [WorldGuard] (PalmTree) TNT ignition is PERMITTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] (PalmTree) Lighters are PERMITTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] (PalmTree) Lava fire is blocked.
[16:14:12] [Server thread/INFO]: [WorldGuard] (PalmTree) Fire spread is UNRESTRICTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PalmTree'
[16:14:12] [Server thread/INFO]: Preparing start region for dimension minecraft:sandcastles
[16:14:12] [Server thread/INFO]: Time elapsed: 85 ms
[16:14:12] [Server thread/INFO]: [WorldGuard] (SandCastles) TNT ignition is PERMITTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] (SandCastles) Lighters are PERMITTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] (SandCastles) Lava fire is blocked.
[16:14:12] [Server thread/INFO]: [WorldGuard] (SandCastles) Fire spread is UNRESTRICTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SandCastles'
[16:14:12] [Server thread/INFO]: Preparing start region for dimension minecraft:japan
[16:14:12] [Server thread/INFO]: Time elapsed: 198 ms
[16:14:12] [Server thread/INFO]: [WorldGuard] (Japan) TNT ignition is PERMITTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] (Japan) Lighters are PERMITTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] (Japan) Lava fire is blocked.
[16:14:12] [Server thread/INFO]: [WorldGuard] (Japan) Fire spread is UNRESTRICTED.
[16:14:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Japan'
[16:14:12] [Server thread/INFO]: Preparing start region for dimension minecraft:fachwerk
[16:14:13] [Server thread/INFO]: Time elapsed: 101 ms
[16:14:13] [Server thread/INFO]: [WorldGuard] (Fachwerk) TNT ignition is PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Fachwerk) Lighters are PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Fachwerk) Lava fire is blocked.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Fachwerk) Fire spread is UNRESTRICTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Fachwerk'
[16:14:13] [Server thread/INFO]: Preparing start region for dimension minecraft:city
[16:14:13] [Server thread/INFO]: Time elapsed: 1 ms
[16:14:13] [Server thread/INFO]: [WorldGuard] (City) TNT ignition is PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (City) Lighters are PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (City) Lava fire is blocked.
[16:14:13] [Server thread/INFO]: [WorldGuard] (City) Fire spread is UNRESTRICTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'City'
[16:14:13] [Server thread/INFO]: Preparing start region for dimension minecraft:mirrorsedge
[16:14:13] [Server thread/INFO]: Time elapsed: 92 ms
[16:14:13] [Server thread/INFO]: [WorldGuard] (MirrorsEdge) TNT ignition is PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (MirrorsEdge) Lighters are PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (MirrorsEdge) Lava fire is blocked.
[16:14:13] [Server thread/INFO]: [WorldGuard] (MirrorsEdge) Fire spread is UNRESTRICTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'MirrorsEdge'
[16:14:13] [Server thread/INFO]: Preparing start region for dimension minecraft:sakura
[16:14:13] [Server thread/INFO]: Time elapsed: 197 ms
[16:14:13] [Server thread/INFO]: [WorldGuard] (Sakura) TNT ignition is PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Sakura) Lighters are PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Sakura) Lava fire is blocked.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Sakura) Fire spread is UNRESTRICTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Sakura'
[16:14:13] [Server thread/INFO]: Preparing start region for dimension minecraft:kappapride
[16:14:13] [Server thread/INFO]: Time elapsed: 3 ms
[16:14:13] [Server thread/INFO]: [WorldGuard] (KappaPride) TNT ignition is PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (KappaPride) Lighters are PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (KappaPride) Lava fire is blocked.
[16:14:13] [Server thread/INFO]: [WorldGuard] (KappaPride) Fire spread is UNRESTRICTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KappaPride'
[16:14:13] [Server thread/INFO]: Preparing start region for dimension minecraft:panda
[16:14:13] [Server thread/INFO]: Time elapsed: 8 ms
[16:14:13] [Server thread/INFO]: [WorldGuard] (Panda) TNT ignition is PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Panda) Lighters are PERMITTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Panda) Lava fire is blocked.
[16:14:13] [Server thread/INFO]: [WorldGuard] (Panda) Fire spread is UNRESTRICTED.
[16:14:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Panda'
[16:14:13] [Server thread/INFO]: Preparing start region for dimension minecraft:station
[16:14:14] [Server thread/INFO]: Time elapsed: 690 ms
[16:14:14] [Server thread/INFO]: [WorldGuard] (Station) TNT ignition is PERMITTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Station) Lighters are PERMITTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Station) Lava fire is blocked.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Station) Fire spread is UNRESTRICTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Station'
[16:14:14] [Server thread/INFO]: Preparing start region for dimension minecraft:safana
[16:14:14] [Server thread/INFO]: Time elapsed: 7 ms
[16:14:14] [Server thread/INFO]: [WorldGuard] (Safana) TNT ignition is PERMITTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Safana) Lighters are PERMITTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Safana) Lava fire is blocked.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Safana) Fire spread is UNRESTRICTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Safana'
[16:14:14] [Server thread/INFO]: Preparing start region for dimension minecraft:gas
[16:14:14] [Server thread/INFO]: Time elapsed: 7 ms
[16:14:14] [Server thread/INFO]: [WorldGuard] (Gas) TNT ignition is PERMITTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Gas) Lighters are PERMITTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Gas) Lava fire is blocked.
[16:14:14] [Server thread/INFO]: [WorldGuard] (Gas) Fire spread is UNRESTRICTED.
[16:14:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Gas'
[16:14:14] [Server thread/INFO]: Preparing start region for dimension minecraft:spacestation
[16:14:14] [Server thread/INFO]: Time elapsed: 28 ms
[16:14:15] [Server thread/INFO]: [WorldGuard] (Spacestation) TNT ignition is PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Spacestation) Lighters are PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Spacestation) Lava fire is blocked.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Spacestation) Fire spread is UNRESTRICTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spacestation'
[16:14:15] [Server thread/INFO]: Preparing start region for dimension minecraft:draggy
[16:14:15] [Server thread/INFO]: Time elapsed: 222 ms
[16:14:15] [Server thread/INFO]: [WorldGuard] (Draggy) TNT ignition is PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Draggy) Lighters are PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Draggy) Lava fire is blocked.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Draggy) Fire spread is UNRESTRICTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Draggy'
[16:14:15] [Server thread/INFO]: Preparing start region for dimension minecraft:dabb
[16:14:15] [Server thread/INFO]: Time elapsed: 3 ms
[16:14:15] [Server thread/INFO]: [WorldGuard] (Dabb) TNT ignition is PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Dabb) Lighters are PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Dabb) Lava fire is blocked.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Dabb) Fire spread is UNRESTRICTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dabb'
[16:14:15] [Server thread/INFO]: Preparing start region for dimension minecraft:butterfly
[16:14:15] [Server thread/INFO]: Time elapsed: 20 ms
[16:14:15] [Server thread/INFO]: [WorldGuard] (Butterfly) TNT ignition is PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Butterfly) Lighters are PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Butterfly) Lava fire is blocked.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Butterfly) Fire spread is UNRESTRICTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Butterfly'
[16:14:15] [Server thread/INFO]: Preparing start region for dimension minecraft:mayak
[16:14:15] [Server thread/INFO]: Time elapsed: 239 ms
[16:14:15] [Server thread/INFO]: [WorldGuard] (Mayak) TNT ignition is PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Mayak) Lighters are PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Mayak) Lava fire is blocked.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Mayak) Fire spread is UNRESTRICTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Mayak'
[16:14:15] [Server thread/INFO]: Preparing start region for dimension minecraft:zamki
[16:14:15] [Server thread/INFO]: Time elapsed: 3 ms
[16:14:15] [Server thread/INFO]: [WorldGuard] (Zamki) TNT ignition is PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Zamki) Lighters are PERMITTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Zamki) Lava fire is blocked.
[16:14:15] [Server thread/INFO]: [WorldGuard] (Zamki) Fire spread is UNRESTRICTED.
[16:14:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Zamki'
[16:14:16] [Server thread/INFO]: Preparing start region for dimension minecraft:egypt
[16:14:16] [Server thread/INFO]: Time elapsed: 100 ms
[16:14:16] [Server thread/INFO]: [WorldGuard] (Egypt) TNT ignition is PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Egypt) Lighters are PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Egypt) Lava fire is blocked.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Egypt) Fire spread is UNRESTRICTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Egypt'
[16:14:16] [Server thread/INFO]: Preparing start region for dimension minecraft:vietnam
[16:14:16] [Server thread/INFO]: Time elapsed: 392 ms
[16:14:16] [Server thread/INFO]: [WorldGuard] (Vietnam) TNT ignition is PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Vietnam) Lighters are PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Vietnam) Lava fire is blocked.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Vietnam) Fire spread is UNRESTRICTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Vietnam'
[16:14:16] [Server thread/INFO]: Preparing start region for dimension minecraft:pride
[16:14:16] [Server thread/INFO]: Time elapsed: 53 ms
[16:14:16] [Server thread/INFO]: [WorldGuard] (Pride) TNT ignition is PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Pride) Lighters are PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Pride) Lava fire is blocked.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Pride) Fire spread is UNRESTRICTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Pride'
[16:14:16] [Server thread/INFO]: Preparing start region for dimension minecraft:china
[16:14:16] [Server thread/INFO]: Time elapsed: 98 ms
[16:14:16] [Server thread/INFO]: [WorldGuard] (China) TNT ignition is PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (China) Lighters are PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (China) Lava fire is blocked.
[16:14:16] [Server thread/INFO]: [WorldGuard] (China) Fire spread is UNRESTRICTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'China'
[16:14:16] [Server thread/INFO]: Preparing start region for dimension minecraft:ancient
[16:14:16] [Server thread/INFO]: Time elapsed: 23 ms
[16:14:16] [Server thread/INFO]: [WorldGuard] (Ancient) TNT ignition is PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Ancient) Lighters are PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Ancient) Lava fire is blocked.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Ancient) Fire spread is UNRESTRICTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Ancient'
[16:14:16] [Server thread/INFO]: Preparing start region for dimension minecraft:portal
[16:14:16] [Server thread/INFO]: Time elapsed: 19 ms
[16:14:16] [Server thread/INFO]: [WorldGuard] (Portal) TNT ignition is PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Portal) Lighters are PERMITTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Portal) Lava fire is blocked.
[16:14:16] [Server thread/INFO]: [WorldGuard] (Portal) Fire spread is UNRESTRICTED.
[16:14:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Portal'
[16:14:17] [Server thread/INFO]: Preparing start region for dimension minecraft:islands
[16:14:17] [Server thread/INFO]: Time elapsed: 285 ms
[16:14:17] [Server thread/INFO]: [WorldGuard] (Islands) TNT ignition is PERMITTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Islands) Lighters are PERMITTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Islands) Lava fire is blocked.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Islands) Fire spread is UNRESTRICTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Islands'
[16:14:17] [Server thread/INFO]: Preparing start region for dimension minecraft:ufo
[16:14:17] [Server thread/INFO]: Time elapsed: 4 ms
[16:14:17] [Server thread/INFO]: [WorldGuard] (UFO) TNT ignition is PERMITTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] (UFO) Lighters are PERMITTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] (UFO) Lava fire is blocked.
[16:14:17] [Server thread/INFO]: [WorldGuard] (UFO) Fire spread is UNRESTRICTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'UFO'
[16:14:17] [Server thread/INFO]: Preparing start region for dimension minecraft:potion
[16:14:17] [Server thread/INFO]: Time elapsed: 303 ms
[16:14:17] [Server thread/INFO]: [WorldGuard] (Potion) TNT ignition is PERMITTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Potion) Lighters are PERMITTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Potion) Lava fire is blocked.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Potion) Fire spread is UNRESTRICTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Potion'
[16:14:17] [Server thread/INFO]: Preparing start region for dimension minecraft:mushroom
[16:14:17] [Server thread/INFO]: Time elapsed: 100 ms
[16:14:17] [Server thread/INFO]: [WorldGuard] (Mushroom) TNT ignition is PERMITTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Mushroom) Lighters are PERMITTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Mushroom) Lava fire is blocked.
[16:14:17] [Server thread/INFO]: [WorldGuard] (Mushroom) Fire spread is UNRESTRICTED.
[16:14:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Mushroom'
[16:14:18] [Server thread/INFO]: Preparing start region for dimension minecraft:dragonborn
[16:14:18] [Server thread/INFO]: Time elapsed: 310 ms
[16:14:18] [Server thread/INFO]: [WorldGuard] (Dragonborn) TNT ignition is PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Dragonborn) Lighters are PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Dragonborn) Lava fire is blocked.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Dragonborn) Fire spread is UNRESTRICTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dragonborn'
[16:14:18] [Server thread/INFO]: Preparing start region for dimension minecraft:gardens
[16:14:18] [Server thread/INFO]: Time elapsed: 4 ms
[16:14:18] [Server thread/INFO]: [WorldGuard] (Gardens) TNT ignition is PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Gardens) Lighters are PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Gardens) Lava fire is blocked.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Gardens) Fire spread is UNRESTRICTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Gardens'
[16:14:18] [Server thread/INFO]: Preparing start region for dimension minecraft:zimniy
[16:14:18] [Server thread/INFO]: Time elapsed: 15 ms
[16:14:18] [Server thread/INFO]: [WorldGuard] (Zimniy) TNT ignition is PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Zimniy) Lighters are PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Zimniy) Lava fire is blocked.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Zimniy) Fire spread is UNRESTRICTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Zimniy'
[16:14:18] [Server thread/INFO]: Preparing start region for dimension minecraft:hotels
[16:14:18] [Server thread/INFO]: Time elapsed: 130 ms
[16:14:18] [Server thread/INFO]: [WorldGuard] (Hotels) TNT ignition is PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Hotels) Lighters are PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Hotels) Lava fire is blocked.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Hotels) Fire spread is UNRESTRICTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Hotels'
[16:14:18] [Server thread/INFO]: Preparing start region for dimension minecraft:dust
[16:14:18] [Server thread/INFO]: Time elapsed: 83 ms
[16:14:18] [Server thread/INFO]: [WorldGuard] (Dust) TNT ignition is PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Dust) Lighters are PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Dust) Lava fire is blocked.
[16:14:18] [Server thread/INFO]: [WorldGuard] (Dust) Fire spread is UNRESTRICTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dust'
[16:14:18] [Server thread/INFO]: Preparing start region for dimension minecraft:testing
[16:14:18] [Server thread/INFO]: Time elapsed: 94 ms
[16:14:18] [Server thread/INFO]: [WorldGuard] (TESTING) TNT ignition is PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (TESTING) Lighters are PERMITTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] (TESTING) Lava fire is blocked.
[16:14:18] [Server thread/INFO]: [WorldGuard] (TESTING) Fire spread is UNRESTRICTED.
[16:14:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TESTING'
[16:14:19] [Server thread/INFO]: Preparing start region for dimension minecraft:cyberpunk
[16:14:19] [Server thread/INFO]: Time elapsed: 392 ms
[16:14:19] [Server thread/INFO]: [WorldGuard] (Cyberpunk) TNT ignition is PERMITTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Cyberpunk) Lighters are PERMITTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Cyberpunk) Lava fire is blocked.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Cyberpunk) Fire spread is UNRESTRICTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Cyberpunk'
[16:14:19] [Server thread/INFO]: Preparing start region for dimension minecraft:naruto
[16:14:19] [Server thread/INFO]: Time elapsed: 69 ms
[16:14:19] [Server thread/INFO]: [WorldGuard] (Naruto) TNT ignition is PERMITTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Naruto) Lighters are PERMITTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Naruto) Lava fire is blocked.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Naruto) Fire spread is UNRESTRICTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Naruto'
[16:14:19] [Server thread/INFO]: Preparing start region for dimension minecraft:forest
[16:14:19] [Server thread/INFO]: Time elapsed: 19 ms
[16:14:19] [Server thread/INFO]: [WorldGuard] (Forest) TNT ignition is PERMITTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Forest) Lighters are PERMITTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Forest) Lava fire is blocked.
[16:14:19] [Server thread/INFO]: [WorldGuard] (Forest) Fire spread is UNRESTRICTED.
[16:14:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Forest'
[16:14:19] [Server thread/INFO]: Preparing start region for dimension minecraft:desert
[16:14:20] [Server thread/INFO]: Time elapsed: 619 ms
[16:14:20] [Server thread/INFO]: [WorldGuard] (Desert) TNT ignition is PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Desert) Lighters are PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Desert) Lava fire is blocked.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Desert) Fire spread is UNRESTRICTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Desert'
[16:14:20] [Server thread/INFO]: Preparing start region for dimension minecraft:sunflowers
[16:14:20] [Server thread/INFO]: Time elapsed: 3 ms
[16:14:20] [Server thread/INFO]: [WorldGuard] (Sunflowers) TNT ignition is PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Sunflowers) Lighters are PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Sunflowers) Lava fire is blocked.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Sunflowers) Fire spread is UNRESTRICTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Sunflowers'
[16:14:20] [Server thread/INFO]: Preparing start region for dimension minecraft:paris
[16:14:20] [Server thread/INFO]: Time elapsed: 186 ms
[16:14:20] [Server thread/INFO]: [WorldGuard] (Paris) TNT ignition is PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Paris) Lighters are PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Paris) Lava fire is blocked.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Paris) Fire spread is UNRESTRICTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Paris'
[16:14:20] [Server thread/INFO]: Preparing start region for dimension minecraft:amongus
[16:14:20] [Server thread/INFO]: Time elapsed: 2 ms
[16:14:20] [Server thread/INFO]: [WorldGuard] (Amongus) TNT ignition is PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Amongus) Lighters are PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Amongus) Lava fire is blocked.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Amongus) Fire spread is UNRESTRICTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Amongus'
[16:14:20] [Server thread/INFO]: Preparing start region for dimension minecraft:hell
[16:14:20] [Server thread/INFO]: Time elapsed: 84 ms
[16:14:20] [Server thread/INFO]: [WorldGuard] (Hell) TNT ignition is PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Hell) Lighters are PERMITTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Hell) Lava fire is blocked.
[16:14:20] [Server thread/INFO]: [WorldGuard] (Hell) Fire spread is UNRESTRICTED.
[16:14:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Hell'
[16:14:20] [Server thread/INFO]: [Multiverse-Core] 57 - World(s) loaded.
[16:14:20] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[16:14:20] [Server thread/INFO]: [Parties] Enabling Parties v3.2.15
[16:14:20] [Server thread/INFO]: [Parties] Initializing Parties v3.2.15
[16:14:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: parties [3.2.15]
[16:14:22] [Server thread/INFO]: [Parties] Hooked into PlaceholderAPI
[16:14:22] [Server thread/INFO]: [Parties] Hooked into Skript
[16:14:22] [Server thread/INFO]: [Parties] Parties v3.2.15 enabled
[16:14:22] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.0.4-SNAPSHOT
[16:14:22] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[16:14:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_19_R3! Trying to find NMS support
[16:14:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[16:14:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[16:14:23] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.13.1
[16:14:23] [Server thread/INFO]: [NBTAPI] Checking bindings...
[16:14:23] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[16:14:23] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[16:14:23] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[16:14:23] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[16:14:23] [Server thread/INFO]: [MBedwars] Enabling MBedwars v5.4.11
[16:14:23] [Server thread/INFO]: [MBedwars] (Hook) Hooked into plugin "ViaVersion"
[16:14:23] [Server thread/INFO]: [MBedwars] (Hook) Hooked into plugin "Vault"
[16:14:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mbedwars [5.4.11]
[16:14:23] [Server thread/INFO]: [MBedwars] (Hook) Hooked into plugin "PlaceholderAPI"
[16:14:23] [Server thread/INFO]: [MBedwars] (Hook) Hooked into plugin "ProtocolLib"
[16:14:23] [Server thread/INFO]: [MBedwars] (Hook) Hooked into plugin "Parties"
[16:14:23] [Server thread/INFO]: [MBedwars] (Hook) Loaded internal component "RegionEdit"
[16:14:24] [Server thread/INFO]: [MBedwars] (Storage-Local) Successfully established a connection with the storage
[16:14:24] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[16:14:24] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[16:14:24] [Server thread/INFO]: [Essentials] No kits found to migrate.
[16:14:25] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[16:14:25] [Server thread/WARN]: [Essentials] No aliases found in custom_items.yml.
[16:14:25] [Server thread/INFO]: [Essentials] Using locale ru
[16:14:25] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[16:14:25] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[16:14:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[16:14:25] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[16:14:25] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3479)
[16:14:25] [Server thread/INFO]: [Citizens] Loading external libraries
[16:14:25] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[16:14:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[16:14:25] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[16:14:25] [Server thread/INFO]: [SCore] Enabling SCore v5.24.8.13
[16:14:25] [Server thread/INFO]: ================ SCore ================
[16:14:25] [Server thread/INFO]: SCore is running on Paper or fork
[16:14:25] [Server thread/INFO]: SCore Version of the server git-Paper-550 (MC: 1.19.4) !
[16:14:25] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.24.8.13) Load After
[16:14:25] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[16:14:25] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.8+33cdb4a)  Load Before
[16:14:25] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[16:14:25] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  Load Before
[16:14:25] [Server thread/INFO]: SCore ProtocolLib hooked !
[16:14:25] [Server thread/INFO]: SCore Locale setup: EN
[16:14:25] [Server thread/INFO]: SCore NBTAPI hooked !  (2.13.1)  Load Before
[16:14:25] [Server thread/INFO]: SCore HeadDB hooked !  (5.0.0-rc.10) Load After
[16:14:25] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.11)  Load Before
[16:14:25] [Server thread/INFO]: SCore TAB hooked !  (4.1.7) Load After
[16:14:25] [Server thread/INFO]: SCore WorldEdit hooked !  (7.2.14+6360-094b734)  Load Before
[16:14:25] [Server thread/INFO]: SCore Language of the editor setup on EN
[16:14:25] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[16:14:25] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[16:14:25] [Server thread/INFO]: SCore Connection to the db...
[16:14:25] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[16:14:25] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[16:14:25] [Server thread/INFO]: SCore Creating table Commands if not exists...
[16:14:25] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[16:14:25] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[16:14:25] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[16:14:25] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[16:14:25] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[16:14:26] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[16:14:26] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[16:14:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[16:14:26] [Server thread/INFO]: ================ SCore ================
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Enabling AlonsoLevels v2.3.2-BETA
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Max health Attribute check found. Using it..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Inventory title with support for more than 32 characters. Skipping..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Hex colors are available! Ready for RGB..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Old constructor for HoverEvent found! Using it..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] New sendTitle method found! Using it..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] New setUnbreakable method found! Using it..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] New isUnbreakable method found! Using it..
[16:14:26] [Server thread/INFO]:     _   _                  _                _     Running v2.3.2-BETA (v1_19)
[16:14:26] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___| |   _____ _____| |___ Server Paper vgit-Paper-550 (MC: 1.19.4)
[16:14:26] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ |__/ -_) V / -_) (_-< Discord for support: https://alonsoaliaga.com/discord
[16:14:26] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/____\___|\_/\___|_/__/ Thanks for purchasing my plugin ❤!
[16:14:26] [Server thread/INFO]:                  Developed by AlonsoAliaga
[16:14:26] [Server thread/INFO]: 
[16:14:26] [Server thread/INFO]: ==============================================================================================
[16:14:26] [Server thread/INFO]: [AlonsoLevels] You are using a Paper fork (Paper), plugin should work fine!
[16:14:26] [Server thread/INFO]: [AlonsoLevels] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[16:14:26] [Server thread/INFO]: ==============================================================================================
[16:14:26] [Server thread/INFO]: 
[16:14:26] [Server thread/INFO]: [AlonsoLevels] BungeeCord action bar available. Hooking..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] ProtocolLib found! Checking..
[16:14:26] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[16:14:26] [Server thread/INFO]: [AlonsoLevels] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] [SQLite] Attempting to create 'alonsolevels' table..
[16:14:26] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsolevels.db'!
[16:14:26] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.41.2
[16:14:26] [Server thread/INFO]: [SQLite] Successfully connected to database!
[16:14:26] [Server thread/INFO]: [AlonsoLevels] [SQLite] Table 'alonsolevels' has been created if didn't exist.
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Database found! Everything is working as expected.
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Old ItemStack constructor is available!
[16:14:26] [Server thread/INFO]: [AlonsoLevels] SkullMeta#setOwningPlayer method is available for heads.
[16:14:26] [Server thread/INFO]: [AlonsoLevels] SkullMeta#setOwner method is available for heads.
[16:14:26] [Server thread/INFO]: [AlonsoLevels] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] New setUnbreakable method found! Using it..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] New setOwningPlayer method is available!
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Old Bukkit#getOfflinePlayer(String name) method is available!
[16:14:26] [Server thread/INFO]: [AlonsoLevels] New isUnbreakable method found! Using it..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Server name has been selected as 'Lobby'
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Config files are (re)loading.. Timestamp: Negative | Negative
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Formula for experience is not enabled. Attempting to load data from levels.yml file..
[16:14:26] [Server thread/INFO]: [AlonsoLevels] '1309' value is: -1
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Successfully loaded 100 levels!
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Loaded 56 normal rewards in 3 pages.
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Loaded 3 veteran rewards.
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Loaded 8 normal multipliers.
[16:14:26] [Server thread/INFO]: [AlonsoLevels] Loaded 5 veteran multipliers.
[16:14:26] [Server thread/INFO]: [AlonsoLevels] PlaceholderAPI found! Hooking..
[16:14:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsolevels [2.3.2-BETA]
[16:14:26] [Server thread/INFO]: [AlonsoLevels] VaultMultiplier wasn't found! Skipping..
[16:14:26] [Server thread/INFO]: [CoreQuests] Enabling CoreQuests v2.5.0-SNAPSHOT*
[16:14:26] [Server thread/INFO]: ==============================================
[16:14:26] [Server thread/INFO]: 
[16:14:26] [Server thread/INFO]:      Core-Quest
[16:14:26] [Server thread/INFO]: 
[16:14:26] [Server thread/INFO]: Version: 2.5.0-SNAPSHOT
[16:14:26] [Server thread/INFO]: 
[16:14:26] [Server thread/INFO]: ==============================================
[16:14:26] [Server thread/INFO]: [CoreQuests] Using LiteStorge for data storage!
[16:14:26] [Server thread/WARN]: [com.zaxxer.hikari.HikariConfig] CoreQuests by m_iq - SqLiteConnection Connection Pool - using dataSourceClassName and ignoring jdbcUrl.
[16:14:26] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] CoreQuests by m_iq - SqLiteConnection Connection Pool - Starting...
[16:14:26] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] CoreQuests by m_iq - SqLiteConnection Connection Pool - Start completed.
[16:14:26] [Server thread/INFO]: [CoreQuests] MySQL Connection has been established!
[16:14:26] [Server thread/WARN]: java.sql.BatchUpdateException: batch entry 0: [SQLITE_CORRUPT] The database disk image is malformed (database disk image is malformed)
[16:14:26] [Server thread/WARN]:     at org.sqlite.jdbc3.JDBC3Statement.executeLargeBatch(JDBC3Statement.java:235)
[16:14:26] [Server thread/WARN]:     at org.sqlite.jdbc3.JDBC3Statement.executeBatch(JDBC3Statement.java:215)
[16:14:26] [Server thread/WARN]:     at CoreQuests.jar//com.zaxxer.hikari.pool.ProxyStatement.executeBatch(ProxyStatement.java:127)
[16:14:26] [Server thread/WARN]:     at CoreQuests.jar//com.zaxxer.hikari.pool.HikariProxyStatement.executeBatch(HikariProxyStatement.java)
[16:14:26] [Server thread/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.lambda$initTables$2(LiteStorge.java:169)
[16:14:26] [Server thread/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.requestConnection(LiteStorge.java:157)
[16:14:26] [Server thread/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.initTables(LiteStorge.java:164)
[16:14:26] [Server thread/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.connect(LiteStorge.java:59)
[16:14:26] [Server thread/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.Storage.connect(Storage.java:54)
[16:14:26] [Server thread/WARN]:     at CoreQuests.jar//me.muntder.corequests.CoreQuests.onEnable(CoreQuests.java:56)
[16:14:26] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[16:14:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[16:14:26] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[16:14:26] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[16:14:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:563)
[16:14:26] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:474)
[16:14:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:638)
[16:14:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[16:14:26] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[16:14:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1104)
[16:14:26] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[16:14:26] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[16:14:26] [Server thread/WARN]: Caused by: org.sqlite.SQLiteException: [SQLITE_CORRUPT] The database disk image is malformed (database disk image is malformed)
[16:14:26] [Server thread/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1179)
[16:14:26] [Server thread/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1190)
[16:14:26] [Server thread/WARN]:     at org.sqlite.core.DB.throwex(DB.java:1150)
[16:14:26] [Server thread/WARN]:     at org.sqlite.core.NativeDB.prepare_utf8(Native Method)
[16:14:26] [Server thread/WARN]:     at org.sqlite.core.NativeDB.prepare(NativeDB.java:126)
[16:14:26] [Server thread/WARN]:     at org.sqlite.core.DB.prepare(DB.java:264)
[16:14:26] [Server thread/WARN]:     at org.sqlite.jdbc3.JDBC3Statement.executeLargeBatch(JDBC3Statement.java:231)
[16:14:26] [Server thread/WARN]:     ... 21 more
[16:14:26] [Server thread/INFO]: [CoreQuests] [STDOUT] quests are loading..
[16:14:26] [Server thread/WARN]: Nag author(s): '[m_iq]' of 'CoreQuests v2.5.0-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:14:26] [Server thread/INFO]: [CoreQuests] [STDOUT] Quest Bed Destroyer.yml is loaded
[16:14:26] [Server thread/INFO]: [CoreQuests] [STDOUT] Quest Victory Seeker.yml is loaded
[16:14:26] [Server thread/INFO]: [CoreQuests] [STDOUT] Quest Ultimate Challenger.yml is loaded
[16:14:26] [Server thread/INFO]: [CoreQuests] [STDOUT] Quest Bed Destroyer2x8.yml is loaded
[16:14:26] [Server thread/INFO]: [CoreQuests] [STDOUT] Quest BedWars Enthusiast.yml is loaded
[16:14:26] [Server thread/INFO]: [CoreQuests] [STDOUT] Quest Resource Collector.yml is loaded
[16:14:26] [Server thread/INFO]: [CoreQuests] Successfully hooked up with  MBedwars for handling Quests.
[16:14:26] [Server thread/INFO]: [CoreQuests] [STDOUT] [CoreQuests] now you have Registered CoreQuest with MbedWars have fun!
[16:14:26] [Server thread/INFO]: [MBedWarsKits] Enabling MBedWarsKits v1.3
[16:14:26] [Server thread/INFO]: [MBedWarsKits]   ███╗   ███╗██████╗ ███████╗██████╗ ██╗    ██╗ █████╗ ██████╗ ███████╗██╗  ██╗██╗████████╗███████╗
[16:14:26] [Server thread/INFO]: [MBedWarsKits]   ████╗ ████║██╔══██╗██╔════╝██╔══██╗██║    ██║██╔══██╗██╔══██╗██╔════╝██║ ██╔╝██║╚══██╔══╝██╔════╝
[16:14:26] [Server thread/INFO]: [MBedWarsKits]   ██╔████╔██║██████╔╝█████╗  ██║  ██║██║ █╗ ██║███████║██████╔╝███████╗█████╔╝ ██║   ██║   ███████╗
[16:14:26] [Server thread/INFO]: [MBedWarsKits]   ██║╚██╔╝██║██╔══██╗██╔══╝  ██║  ██║██║███╗██║██╔══██║██╔══██╗╚════██║██╔═██╗ ██║   ██║   ╚════██║
[16:14:26] [Server thread/INFO]: [MBedWarsKits]   ██║ ╚═╝ ██║██████╔╝███████╗██████╔╝╚███╔███╔╝██║  ██║██║  ██║███████║██║  ██╗██║   ██║   ███████║
[16:14:26] [Server thread/INFO]: [MBedWarsKits]   ╚═╝     ╚═╝╚═════╝ ╚══════╝╚═════╝  ╚══╝╚══╝ ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═╝   ╚═╝   ╚══════╝
[16:14:26] [Server thread/INFO]: [MBedWarsKits]   
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Developed by zS0bye
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Current version v1.3 ● Running on Paper
[16:14:26] [Server thread/INFO]: [MBedWarsKits]   
[16:14:26] [Server thread/INFO]: [MBedWarsKits] 
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Uploading resources..
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Resources uploaded successfully!
[16:14:26] [Server thread/INFO]: [MBedWarsKits] 
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Connecting to database..
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Connection successful!
[16:14:26] [Server thread/INFO]: [MBedWarsKits] 
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Registering commands..
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Commands registered successfully!
[16:14:26] [Server thread/INFO]: [MBedWarsKits] 
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Registering events..
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Events registered successfully!
[16:14:26] [Server thread/INFO]: [MBedWarsKits] 
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Loading Hooks..
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ • Registered PlaceholderAPI hook.
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ • Registered Vault hook.
[16:14:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: MBedWarsKits [1.3]
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ Hooks loaded successfully!
[16:14:26] [Server thread/INFO]: [MBedWarsKits] 
[16:14:26] [Server thread/INFO]: [MBedWarsKits] ┃ The Plug-in was started successfully ;)
[16:14:26] [Server thread/INFO]: [MBedWarsKits] 
[16:14:26] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[16:14:26] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[16:14:26] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[16:14:26] [Server thread/INFO]: | Command file(s) found : 2
[16:14:26] [Server thread/INFO]: | Config : Ready.
[16:14:26] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[16:14:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[16:14:26] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[16:14:26] [Server thread/INFO]: | Custom commands loaded : 46
[16:14:26] [Server thread/INFO]: | You're running the latest version of MyCommand.
[16:14:26] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[16:14:26] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[16:14:26] [Server thread/INFO]: [AnimaBossBar] Enabling AnimaBossBar v4.7*
[16:14:26] [Server thread/INFO]: [AnimaBossBar] [STDOUT] ------------------------------------------------------------------
[16:14:26] [Server thread/WARN]: Nag author(s): '[Dutchwilco]' of 'AnimaBossBar v4.7' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:14:26] [Server thread/INFO]: [AnimaBossBar] [STDOUT]                                                                   
[16:14:26] [Server thread/INFO]: [AnimaBossBar] [STDOUT]       This BossBar Plugin is made by: Dutchwilco Version 4.7      
[16:14:26] [Server thread/INFO]: [AnimaBossBar] [STDOUT]                                                                   
[16:14:26] [Server thread/INFO]: [AnimaBossBar] [STDOUT] ------------------------------------------------------------------
[16:14:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: player [1.0]
[16:14:26] [Server thread/INFO]: [AutoPluginLoader] Enabling AutoPluginLoader v1.3.1
[16:14:26] [Server thread/INFO]: [AutoPluginLoader] Plugin has successfully loaded. (Took 1ms)
[16:14:26] [Server thread/INFO]: [TAB] Enabling TAB v4.1.7
[16:14:26] [Server thread/INFO]: [TAB] Loaded NMS hook in 86ms
[16:14:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.7]
[16:14:27] [Server thread/INFO]: [TAB] Enabled in 212ms
[16:14:27] [Server thread/INFO]: [PacketListenerApi] Enabling PacketListenerApi v3.9.10-SNAPSHOT
[16:14:27] [Server thread/INFO]: [PacketListenerAPI] Adding channels for online players...
[16:14:27] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.12.10
[16:14:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajpk [2.12.10]
[16:14:27] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been enabled!
[16:14:27] [Server thread/INFO]: [FireBallKnockback] Enabling FireBallKnockback v2.1.0
[16:14:27] [Server thread/INFO]: [FireBallKnockback] ------------------------------
[16:14:27] [Server thread/INFO]: [FireBallKnockback] FireBallKnockback For MBedwars
[16:14:27] [Server thread/INFO]: [FireBallKnockback] By: [MetallicGoat]
[16:14:27] [Server thread/INFO]: [FireBallKnockback] Version: 2.1.0
[16:14:27] [Server thread/INFO]: [FireBallKnockback] ------------------------------
[16:14:27] [Server thread/INFO]: [FireBallKnockback] MBedwars v5 detected
[16:14:27] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-bCUSTOM
[16:14:27] [Server thread/INFO]: [AuthMe] Connection arguments loaded, Hikari ConnectionPool ready!
[16:14:27] [Server thread/ERROR]: [AuthMe] [STDERR] [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Starting...
[16:14:27] [Server thread/WARN]: Nag author(s): '[sgdc3, games647, Hex3l, krusic22]' of 'AuthMe v5.6.0-bCUSTOM' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:14:27] [Server thread/ERROR]: [AuthMe] [STDERR] [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Start completed.
[16:14:27] [Server thread/INFO]: [AuthMe] MySQL setup finished
[16:14:27] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[16:14:27] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[16:14:27] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
[16:14:27] [Server thread/INFO]: [AuthMe] Essentials spawn file not found: '/server/plugins/Essentials/spawn.yml'
[16:14:27] [Server thread/WARN]: [AuthMe] Error during backup (using Windows = false): [IOException]: Cannot run program "mysqldump": error=2, No such file or directory
[16:14:27] [Server thread/WARN]: [AuthMe] Error while performing a backup! Cause of the backup: START
[16:14:27] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0 build n.CUSTOM successfully enabled!
[16:14:27] [Server thread/INFO]: [Images] Enabling Images v2.5.0
[16:14:27] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[16:14:27] [Server thread/INFO]: [ACubelets] Enabling ACubelets v2.4.7
[16:14:28] [Server thread/INFO]: 
[16:14:28] [Server thread/INFO]:   Loading language:
[16:14:28] [Server thread/INFO]:     'ru' loaded!
[16:14:28] [Server thread/INFO]:   
[16:14:28] [Server thread/INFO]:   Loading database:
[16:14:28] [Server thread/INFO]:     SQLite has been enabled!
[16:14:28] [Server thread/INFO]: 
[16:14:28] [Server thread/INFO]:   Loading machines:
[16:14:28] [Server thread/INFO]:     2 Cubelet Machines loaded!
[16:14:28] [Server thread/INFO]: 
[16:14:28] [Server thread/INFO]:   Loading cubelets:
[16:14:28] [Server thread/INFO]:     'ironcase' ► 6 rarities, 8 rewards
[16:14:28] [Server thread/INFO]:     'goldcase' ► 8 rarities, 8 rewards
[16:14:28] [Server thread/INFO]: 
[16:14:28] [Server thread/INFO]:   Loading crafts:
[16:14:28] [Server thread/INFO]:     No Cubelet crafts has been loaded!
[16:14:28] [Server thread/INFO]: 
[16:14:28] [Server thread/INFO]:   ACubelets Enabled!
[16:14:28] [Server thread/INFO]:     Version: 2.4.7
[16:14:28] [Server thread/INFO]:     Author: DavidML16
[16:14:28] [Server thread/INFO]: 
[16:14:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: acubelets [1.0.0]
[16:14:28] [Server thread/INFO]: [ExtraSpecialItems] Enabling ExtraSpecialItems v3.0.2
[16:14:28] [Server thread/INFO]: [ExtraSpecialItems] ------------------------------
[16:14:28] [Server thread/INFO]: [ExtraSpecialItems] ExtraSpecialItems For MBedwars
[16:14:28] [Server thread/INFO]: [ExtraSpecialItems] By: [MetallicGoat]
[16:14:28] [Server thread/INFO]: [ExtraSpecialItems] Version: 3.0.2
[16:14:28] [Server thread/INFO]: [ExtraSpecialItems] ------------------------------
[16:14:28] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[16:14:28] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[16:14:28] [Server thread/INFO]: [DeluxeMenus] 43 GUI menus loaded!
[16:14:28] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[16:14:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[16:14:28] [Server thread/INFO]: [Gen-Splitter] Enabling Gen-Splitter v4.0.0
[16:14:28] [Server thread/INFO]: [Gen-Splitter] ------------------------------
[16:14:28] [Server thread/INFO]: [Gen-Splitter] Gen-Splitter For MBedwars
[16:14:28] [Server thread/INFO]: [Gen-Splitter] By: [MetallicGoat]
[16:14:28] [Server thread/INFO]: [Gen-Splitter] Version: 4.0.0
[16:14:28] [Server thread/INFO]: [Gen-Splitter] ------------------------------
[16:14:28] [Server thread/INFO]: [PowerCamera] Enabling PowerCamera v0.6
[16:14:28] [Server thread/INFO]: [PowerCamera] Enabled PowerCamera v0.6
[16:14:28] [Server thread/INFO]: [PowerCamera] If you'd like to donate, please visit https://ko-fi.com/svenar or https://patreon.com/svenar
[16:14:28] [Server thread/INFO]: [spark] Enabling spark v1.10.71
[16:14:28] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[16:14:28] [Server thread/INFO]: [spark] Starting background profiler...
[16:14:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.71]
[16:14:28] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[16:14:28] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[16:14:29] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[16:14:29] [Server thread/INFO]: [ajLeaderboards] Loaded 15 boards
[16:14:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[16:14:29] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[16:14:29] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[16:14:29] [Server thread/INFO]: [NDailyRewards] Enabling NDailyRewards v2.3.6
[16:14:29] [Server thread/INFO]: [INFO] NDailyRewards: Hooked with: Citizens
[16:14:29] [Server thread/INFO]: [INFO] NDailyRewards: Loaded 7 daily rewards!
[16:14:29] [Server thread/INFO]: [INFO] NDailyRewards: Storage type: SQLite
[16:14:29] [Server thread/INFO]: [INFO] NDailyRewards: An update is available: 3.0.0
[16:14:29] [Server thread/INFO]: [INFO] NDailyRewards: Please update to the latest version to get bug fixes, security patches and new features!
[16:14:29] [Server thread/INFO]: [INFO] NDailyRewards: Download here: https://modrinth.com/plugin/ndailyrewards/version/3.0.0
[16:14:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ndr [2.3.6]
[16:14:29] [Server thread/INFO]: [INFO] NDailyRewards: Loaded PlaceholderAPI hook!
[16:14:29] [Server thread/INFO]: [CombatPlus] Enabling CombatPlus v1.7.4
[16:14:29] [Server thread/INFO]:  
[16:14:29] [Server thread/INFO]: Combat Plus v1.7.4
[16:14:29] [Server thread/INFO]:  
[16:14:29] [Server thread/INFO]:   Author: Nik
[16:14:29] [Server thread/INFO]:  
[16:14:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatplus [1.7.4]
[16:14:29] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[16:14:29] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1374), impl for Spigot v1.3.0-SNAPSHOT (build 1803-REL) 
[16:14:30] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.3 
[16:14:30] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[16:14:30] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[16:14:30] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[16:14:30] [Server thread/INFO]: +> [Denizen]  
[16:14:30] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[16:14:30] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[16:14:30] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[16:14:30] [Server thread/INFO]: +> [Denizen] version: 1.3.0-SNAPSHOT (build 1803-REL) 
[16:14:30] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[16:14:30] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[16:14:31] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[16:14:31] [Server thread/INFO]: +> [Denizen] Loaded 152 core commands and 30 core object types, at 1787ms from start. 
[16:14:31] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
[16:14:31] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[16:14:31] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 2ms, processing 3ms. 
[16:14:31] [Server thread/INFO]: +> [Denizen] Final full init took 1817ms. 
[16:14:31] [Server thread/INFO]: [HeadDB] Enabling HeadDB v5.0.0-rc.10
[16:14:31] [Server thread/INFO]: [HeadDB] Loading HeadDB - 5.0.0-rc.10
[16:14:31] [Server thread/INFO]: [HeadDB] Loaded 1 languages!
[16:14:31] [Server thread/INFO]: [HeadDB] Done!
[16:14:31] [Server thread/INFO]: [MBedwars-Cosmetics] Enabling MBedwars-Cosmetics v1.3.7
[16:14:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mbedwars-cosmetics [1.3.7]
[16:14:31] [pool-382-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[16:14:31] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.24.8.13
[16:14:31] [Server thread/INFO]: ================ ExecutableItems ================
[16:14:31] [helper-scheduler-1/WARN]: [HeadDB] There is a new update available for HeadDB on spigot!
[16:14:31] [helper-scheduler-1/WARN]: [HeadDB] Download: https://www.spigotmc.org/resources/84967
[16:14:31] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[16:14:31] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[16:14:34] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 18
[16:14:34] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[16:14:34] [Server thread/INFO]: ================ ExecutableItems ================
[16:14:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[16:14:34] [Server thread/INFO]: [ChatManager] Enabling ChatManager v3.7.7
[16:14:34] [Server thread/INFO]: [ChatManager] Hooked into: PlaceholderAPI v2.11.6
[16:14:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatmanager [3.7.7]
[16:14:34] [Server thread/INFO]: [ChatManager] Hooked into: Essentials v2.20.1
[16:14:34] [Server thread/INFO]: [ChatManager] Hooked into: Vault v1.7.3-b131
[16:14:34] [Server thread/INFO]: [ChatManager] Hooked into: LuckPerms v5.4.131
[16:14:34] [Server thread/INFO]: [ChatManager] Plugin is up to date - v3.7.7
[16:14:34] [Server thread/INFO]: [ChatManager] Starting Metrics.
[16:14:34] [Server thread/INFO]: =========================
[16:14:34] [Server thread/INFO]: Chat Manager
[16:14:34] [Server thread/INFO]: Version 3.7.7
[16:14:34] [Server thread/INFO]: Author: H1DD3NxN1NJA
[16:14:34] [Server thread/INFO]: =========================
[16:14:34] [Server thread/INFO]: [BlockEffects] Enabling BlockEffects v1.2.5
[16:14:34] [Server thread/INFO]: [BlockEffects] Preparing the configuration files.
[16:14:34] [Server thread/INFO]: [BlockEffects] Registering commands & listeners.
[16:14:34] [Server thread/INFO]: [BlockEffects] BlockEffects v1.2.5 has been enabled.
[16:14:34] [Server thread/INFO]: [PrizeCommands] Enabling PrizeCommands v4.0.1
[16:14:34] [Server thread/INFO]: [PrizeCommands] ------------------------------
[16:14:34] [Server thread/INFO]: [PrizeCommands] PrizeCommands For MBedwars
[16:14:34] [Server thread/INFO]: [PrizeCommands] By: [MetallicGoat]
[16:14:34] [Server thread/INFO]: [PrizeCommands] Version: 4.0.1
[16:14:34] [Server thread/INFO]: [PrizeCommands] ------------------------------
[16:14:34] [Server thread/INFO]: [MBedwarsBetterTeamSelectorAddon] Enabling MBedwarsBetterTeamSelectorAddon v1.1.0-HOTFIX
[16:14:34] [Server thread/INFO]: [MBedwarsBetterTeamSelectorAddon] [ACF] Enabled Asynchronous Tab Completion Support!
[16:14:34] [Server thread/INFO]: [MBLeaderboardsAddon] Enabling MBLeaderboardsAddon v1.1.1
[16:14:34] [Server thread/INFO]: [MBLeaderboardsAddon] ------------------------------
[16:14:34] [Server thread/INFO]: [MBLeaderboardsAddon] MBLeaderboardsAddon For MBedwars
[16:14:34] [Server thread/INFO]: [MBLeaderboardsAddon] By: [MetallicGoat]
[16:14:34] [Server thread/INFO]: [MBLeaderboardsAddon] Version: 1.1.1
[16:14:34] [Server thread/INFO]: [MBLeaderboardsAddon] ------------------------------
[16:14:34] [Server thread/INFO]: [MBedwarsTweaks] Enabling MBedwarsTweaks v4.2.1
[16:14:34] [Server thread/INFO]: [MBedwarsTweaks] ------------------------------
[16:14:34] [Server thread/INFO]: [MBedwarsTweaks] MBedwarsTweaks For MBedwars
[16:14:34] [Server thread/INFO]: [MBedwarsTweaks] By: [MetallicGoat]
[16:14:34] [Server thread/INFO]: [MBedwarsTweaks] Version: 4.2.1
[16:14:34] [Server thread/INFO]: [MBedwarsTweaks] ------------------------------
[16:14:34] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[16:14:34] [Server thread/INFO]: Starting GS4 status listener
[16:14:34] [Server thread/INFO]: Thread Query Listener started
[16:14:34] [Query Listener #1/INFO]: Query running on &
[16:14:34] [Server thread/INFO]: Running delayed init tasks
[16:14:34] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[16:14:34] [Craft Scheduler Thread - 11 - Essentials/INFO]: [Essentials] Получение информации о версии...
[16:14:34] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[16:14:34] [Craft Scheduler Thread - 14 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[16:14:34] [Craft Scheduler Thread - 14 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[16:14:34] [Craft Scheduler Thread - 14 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[16:14:34] [Craft Scheduler Thread - 14 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins/AuthMe/GeoLite2-Country.mmdb (No such file or directory)
[16:14:35] [Craft Scheduler Thread - 20 - Vault/INFO]: [Vault] Checking for Updates ... 
[16:14:35] [Craft Scheduler Thread - 18 - AlonsoLevels/INFO]: [AlonsoLevels] Checking for updates...
[16:14:35] [Craft Scheduler Thread - 18 - AlonsoLevels/INFO]: [AlonsoLevels] Plugin up-to-date! You have the latest version!
[16:14:35] [Server thread/INFO]: [Skript] Loading variables...
[16:14:35] [Server thread/INFO]: [Skript] Loaded 4 variables in 0.0 seconds
[16:14:35] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loaded 41 holograms!
[16:14:35] [Craft Scheduler Thread - 15 - AnimaBossBar/INFO]: AnimaBossBar is up to date!
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Standalone Mode |
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     Version: 15.4.2
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     Commit: 210a436
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[16:14:35] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[16:14:35] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[16:14:35] [Server thread/INFO]: [Skript]     No scripts were found, maybe you should write some ;)
[16:14:35] [Server thread/INFO]: [Skript] Finished loading.
[16:14:35] [Server thread/INFO]: [Parties] Hooked into LuckPerms
[16:14:35] [Server thread/INFO]: [Parties] Hooked into Essentials
[16:14:35] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[16:14:35] [Craft Scheduler Thread - 9 - CombatPlus/INFO]: [Combat+]: No updates are found, You're running the Latest Version <3
[16:14:35] [Craft Scheduler Thread - 20 - Vault/INFO]: [Vault] No new version available
[16:14:35] [Craft Scheduler Thread - 13 - PacketListenerApi/INFO]: [PacketListenerApi] Plugin is up-to-date
[16:14:35] [Craft Scheduler Thread - 12 - ajParkour/INFO]: [ajParkour] You are up to date! (2.12.10)
[16:14:36] [Server thread/INFO]: [Citizens] Loaded 17 NPCs.
[16:14:36] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[16:14:36] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[16:14:36] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/08/23 16:14:29 
[16:14:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[16:14:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[16:14:36] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion player. Identifier is already in use.
[16:14:36] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion player due to an unknown issue.
[16:14:36] [Server thread/INFO]: 2 placeholder hook(s) registered!
[16:14:36] [Server thread/INFO]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[16:14:36] [Server thread/INFO]: Done (51.853s)! For help, type "help"
[16:14:36] [Server thread/INFO]: Timings Reset
[16:14:37] [Server thread/WARN]: [MBedwars] Failed to parse NBT of "player_head{SkullOwner:%player_name%}": Expected value at position 12: ...kullOwner:<--[HERE]
[16:14:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: MBLeaderboards [1.1.1]
[16:14:37] [Server thread/INFO]: [MBedwarsTweaks] I noticed you are using my Fireball jumping addon. As of 5.0.13, you do not need it anymore! Fireball jumping is now built into core MBedwars. Features such as throw cooldown and throw effects have been added to this addon (MBedwarsTweaks). - MetallicGoat
[16:14:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tweaks [4.2.1]
[16:14:37] [Server thread/INFO]: [MBedwarsTweaks] Configs loaded in 83ms.
[16:14:39] [Craft Scheduler Thread - 11 - Images/INFO]: [Images] Loaded 15 images...
[16:15:04] [Server thread/INFO]: [AlonsoLevels] Leaderboard is disabled! Skipping..
[16:19:40] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5555ms or 111 ticks behind
[16:31:28] [User Authenticator #0/INFO]: UUID of player rqqrq is e1540d91-48f2-3224-8371-490daf58395d
[16:31:28] [Netty Epoll Server IO #0/WARN]: [ViaVersion] (1.17->1.16.4) Increased world height is NOT SUPPORTED for 1.16 players and below. They will see a void below y 0 and above 256. You can enable the `bedrock-at-y-0` config option to replace the air with a bedrock layer.
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]: org.sqlite.SQLiteException: [SQLITE_CORRUPT] The database disk image is malformed (database disk image is malformed)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1179)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1190)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.DB.throwex(DB.java:1150)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.NativeDB.prepare_utf8(Native Method)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.NativeDB.prepare(NativeDB.java:126)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.DB.prepare(DB.java:264)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.CorePreparedStatement.<init>(CorePreparedStatement.java:46)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.<init>(JDBC3PreparedStatement.java:32)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc4.JDBC4PreparedStatement.<init>(JDBC4PreparedStatement.java:25)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc4.JDBC4Connection.prepareStatement(JDBC4Connection.java:34)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc3.JDBC3Connection.prepareStatement(JDBC3Connection.java:226)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc3.JDBC3Connection.prepareStatement(JDBC3Connection.java:206)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//com.zaxxer.hikari.pool.ProxyConnection.prepareStatement(ProxyConnection.java:337)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//com.zaxxer.hikari.pool.HikariProxyConnection.prepareStatement(HikariProxyConnection.java)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.lambda$fetchUserNow$0(LiteStorge.java:77)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.requestConnection(LiteStorge.java:157)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.fetchUserNow(LiteStorge.java:76)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.Storage.lambda$loadPlayer$0(Storage.java:58)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinTask.doExec(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinPool.scan(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinPool.runWorker(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinWorkerThread.run(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]: org.sqlite.SQLiteException: [SQLITE_CORRUPT] The database disk image is malformed (database disk image is malformed)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1179)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.DB.newSQLException(DB.java:1190)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.DB.throwex(DB.java:1150)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.NativeDB.prepare_utf8(Native Method)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.NativeDB.prepare(NativeDB.java:126)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.DB.prepare(DB.java:264)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.core.CorePreparedStatement.<init>(CorePreparedStatement.java:46)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc3.JDBC3PreparedStatement.<init>(JDBC3PreparedStatement.java:32)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc4.JDBC4PreparedStatement.<init>(JDBC4PreparedStatement.java:25)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc4.JDBC4Connection.prepareStatement(JDBC4Connection.java:34)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc3.JDBC3Connection.prepareStatement(JDBC3Connection.java:226)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at org.sqlite.jdbc3.JDBC3Connection.prepareStatement(JDBC3Connection.java:206)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//com.zaxxer.hikari.pool.ProxyConnection.prepareStatement(ProxyConnection.java:337)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//com.zaxxer.hikari.pool.HikariProxyConnection.prepareStatement(HikariProxyConnection.java)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.lambda$saveUserNow$1(LiteStorge.java:126)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.requestConnection(LiteStorge.java:157)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.impl.LiteStorge.saveUserNow(LiteStorge.java:125)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.internal.storage.Storage.saveUser(Storage.java:63)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.user.UserManager.save(UserManager.java:121)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.user.User.save(User.java:68)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at CoreQuests.jar//me.muntder.corequests.user.UserManager.lambda$get$1(UserManager.java:93)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.CompletableFuture.postComplete(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinTask.doExec(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinPool.scan(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinPool.runWorker(Unknown Source)
[16:31:28] [ForkJoinPool.commonPool-worker-3/WARN]:     at java.base/java.util.concurrent.ForkJoinWorkerThread.run(Unknown Source)
[16:31:28] [Server thread/WARN]: java.lang.ClassNotFoundException: net.minecraft.server.v1_19_R3.PacketPlayOutTitle
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Unknown Source)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.Reflections.getMSClass(Reflections.java:21)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.TitleAPI.sendTitlePacket(TitleAPI.java:50)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.TitleAPI.sendTitle(TitleAPI.java:18)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.Main.onJoin(Main.java:86)
[16:31:28] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor443.execute(Unknown Source)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[16:31:28] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[16:31:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[16:31:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:332)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[16:31:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:595)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1576)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[16:31:28] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.getDeclaredClasses()" because the return value of "me.Dutchwilco.AnimaBossBar.api.Reflections.getMSClass(String)" is null
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.TitleAPI.sendTitlePacket(TitleAPI.java:50)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.TitleAPI.sendTitle(TitleAPI.java:18)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.Main.onJoin(Main.java:86)
[16:31:28] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor443.execute(Unknown Source)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[16:31:28] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[16:31:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[16:31:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:332)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[16:31:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:595)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1576)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[16:31:28] [Server thread/WARN]: java.lang.ClassNotFoundException: net.minecraft.server.v1_19_R3.PacketPlayOutTitle
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Unknown Source)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.Reflections.getMSClass(Reflections.java:21)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.TitleAPI.sendTitlePacket(TitleAPI.java:63)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.TitleAPI.sendSubtitle(TitleAPI.java:27)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.Main.onJoin(Main.java:90)
[16:31:28] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor443.execute(Unknown Source)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[16:31:28] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[16:31:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[16:31:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:332)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[16:31:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:595)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1576)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[16:31:28] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.getDeclaredClasses()" because the return value of "me.Dutchwilco.AnimaBossBar.api.Reflections.getMSClass(String)" is null
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.TitleAPI.sendTitlePacket(TitleAPI.java:63)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.api.TitleAPI.sendSubtitle(TitleAPI.java:27)
[16:31:28] [Server thread/WARN]:     at AnimaBossBar-4.7.jar//me.Dutchwilco.AnimaBossBar.Main.onJoin(Main.java:90)
[16:31:28] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor443.execute(Unknown Source)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[16:31:28] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[16:31:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[16:31:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[16:31:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:332)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[16:31:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:595)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1576)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[16:31:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[16:31:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[16:31:28] [Server thread/INFO]: Welcome back rqqrq
[16:31:29] [Server thread/INFO]: rqqrq[/          ip          ] logged in with entity id 4094 at ([world]0.5, 70.0625, 0.5)
[16:31:29] [Server thread/INFO]: [PowerCamera] Playing 'bw' on player: rqqrq
[16:31:41] [Craft Scheduler Thread - 5 - AuthMe/INFO]: [AuthMe] The user rqqrq has 2 accounts:
[16:31:41] [Craft Scheduler Thread - 5 - AuthMe/INFO]: [AuthMe] rqqrq, fireboxed12.
[16:31:41] [Craft Scheduler Thread - 5 - AuthMe/INFO]: [AuthMe] rqqrq logged in 178.122.250.50
[16:31:41] [Server thread/INFO]: Played sound minecraft:music_disc.13 to rqqrq
[16:31:45] [Server thread/INFO]: Showing new title for rqqrq
[16:31:54] [Server thread/INFO]: Stopped all sounds