Paste #102664: Unnamed Denizen Script Paste

Date: 2022/10/26 14:08:44 UTC-07:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


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


[17:05:10] [ServerMain/INFO]: Building unoptimized datafixer
[17:05:11] [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'
[17:05:11] [ServerMain/INFO]: Found new data pack file/bukkit, loading it automatically
[17:05:13] [ServerMain/INFO]: Loaded 7 recipes
[17:05:14] [Server thread/INFO]: Starting minecraft server version 1.19
[17:05:14] [Server thread/INFO]: Loading properties
[17:05:14] [Server thread/INFO]: This server is running Paper version git-Paper-81 (MC: 1.19) (Implementing API version 1.19-R0.1-SNAPSHOT) (Git: 86f87ba)
[17:05:14] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:05:14] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:05:15] [Server thread/INFO]: Default game type: SURVIVAL
[17:05:15] [Server thread/INFO]: Generating keypair
[17:05:15] [Server thread/INFO]: Starting Minecraft server on 158.69.126.100:25578
[17:05:15] [Server thread/INFO]: Using epoll channel type
[17:05:15] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[17:05:15] [Server thread/INFO]: Paper: Using OpenSSL 1.0.x (Linux x86_64) cipher from Velocity.
[17:05:16] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
[17:05:17] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/openjdk/nashorn/nashorn-core/15.2/nashorn-core-15.2.jar
[17:05:17] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[17:05:17] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[17:05:17] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[17:05:17] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[17:05:17] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[17:05:17] [Server thread/INFO]: [CrazyEnchantments] Loading 4 libraries... please wait
[17:05:17] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.7.10/kotlin-stdlib-1.7.10.jar
[17:05:17] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.10/kotlin-stdlib-common-1.7.10.jar
[17:05:17] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[17:05:17] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/apache/commons/commons-text/1.9/commons-text-1.9.jar
[17:05:17] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.jar
[17:05:17] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/com/intellectualsites/informative-annotations/informative-annotations/1.2/informative-annotations-1.2.jar
[17:05:17] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/com/intellectualsites/paster/Paster/1.1.4/Paster-1.1.4.jar
[17:05:17] [Server thread/INFO]: [BeautyQuests] Loading 1 libraries... please wait
[17:05:17] [Server thread/INFO]: [BeautyQuests] Loaded library /home/minecraft/multicraft/servers/server231373/libraries/org/mariadb/jdbc/mariadb-java-client/2.7.5/mariadb-java-client-2.7.5.jar
[17:05:17] [Server thread/INFO]: [PluginConstructorAPI] Loading PluginConstructorAPI v1.0.52
[17:05:17] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[17:05:17] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.0
[17:05:17] [Server thread/INFO]: [SSX-Connector] Loading SSX-Connector v2.2.1
[17:05:17] [Server thread/INFO]: [PL-Hide] Loading PL-Hide v1.5.21
[17:05:17] [Server thread/INFO]: [NoMobGriefing] Loading NoMobGriefing v3.0.3
[17:05:17] [Server thread/INFO]: [EliteBosses] Loading EliteBosses v1.4.7
[17:05:17] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.4.2
[17:05:17] [Server thread/INFO]: [ViaVersion] ViaVersion 4.4.2 is now loaded, injecting!
[17:05:17] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[17:05:17] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[17:05:17] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[17:05:17] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[17:05:17] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[17:05:17] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[17:05:18] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[17:05:18] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[17:05:18] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[17:05:18] [Via-Mappingloader-8/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[17:05:18] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.10.0
[17:05:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[17:05:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[17:05:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[17:05:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'PluginConstructorAPI' to create a bStats instance!
[17:05:18] [Server thread/INFO]: [RampenDrills] Loading RampenDrills v4.5.2-Beta
[17:05:18] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.4.2
[17:05:18] [Server thread/INFO]: [ViaBackwards] Loading translations...
[17:05:18] [Via-Mappingloader-4/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[17:05:18] [Via-Mappingloader-7/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[17:05:18] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[17:05:18] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[17:05:18] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[17:05:18] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[17:05:18] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[17:05:18] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[17:05:18] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[17:05:18] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[17:05:18] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[17:05:18] [Thread-10/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[17:05:18] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[17:05:18] [Server thread/INFO]: [momojs] Loading momojs v1.0.3
[17:05:18] [Server thread/INFO]: [momojs] js engine provider is loaded
[17:05:18] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.46
[17:05:19] [Server thread/INFO]: [Timber] Loading Timber v1.1.0
[17:05:19] [Server thread/INFO]: [FriendsSpigot] Loading FriendsSpigot v1.0.9.7
[17:05:19] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[17:05:19] [Server thread/INFO]: [JSEngine] Loading JSEngine v3.1.1
[17:05:19] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[17:05:19] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b602
[17:05:20] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[17:05:20] [Server thread/INFO]: [ViaRewind] Loading ViaRewind v2.0.2
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Loading LastLoginAPI v1.7.3
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Loading libraries of LastLoginAPI v1.7.3, this may take a while
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jar-relocator
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm-commons
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for gson
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-core
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for geantyref
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for caffeine
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-stringtemplate4
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for ST4
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for antlr-runtime
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-sqlobject
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-api
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-simple
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for HikariCP
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mariadb-java-client
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mysql-connector-java
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for postgresql
[17:05:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for h2
[17:05:20] [Server thread/INFO]: [MythicalRaces] Loading MythicalRaces v2.1.5
[17:05:20] [Server thread/INFO]: [Parties] Loading Parties v3.2.6
[17:05:20] [Server thread/INFO]: [Parties] Loading libraries of Parties v3.2.6, this may take a while
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for jar-relocator
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for asm
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for asm-commons
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for gson
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for jdbi3-core
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for geantyref
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for caffeine
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for jdbi3-stringtemplate4
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for ST4
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for antlr-runtime
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for jdbi3-sqlobject
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for slf4j-api
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for slf4j-simple
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for HikariCP
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for mariadb-java-client
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for mysql-connector-java
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for postgresql
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for h2
[17:05:20] [Server thread/INFO]: [Parties] Verifying checksum for exp4j
[17:05:20] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v14.2.3
[17:05:20] [Server thread/INFO]: [Orebfuscator] Loading Orebfuscator v5.3.1
[17:05:20] [Server thread/INFO]: [TigerReports] Loading TigerReports v5.1.1
[17:05:20] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[17:05:21] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@70ec0929]
[17:05:21] [Server thread/INFO]: [Essentials] Loading Essentials v2.18.2.0
[17:05:21] [Server thread/INFO]: [AdvancedBan] Loading AdvancedBan v2.3.0
[17:05:21] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading EconomyShopGUI-Premium v4.0.0-b.3
[17:05:21] [Server thread/INFO]: [Referral Pro] Loading Referral_Pro v1.18.1
[17:05:21] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.6.3
[17:05:21] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.18.2.0
[17:05:21] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.5-Release
[17:05:21] [Server thread/INFO]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[17:05:21] [Server thread/INFO]: [Vivecraft] Loading Vivecraft-Spigot-Extensions v1.19-1
[17:05:21] [Server thread/INFO]: [MRPremiumAddons] Loading MRPremiumAddons v2.1.5
[17:05:21] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[17:05:21] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.1.4-3aa1b5d2
[17:05:21] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[17:05:21] [Server thread/INFO]: [TabList] Loading TabList v5.6.4
[17:05:21] [Server thread/INFO]: [EssentialsProtect] Loading EssentialsProtect v2.18.2.0
[17:05:21] [Server thread/INFO]: [Prism] Loading Prism v2.1.7-6
[17:05:21] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v20.1
[17:05:21] [Server thread/INFO]: [RealisticSeasons] Loading RealisticSeasons v10.1.2
[17:05:21] [Server thread/INFO]: [SimpleScore] Loading SimpleScore v3.9.1
[17:05:21] [Server thread/INFO]: [MythicDungeons] Loading MythicDungeons v1.0.3F
[17:05:21] [Server thread/INFO]: [LevelledMobs] Loading LevelledMobs v3.8.1 b718
[17:05:21] [Server thread/INFO]: [BountyHunters] Loading BountyHunters v2.4.4
[17:05:21] [Server thread/INFO]: [BountyHunters] Hooked onto WorldGuard
[17:05:21] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2673)
[17:05:21] [Server thread/INFO]: [ItemJoin] Loading ItemJoin v5.2.5-SNAPSHOT-b844
[17:05:21] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR3.0.1
[17:05:21] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.17.1-2b69191
[17:05:21] [Server thread/INFO]: [TrollingFreedom] Loading TrollingFreedom v2.3.7
[17:05:21] [Server thread/INFO]: [AureliumSkills] Loading AureliumSkills vBeta 1.3.10
[17:05:21] [Server thread/INFO]: [AngelChest] Loading AngelChest v9.7.2
[17:05:22] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[17:05:22] [Server thread/INFO]: [WanderingTrades] Loading WanderingTrades v1.7.3
[17:05:22] [Server thread/INFO]: [Spartan] Loading Spartan vPhase 474
[17:05:22] [Server thread/INFO]: [GSit] Loading GSit v1.2.8
[17:05:22] [Server thread/INFO]: [NDailyRewards] Loading NDailyRewards v1.5.2
[17:05:22] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.5.1
[17:05:22] [Server thread/INFO]: [CrazyEnchantments] Loading CrazyEnchantments v1.9.5-SNAPSHOT
[17:05:22] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v6.17.3
[17:05:22] [Server thread/INFO]: [BeautyQuests] Loading BeautyQuests v0.19.7
[17:05:22] [Server thread/INFO]: [Magic] Loading Magic v10.8.4-2d528ac
[17:05:22] [Server thread/INFO]: [Magic] Loading modern compatibility layer for server version 1.19.0
[17:05:22] [Server thread/INFO]: [Magic] Async chunk loading API found
[17:05:22] [Server thread/INFO]: [Magic] Chat component API found
[17:05:22] [Server thread/INFO]: [Magic] Found WorldGuard 7+
[17:05:22] [Server thread/INFO]: [Magic] Pre-check for WorldGuard custom flag registration
[17:05:22] [Server thread/INFO]: [Magic] Registered custom WorldGuard flags: allowed-spells, always-allowed-spells, blocked-spells, always-allowed-spell-categories, allowed-spell-categories, blocked-spell-categories, allowed-wands, always-allowed-wands, blocked-wands, spell-overrides, destructible, reflective, tags, portal-spell, portal-warp
[17:05:22] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.3.0
[17:05:22] [Server thread/INFO]: true
[17:05:22] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:05:22] [Server thread/INFO]: [momojs] Enabling momojs v1.0.3
[17:05:22] [Server thread/INFO]: [momojs] js engine provider is enabled
[17:05:22] [Server thread/INFO]: __momolib.js.nashorn.api.scripting.NashornScriptEngine@515e1e1d
[17:05:22] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.46
[17:05:23] [Server thread/INFO]:         __    
[17:05:23] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.46
[17:05:23] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[17:05:23] [Server thread/INFO]: 
[17:05:23] [Server thread/INFO]: [LuckPerms] Loading configuration...
[17:05:24] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[17:05:25] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[17:05:25] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[17:05:25] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3462ms)
[17:05:25] [Server thread/INFO]: [JSEngine] Enabling JSEngine v3.1.1
[17:05:25] [Server thread/INFO]: [JSEngine] JSEngine version 3.1.1 is Enabled
[17:05:25] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b602
[17:05:25] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[17:05:25] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.18.2.0 which is not a depend or softdepend of this plugin.
[17:05:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[17:05:25] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:05:25] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[17:05:25] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[17:05:26] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v2.0.2
[17:05:26] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[17:05:26] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:05:26] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:05:26] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R1.PaperweightAdapter as the Bukkit adapter
[17:05:28] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v5.2.5-SNAPSHOT-b844
[17:05:28] [Server thread/INFO]: [Magic] Enabling Magic v10.8.4-2d528ac
[17:05:28] [Server thread/INFO]: [Magic] EffectLib initialized
[17:05:29] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[17:05:34] [Server thread/INFO]: [Magic] Loaded 0 attributes
[17:05:34] [Server thread/INFO]: [Magic] Wand crafting is enabled
[17:05:34] [Server thread/INFO]: [Magic] Skin-based spell icons disabled
[17:05:34] [Server thread/INFO]: [Magic] Registered attributes: [target_fall_distance, regeneration, respiration, projectile_protection, bowpower, degrees, seconds, channeling, target_pitch, humidity, pitch, sharpness, darkness, jump, health_max, efficiency, target_luck, blindness, absorption, target_armor, loyalty, slow_digging, silk_touch, fire_resistance, unluck, invisibility, target_health_max, moon, air_max, slow, mana_max, sweeping, bowpull, damage, weeks, swift_sneak, mending, epoch, protection, air, fast_digging, lure, punch, temperature, frost_walker, movement_speed_bps, power, riptide, health_boost, levitation, increase_damage, poison, health, target_temperature, binding_curse, yaw, mana, glowing, target_health, target_humidity, days, infinity, impaling, bad_omen, luck, thorns, hero_of_the_village, target_hunger, smite, location_x, unbreaking, location_y, target_mana, feather_falling, attack_damage, knockback, fire_aspect, luck_of_the_sea, knockback_resistance, saturation, conduit_power, location_z, target_air, bane_of_arthropods, soul_speed, night_vision, level, minutes, water_breathing, fall_distance, quick_charge, aqua_affinity, multishot, hunger, slow_falling, armor, blast_protection, confusion, damage_dealt, harm, piercing, fire_protection, target_yaw, dolphins_grace, speed, damage_resistance, weakness, heal, target_mana_max, hours, fortune, looting, target_air_max, movement_speed, play_time, depth_strider, xp, target_location_x, pi, target_location_y, vanishing_curse, target_knockback_resistance, target_location_z, time, flame, wither]
[17:05:34] [Server thread/INFO]: [Magic] Loaded 182 icons
[17:05:34] [Server thread/INFO]: [Magic] Loaded 12 effect lists
[17:05:34] [Server thread/INFO]: [Magic] Loaded 1402 items
[17:05:34] [Server thread/INFO]: [Magic] Loaded 199 wands
[17:05:34] [Server thread/INFO]: [Magic] Loaded 2 kits
[17:05:34] [Server thread/INFO]: [Magic] Loaded 10 classes
[17:05:34] [Server thread/INFO]: [Magic] Loaded 5 classes
[17:05:34] [Server thread/INFO]: [Magic] Loaded 51 mob templates
[17:05:34] [Server thread/INFO]: [Magic] Loaded 8 automata templates
[17:05:34] [Server thread/INFO]: [Magic] Loaded 0 customized worlds
[17:05:34] [Server thread/INFO]: [Magic] Activated BStats
[17:05:34] [Server thread/INFO]: [Magic] MobArena not found
[17:05:34] [Server thread/INFO]: [Magic] LibsDisguises not found, magic mob disguises will not be available
[17:05:34] [Server thread/INFO]: [Magic] ModelEngine found, model magic mob configuration available
[17:05:34] [Server thread/INFO]: [Magic] Found MythicMobs v5.1.4-3aa1b5d2 (5) will use modern integration layer
[17:05:34] [Server thread/INFO]: [Magic] MythicMobs integration enabled, mobs can be spawned in arenas, spells, actions, etc.
[17:05:34] [Server thread/INFO]: Magic checking resource pack for updates: http://rp.elmakers.com/Magic-RP-1.19.zip
[17:05:34] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.0
[17:05:35] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[17:05:35] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[17:05:35] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[17:05:35] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[17:05:35] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[17:05:35] [Server thread/INFO]: Preparing level "paper119"
[17:05:35] [Server thread/WARN]: Failed to parse level-type , defaulting to minecraft:normal
[17:05:56] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:05:57] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[17:05:57] [Server thread/INFO]: Time elapsed: 419 ms
[17:05:57] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[17:05:57] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[17:05:57] [Server thread/INFO]: Time elapsed: 374 ms
[17:05:57] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[17:05:57] [Server thread/INFO]: Time elapsed: 237 ms
[17:05:57] [Server thread/INFO]: [PluginConstructorAPI] Enabling PluginConstructorAPI v1.0.52
[17:05:57] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[17:05:57] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.4.2 which is not a depend or softdepend of this plugin.
[17:05:58] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:05:58] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.0
[17:05:58] [Server thread/INFO]: [SSX-Connector] Enabling SSX-Connector v2.2.1
[17:05:58] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[17:05:58] [Server thread/INFO]: [NoMobGriefing] Enabling NoMobGriefing v3.0.3
[17:05:58] [Server thread/INFO]: [NoMobGriefing] ***NoMobGriefing plugin by PinkNeonDino has been enabled.***
[17:05:58] [Server thread/INFO]: [EliteBosses] Enabling EliteBosses v1.4.7
[17:05:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[17:05:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[17:05:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[17:05:58] [Server thread/INFO]: EliteBosses: Factions Support Success
[17:05:58] [Server thread/INFO]: EliteBosses: Factions Support Disabled
[17:05:58] [Server thread/INFO]: EliteBosses: Skyblock Support Failed
[17:05:58] [Server thread/WARN]: [EliteBosses] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[17:05:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: elitebosses [1.0.0]
[17:05:58] [Server thread/INFO]: [EliteBosses] [ACF] Enabled Asynchronous Tab Completion Support!
[17:05:58] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.4.2
[17:05:58] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.10.0
[17:05:58] [Server thread/INFO]: [NBTAPI] Adding listeners...
[17:05:58] [Server thread/INFO]: [NBTAPI] Gson:
[17:05:58] [Server thread/INFO]: [NBTAPI] Checking bindings...
[17:05:58] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[17:05:58] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[17:05:58] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[17:05:58] [Thread-18/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[17:06:01] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[17:06:01] [Server thread/INFO]: [RampenDrills] Enabling RampenDrills v4.5.2-Beta
[17:06:01] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.4.2
[17:06:01] [Server thread/INFO]: [Timber] Enabling Timber v1.1.0
[17:06:01] [Server thread/INFO]: Timber Log Materials: [ACACIA_LOG, CRIMSON_STEM, WARPED_STEM, JUNGLE_LOG, DARK_OAK_LOG, OAK_LOG, BIRCH_LOG, SPRUCE_LOG]
[17:06:01] [Server thread/INFO]: Timber Axe Materials: [WOODEN_AXE, IRON_AXE, NETHERITE_AXE, STONE_AXE, GOLDEN_AXE, DIAMOND_AXE]
[17:06:01] [Server thread/INFO]: [FriendsSpigot] Enabling FriendsSpigot v1.0.9.7
[17:06:02] [Server thread/WARN]: [FriendsSpigot] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[17:06:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: friends [1.0.0]
[17:06:02] [Server thread/INFO]: Friends | The plugin was loaded successfully! [MC1.13 - 1.16]
[17:06:02] [Server thread/INFO]: Friends | Found (0) spigot-extensions!
[17:06:02] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[17:06:02] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[17:06:02] [Server thread/INFO]: [ClearLag] Loading modules...
[17:06:02] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R1.MinecraftServer)
[17:06:02] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[17:06:02] [Server thread/WARN]: [ClearLag] Invalid entity type specified path="area-filter" value=OAK_BOAT
[17:06:02] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[17:06:02] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[17:06:02] [Thread-19/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[17:06:02] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[17:06:02] [Server thread/INFO]: [BuycraftX] Looks like this is a fresh setup. Get started by using 'tebex secret <key>' in the console.
[17:06:02] [Thread-19/INFO]: [ClearLag] No updates found!
[17:06:02] [Server thread/INFO]: [LastLoginAPI] Enabling LastLoginAPI v1.7.3
[17:06:02] [Server thread/INFO]: [LastLoginAPI] Initializing LastLoginAPI v1.7.3
[17:06:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lastloginapi [1.7.3]
[17:06:03] [Server thread/INFO]: [LastLoginAPI] Hooked into PlaceholderAPI
[17:06:03] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI v1.7.3 enabled
[17:06:03] [Server thread/INFO]: [MythicalRaces] Enabling MythicalRaces v2.1.5
[17:06:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythicalraces [2.1.5]
[17:06:03] [Server thread/INFO]: [Parties] Enabling Parties v3.2.6
[17:06:03] [Server thread/INFO]: [Parties] Initializing Parties v3.2.6
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'addons.vault.price-commands.close' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'addons.vault.price-commands.open' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'commands.misc-commands.bungeecord' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'parties.automatic-upgrade-configs' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'parties.bungeecord.packets.debug-bungeecord' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'parties.bungeecord.packets.broadcast' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'storage.storage-settings.remote-sql.additional-parameters' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'additional.exp-system.mode' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'additional.exp-system.earn-exp-from-mobs' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'additional.exp-system.progressive.start-level-experience' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'additional.exp-system.progressive.level-experience' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'additional.exp-system.progressive.safe-calculation' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'additional.exp-system.fixed.repeat-last-one' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'commands.sub-commands.close' in 'config.yml' was not found, configuration outdated?
[17:06:03] [Server thread/WARN]: [Parties] The configuration key 'commands.sub-commands.open' in 'config.yml' was not found, configuration outdated?
[17:06:04] [Server thread/ERROR]: [Parties] Failed to register command party
[17:06:04] [Server thread/ERROR]: [Parties] Failed to register command p
[17:06:04] [Server thread/INFO]: [Parties] Hooked into LastLoginAPI
[17:06:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: parties [3.2.6]
[17:06:04] [Server thread/INFO]: [Parties] Hooked into PlaceholderAPI
[17:06:04] [Server thread/INFO]: [Parties] Parties v3.2.6 enabled
[17:06:04] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.3
[17:06:04] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_19_R1, using MappingSpigotSkinRefresher.
[17:06:04] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[17:06:04] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[17:06:04] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[17:06:04] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[17:06:04] [Server thread/INFO]: [SkinsRestorer] (BungeeCord-Server/plugins/SkinsRestorer/)
[17:06:04] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[17:06:04] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.3.1
[17:06:04] [Server thread/INFO]: [TigerReports] Enabling TigerReports v5.1.1
[17:06:04] [Server thread/INFO]: [TigerReports] Le plugin utilise les prefixes et suffixes du chat du plugin Vault pour afficher les noms des joueurs.
[17:06:04] [Server thread/INFO]: [Essentials] Enabling Essentials v2.18.2.0
[17:06:04] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[17:06:04] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[17:06:04] [Server thread/INFO]: [Essentials] No kits found to migrate.
[17:06:04] [Server thread/INFO]: [Essentials] Loaded 25599 items from items.json.
[17:06:04] [Server thread/INFO]: [Essentials] Using locale en_US
[17:06:04] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[17:06:04] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[17:06:04] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[17:06:04] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[17:06:04] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[17:06:04] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[17:06:04] [Server thread/WARN]: [AdvancedBan] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:04] [Server thread/WARN]: [AdvancedBan] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:05] [Server thread/INFO]: [hsqldb.db.HSQLDB7E45FC3CFA.ENGINE] checkpointClose start
[17:06:05] [Server thread/INFO]: [hsqldb.db.HSQLDB7E45FC3CFA.ENGINE] checkpointClose synched
[17:06:05] [Server thread/INFO]: [hsqldb.db.HSQLDB7E45FC3CFA.ENGINE] checkpointClose script done
[17:06:05] [Server thread/INFO]: [hsqldb.db.HSQLDB7E45FC3CFA.ENGINE] checkpointClose end
[17:06:05] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[17:06:05] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[17:06:05] [Server thread/INFO]: 

[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]

[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v4.0.0-b.3
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Using lang-en.yml as language file.
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Shops.yml has been found!
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Sections.yml has been found!
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Successfully hooked into Vault
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Using minecraft version 1.19...
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Using plugin default spawners...
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Debug mode is enabled.
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Updating Shop settings...
[17:06:05] [Server thread/WARN]: [EconomyShopGUI-Premium] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:05] [Server thread/WARN]: [EconomyShopGUI-Premium] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:05] [Server thread/WARN]: [EconomyShopGUI-Premium] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading item stock...
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading all items...
[17:06:05] [Server thread/INFO]: [EconomyShopGUI-Premium] Initialized - Took 507ms to complete
[17:06:05] [Server thread/INFO]: [Referral Pro] Enabling Referral_Pro v1.18.1
[17:06:05] [Server thread/INFO]: [Referral Pro] PlaceHolderAPI detected and support enabled
[17:06:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: referralpro [1.18.1]
[17:06:05] [Server thread/WARN]: [Referral Pro] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:05] [Server thread/WARN]: [Referral Pro] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:05] [Server thread/WARN]: [Referral Pro] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:05] [Server thread/INFO]: [Referral Pro] Connected to local database
[17:06:06] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.6.3
[17:06:06] [Server thread/WARN]: [VotingPlugin] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:06] [Server thread/WARN]: [VotingPlugin] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:06] [Server thread/WARN]: [VotingPlugin] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:06] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[17:06:06] [Server thread/WARN]: [VotingPlugin] No VotifierEvent found, install Votifier, NuVotifier, or another Votifier plugin
[17:06:06] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.6.3
[17:06:06] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from TopMinecraftServers, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[17:06:06] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from MinecraftServers.org, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[17:06:06] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from Minebrowse.com, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[17:06:06] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.18.2.0
[17:06:06] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[17:06:06] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.5-Release
[17:06:06] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Material for item: GREEN-SEPARATOR in menu: server-store-ranks is not a valid material name / id!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Skipping item: GREEN-SEPARATOR
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Material for item: BLACK-SEPARATOR in menu: server-store-ranks is not a valid material name / id!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Skipping item: BLACK-SEPARATOR
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Material for item: GOLD-WALLET in menu: server-store-ranks is not a valid material name / id!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Skipping item: GOLD-WALLET
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Material for item: GOLD-WALLET in menu: server-store-mysteryboxes is not a valid material name / id!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Skipping item: GOLD-WALLET
[17:06:06] [Server thread/WARN]: [DeluxeMenus] command: lang specified for menu: warp already exists for another menu!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Skipping command: lang in menu: warp
[17:06:06] [Server thread/WARN]: [DeluxeMenus] command: language specified for menu: warp already exists for another menu!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Skipping command: language in menu: warp
[17:06:06] [Server thread/WARN]: [DeluxeMenus] command: lang specified for menu: dungeon already exists for another menu!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Skipping command: lang in menu: dungeon
[17:06:06] [Server thread/WARN]: [DeluxeMenus] command: language specified for menu: dungeon already exists for another menu!
[17:06:06] [Server thread/WARN]: [DeluxeMenus] Skipping command: language in menu: dungeon
[17:06:06] [Server thread/INFO]: [DeluxeMenus] 14 GUI menus loaded!
[17:06:06] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[17:06:06] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[17:06:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.5-Release]
[17:06:06] [Server thread/INFO]: [Vivecraft] Enabling Vivecraft-Spigot-Extensions v1.19-1
[17:06:06] [Server thread/INFO]: [MRPremiumAddons] Enabling MRPremiumAddons v2.1.5
[17:06:06] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[17:06:06] [Server thread/WARN]: [WorldGuard] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:06] [Server thread/WARN]: [WorldGuard] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:06] [Server thread/WARN]: [WorldGuard] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:06] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[17:06:06] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119) TNT ignition is PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119) Lighters are PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119) Lava fire is PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119) Fire spread is UNRESTRICTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'paper119'
[17:06:06] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[17:06:06] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119_nether) TNT ignition is PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119_nether) Lighters are PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119_nether) Lava fire is PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119_nether) Fire spread is UNRESTRICTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'paper119_nether'
[17:06:06] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[17:06:06] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119_the_end) TNT ignition is PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119_the_end) Lighters are PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119_the_end) Lava fire is PERMITTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] (paper119_the_end) Fire spread is UNRESTRICTED.
[17:06:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'paper119_the_end'
[17:06:06] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:06:07] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.1.4-3aa1b5d2
[17:06:07] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.0)...
[17:06:07] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[17:06:07] [Server thread/WARN]: [MythicMobs] Loaded class org.slf4j.impl.StaticLoggerBinder from FriendsSpigot v1.0.9.7 which is not a depend or softdepend of this plugin.
[17:06:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 49 ms to scan 1 urls, producing 3 keys and 21 values 
[17:06:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 15 ms to scan 1 urls, producing 6 keys and 101 values 
[17:06:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 38 ms to scan 113 urls, producing 0 keys and 0 values 
[17:06:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 3 keys and 36 values 
[17:06:07] [Server thread/INFO]: [MythicMobs] MythicMobs GriefPrevention Support has been enabled!
[17:06:07] [Server thread/INFO]: [MythicMobs] MythicMobs HolographicDisplays Support has been enabled!
[17:06:07] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[17:06:07] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[17:06:07] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[17:06:07] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[17:06:07] [Server thread/INFO]: [MythicMobs] Loading Mob Registry...
[17:06:07] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/multicraft/servers/server231373/plugins/MythicMobs/SavedData
[17:06:07] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/multicraft/servers/server231373/plugins/MythicMobs/SavedData/worlds
[17:06:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 21 ms to scan 1 urls, producing 11 keys and 423 values 
[17:06:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 34 ms to scan 1 urls, producing 27 keys and 843 values 
[17:06:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 11 ms to scan 1 urls, producing 9 keys and 152 values 
[17:06:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 5 ms to scan 1 urls, producing 2 keys and 11 values 
[17:06:07] [Server thread/INFO]: [MythicMobs] LOADED
[17:06:08] [Server thread/INFO]: [MythicMobs] Loading Packs...
[17:06:08] [Server thread/INFO]: [MythicMobs] Loading Items...
[17:06:08] [Server thread/INFO]: [MythicMobs] Loading Skills...
[17:06:08] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[17:06:08] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[17:06:08] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 15 mobs.
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 76 skills.
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 random spawns.
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 72 mythic items.
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[17:06:08] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[17:06:08] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[17:06:08] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.1.4 ( build 3aa1b5d2 ) has been successfully loaded!
[17:06:08] [Server thread/INFO]: [TabList] Enabling TabList v5.6.4
[17:06:08] [Server thread/INFO]: [TabList] Hooked PlaceholderAPI version: 2.11.2
[17:06:08] [Server thread/INFO]: [TabList] > Enabled v5.6.4 (105ms)
[17:06:08] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.18.2.0
[17:06:08] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[17:06:08] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[17:06:08] [Server thread/INFO]: [Prism] Enabling Prism v2.1.7-6
[17:06:08] [Server thread/INFO]: [Prism] Initializing Prism 2.1.7-6. Originally by Viveleroi; maintained by the AddstarMC Network
[17:06:08] [Server thread/INFO]: [Prism] Configuring Hikari from hikari.properties
[17:06:08] [Server thread/INFO]: [Prism Debug ]: This file will not save the jdbcURL, username or password - these are loaded by default from the standard prism configuration file.  If you set these explicitly in the properties file the settings in the standard config will beignored.
[17:06:08] [Server thread/INFO]: [Prism] [STDOUT] Elixr: Loaded items directory
[17:06:08] [Server thread/WARN]: Nag author(s): '[AddstarMC, add5tar, Narimm, viveleroi]' of 'Prism' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:06:08] [Server thread/INFO]: [Prism] WorldEdit found. Associated features enabled.
[17:06:08] [Server thread/INFO]: [Prism] Prism bStats metrics are enabled - thank you!
[17:06:08] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v20.1
[17:06:08] [Server thread/WARN]: [CoreProtect] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:08] [Server thread/WARN]: [CoreProtect] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:08] [Server thread/WARN]: [CoreProtect] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:08] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[17:06:08] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[17:06:08] [Server thread/INFO]: --------------------
[17:06:08] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[17:06:08] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[17:06:08] [Server thread/INFO]: --------------------
[17:06:08] [Server thread/INFO]: [RealisticSeasons] Enabling RealisticSeasons v10.1.2
[17:06:09] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.9.1
[17:06:09] [Server thread/WARN]: [SimpleScore] Invalid titles value for scoreboard: customTiming, value: null.
[17:06:09] [Server thread/INFO]: [SimpleScore] Loading player data...
[17:06:09] [Server thread/INFO]: [SimpleScore] Player data loaded.
[17:06:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: simplescore [3.9.1]
[17:06:09] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.0.3F
[17:06:09] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[17:06:09] [Server thread/INFO]: [MythicDungeons] [STDOUT] §x§9§7§5§3§f§5DungeonParties plugin found! Enabled party support.
[17:06:09] [Server thread/WARN]: Nag author(s): '[MarcatoSound]' of 'MythicDungeons' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:06:09] [Server thread/INFO]: [MythicDungeons] [STDOUT] §x§9§7§5§3§f§5MythicMobs plugin found! Enabled MythicMobs support.
[17:06:09] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 81 ms to scan 1 urls, producing 11 keys and 134 values
[17:06:09] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 9 ms to scan 1 urls, producing 7 keys and 57 values
[17:06:09] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 5 keys and 20 values
[17:06:09] [Server thread/INFO]: [MythicDungeons] [STDOUT] §x§9§7§5§3§f§5* Loaded §627 §x§9§7§5§3§f§5functions.
[17:06:09] [Server thread/INFO]: [MythicDungeons] [STDOUT] §x§9§7§5§3§f§5* Loaded §612 §x§9§7§5§3§f§5triggers.
[17:06:09] [Server thread/INFO]: [MythicDungeons] [STDOUT] §x§9§7§5§3§f§5* Loaded §64 §x§9§7§5§3§f§5conditions.
[17:06:09] [Server thread/INFO]: [MythicDungeons] [STDOUT] §x§9§7§5§3§f§5GUI menus initialized!
[17:06:09] [Server thread/INFO]: [MythicDungeons] [STDOUT] §x§9§7§5§3§f§5Mythic Dungeons v1.0.3-FREE §ainitialized! Happy dungeon-ing!
[17:06:09] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v3.8.1 b718
[17:06:09] [Server thread/INFO]: LevelledMobs: Using NMS version v1_19_R1 for nametag support
[17:06:09] [Server thread/INFO]: LevelledMobs: File Loader: Loading files...
[17:06:09] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'rules.yml'...
[17:06:09] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'settings.yml'...
[17:06:09] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'messages.yml'...
[17:06:09] [Server thread/INFO]: LevelledMobs: Listeners: Registering event listeners...
[17:06:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: LevelledMobs [3.8.1 b718]
[17:06:09] [Server thread/INFO]: LevelledMobs: Commands: Registering commands...
[17:06:09] [Server thread/INFO]: LevelledMobs: Running misc procedures
[17:06:09] [Server thread/INFO]: LevelledMobs: Tasks: Starting async nametag auto update task...
[17:06:09] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'customdrops.yml'...
[17:06:09] [Server thread/INFO]: LevelledMobs: Start-up complete (took 138ms)
[17:06:09] [Server thread/INFO]: [BountyHunters] Enabling BountyHunters v2.4.4
[17:06:10] [Server thread/INFO]: [BountyHunters] Detected Server Version: v1_19_R1
[17:06:10] [Server thread/INFO]: [BountyHunters] Hooked onto Parties
[17:06:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bountyhunters [2.4.4]
[17:06:10] [Server thread/INFO]: [BountyHunters] Hooked onto PlaceholderAPI
[17:06:10] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2673)
[17:06:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[17:06:10] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[17:06:10] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.0.1
[17:06:10] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[17:06:10] [Server thread/INFO]: [ModelEngine] Compatibility applied: MythicMobs
[17:06:10] [Server thread/INFO]: [ModelEngine] Compatibility applied: Citizens
[17:06:10] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.17.1-2b69191
[17:06:10] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[17:06:10] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
[17:06:10] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[17:06:10] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[17:06:10] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[17:06:10] [Server thread/INFO]: [GriefPrevention] Boot finished.
[17:06:10] [Server thread/INFO]: [TrollingFreedom] Enabling TrollingFreedom v2.3.7
[17:06:10] [Server thread/INFO]: §3TF§8: §7ProtocolLib dependency detected
[17:06:10] [Server thread/WARN]: @EventHandler method me.iangry.trollingfreedom.commands.InventoryRave#onPlace returns non-void type boolean. This is unsupported behavior and will no longer work in a future version of Paper. This should be reported to the developers of TrollingFreedom v2.3.7 (iAngry)
[17:06:10] [Server thread/WARN]: @EventHandler method me.iangry.trollingfreedom.commands.InventoryRave#onDrop returns non-void type boolean. This is unsupported behavior and will no longer work in a future version of Paper. This should be reported to the developers of TrollingFreedom v2.3.7 (iAngry)
[17:06:10] [Server thread/WARN]: @EventHandler method me.iangry.trollingfreedom.commands.InvertWalk#onMove returns non-void type boolean. This is unsupported behavior and will no longer work in a future version of Paper. This should be reported to the developers of TrollingFreedom v2.3.7 (iAngry)
[17:06:10] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.10
[17:06:10] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[17:06:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aureliumskills [Beta 1.3.10]
[17:06:10] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[17:06:10] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[17:06:10] [Server thread/INFO]: [AureliumSkills] Loaded 187 config options in 0 ms
[17:06:10] [Server thread/INFO]: [AureliumSkills] Loaded 303 sources and 10 tags in 11ms
[17:06:10] [Server thread/INFO]: [AureliumSkills] HolographicDisplays Support Enabled!
[17:06:10] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[17:06:10] [Server thread/INFO]: [AureliumSkills] Loading languages...
[17:06:11] [Server thread/INFO]: [AureliumSkills] Loaded 13 languages in 815ms
[17:06:11] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[17:06:11] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 3ms
[17:06:11] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[17:06:11] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[17:06:11] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[17:06:11] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[17:06:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[17:06:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[17:06:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[17:06:12] [Server thread/INFO]: [AngelChest] Enabling AngelChest v9.7.2
[17:06:12] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[17:06:12] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[17:06:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: angelchest [GENERIC]
[17:06:12] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[17:06:12] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[17:06:12] [Server thread/INFO]: [WanderingTrades] Enabling WanderingTrades v1.7.3
[17:06:13] [Server thread/INFO]: [WanderingTrades] Successfully registered Mojang Brigadier support for commands.
[17:06:13] [Server thread/INFO]: [WanderingTrades] Successfully registered asynchronous command completion listener.
[17:06:13] [Server thread/INFO]: [Spartan] Enabling Spartan vPhase 474
[17:06:13] [Server thread/WARN]: [Spartan] Loaded class me.rampen88.drills.events.DrillBreakEvent from RampenDrills v4.5.2-Beta which is not a depend or softdepend of this plugin.
[17:06:14] [Server thread/INFO]: [GSit] Enabling GSit v1.2.8
[17:06:14] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[17:06:14] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[17:06:14] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[17:06:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.2.8]
[17:06:14] [Server thread/INFO]: [GSit] Link with GriefPrevention successful!
[17:06:14] [Server thread/INFO]: [NDailyRewards] Enabling NDailyRewards v1.5.2
[17:06:14] [Server thread/INFO]: [INFO] NDailyRewards: Hooked with: Citizens
[17:06:14] [Server thread/INFO]: [INFO] NDailyRewards: Loaded 7 daily rewards!
[17:06:14] [Server thread/INFO]: [INFO] NDailyRewards: Storage type: SQLite
[17:06:14] [Server thread/WARN]: [NDailyRewards] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:14] [Server thread/WARN]: [NDailyRewards] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:14] [Server thread/WARN]: [NDailyRewards] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:14] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.5.1
[17:06:14] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `master_world's` override! Maybe there are capital letters?
[17:06:14] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `creative_world's` override! Maybe there are capital letters?
[17:06:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.5.1]
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v1.9.5-SNAPSHOT
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the config.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded config.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the BlockList.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded BlockList.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the Data.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Data.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantments.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantments.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the GKitz.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded GKitz.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the Messages.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Messages.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantment-Types.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantment-Types.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the Signs.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Signs.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Loading the Tinker.yml
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Tinker.yml
[17:06:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[17:06:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[17:06:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[17:06:14] [Server thread/INFO]: Active CrazyEnchantment Hooks:
[17:06:14] [Server thread/INFO]:  GriefPrevention : ENABLED
[17:06:14] [Server thread/INFO]:  WorldGuard : ENABLED
[17:06:14] [Server thread/INFO]:  Vault : ENABLED
[17:06:14] [Server thread/INFO]:  Spartan : ENABLED
[17:06:14] [Server thread/INFO]:  WorldEdit : ENABLED
[17:06:14] [Thread-39/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[17:06:14] [Server thread/INFO]: [CrazyEnchantments] Gkitz support is now enabled.
[17:06:14] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.17.3
[17:06:14] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[17:06:14] [Server thread/INFO]: [PlayerWarps] Found 18 config files to load!
[17:06:15] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[17:06:15] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (Essentials Economy)
[17:06:15] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[17:06:15] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[17:06:15] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[17:06:15] [Server thread/WARN]: [PlayerWarps] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:15] [Server thread/WARN]: [PlayerWarps] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:15] [Server thread/WARN]: [PlayerWarps] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:15] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[17:06:15] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[17:06:15] [ForkJoinPool.commonPool-worker-2/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[17:06:15] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.19.7
[17:06:15] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[17:06:15] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_19_R1.
[17:06:15] [Server thread/INFO]: [BeautyQuests] Loaded language file locales/en_US.yml (0.031s)!
[17:06:15] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color "R255 G255 B0"
[17:06:15] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[17:06:15] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[17:06:15] [Server thread/INFO]: [BeautyQuests] Connection to database etablished.
[17:06:15] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[17:06:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.19.7]
[17:06:15] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[17:06:15] [pool-64-thread-1/INFO]: [Spartan Notification] Done loading 10126 rows of data to the Search Engine.
[17:06:16] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:06:16] [Server thread/INFO]: Running delayed init tasks
[17:06:16] [Craft Scheduler Thread - 4 - ItemJoin/INFO]: [ItemJoin] Hooked into { WorldGuard, PlaceholderAPI, ProtocolLib, SkinsRestorer, Citizens, Vault }
[17:06:16] [Craft Scheduler Thread - 4 - ItemJoin/INFO]: [ItemJoin] 1 Custom item(s) loaded!
[17:06:16] [Craft Scheduler Thread - 4 - ItemJoin/WARN]: [ItemJoin] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 4 - ItemJoin/WARN]: [ItemJoin] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 4 - ItemJoin/WARN]: [ItemJoin] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 19 - TigerReports/INFO]: [TigerReports] Le plugin utilise la base de donnees SQLite (par defaut).
[17:06:16] [Craft Scheduler Thread - 19 - TigerReports/WARN]: [TigerReports] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 19 - TigerReports/WARN]: [TigerReports] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 19 - TigerReports/WARN]: [TigerReports] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 20 - Prism/INFO]: [Prism] Attempting to configure datasource as mysql
[17:06:16] [Craft Scheduler Thread - 20 - Prism/INFO]: [Prism] No metric recorder found to hook into Hikari.
[17:06:16] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19 (759)
[17:06:16] [Craft Scheduler Thread - 20 - Prism/INFO]: [com.botsko.prism.libs.hikari.HikariDataSource] prism - Starting...
[17:06:16] [Craft Scheduler Thread - 20 - Prism/WARN]: [Prism] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 20 - Prism/WARN]: [Prism] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 36 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[17:06:16] [Craft Scheduler Thread - 20 - Prism/WARN]: [Prism] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 5 - Vivecraft-Spigot-Extensions/INFO]: [Vivecraft] Version: 1.19-1
[17:06:16] [Craft Scheduler Thread - 5 - Vivecraft-Spigot-Extensions/INFO]: [Vivecraft] Checking for update...
[17:06:16] [Craft Scheduler Thread - 40 - Vault/INFO]: [Vault] Checking for Updates ... 
[17:06:16] [Craft Scheduler Thread - 36 - BetterRTP/WARN]: [BetterRTP] Loaded class com.alessiodp.lastloginapi.libs.h2.Driver from LastLoginAPI v1.7.3 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 36 - BetterRTP/WARN]: [BetterRTP] Loaded class com.alessiodp.parties.libs.h2.Driver from Parties v3.2.6 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 36 - BetterRTP/WARN]: [BetterRTP] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[17:06:16] [Craft Scheduler Thread - 40 - Vault/INFO]: [Vault] No new version available
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.2.3
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[17:06:16] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[17:06:16] [Craft Scheduler Thread - 5 - Vivecraft-Spigot-Extensions/INFO]: [Vivecraft] Version not found. Are you from the future?
[17:06:16] [Server thread/INFO]: [LastLoginAPI] Hooked into EssentialsChat
[17:06:16] [Server thread/INFO]: [Parties] Hooked into Essentials
[17:06:16] [Server thread/INFO]: [Parties] Hooked into EssentialsChat
[17:06:16] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[17:06:16] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] Your current version: v5.2.5-SNAPSHOT
[17:06:16] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] This SNAPSHOT is outdated and a release version is now available.
[17:06:16] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] A new version is available: v5.2.5-RELEASE
[17:06:16] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] Get it from: https://github.com/RockinChaos/itemjoin/releases/latest
[17:06:16] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] If you wish to auto update, please type /ItemJoin Upgrade
[17:06:16] [Craft Scheduler Thread - 24 - SimpleScore/WARN]: [SimpleScore] New version (v3.12.2) available, download at:
[17:06:16] [Craft Scheduler Thread - 24 - SimpleScore/WARN]: [SimpleScore] https://www.spigotmc.org/resources/23243/
[17:06:16] [Craft Scheduler Thread - 22 - TrollingFreedom/INFO]: =-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[17:06:16] [Craft Scheduler Thread - 22 - TrollingFreedom/INFO]: You are using an older version of TrollingFreedom
[17:06:16] [Craft Scheduler Thread - 22 - TrollingFreedom/INFO]: Download the newest version here:
[17:06:16] [Craft Scheduler Thread - 22 - TrollingFreedom/INFO]: https://bit.ly/2Fn3w51
[17:06:16] [Craft Scheduler Thread - 22 - TrollingFreedom/INFO]: =-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[17:06:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rs [1.0.0]
[17:06:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[17:06:16] [Craft Scheduler Thread - 34 - WanderingTrades/INFO]: [WanderingTrades] There is an update available for WanderingTrades!
[17:06:16] [Server thread/INFO]: [Magic] Vault found, 'currency' cost types available
[17:06:16] [Craft Scheduler Thread - 34 - WanderingTrades/INFO]: [WanderingTrades] This server is running version v1.7.3, which is 1 versions outdated.
[17:06:16] [Craft Scheduler Thread - 34 - WanderingTrades/INFO]: [WanderingTrades] Download the latest version, v1.8.0 from GitHub at the link below:
[17:06:16] [Craft Scheduler Thread - 34 - WanderingTrades/INFO]: [WanderingTrades] https://github.com/jpenilla/WanderingTrades/releases/tag/v1.8.0
[17:06:16] [Server thread/INFO]: [Magic] AureliumSkills found, will integrate for skill/stat attributes,xp currencies
[17:06:16] [Server thread/INFO]: [Magic]   If you want Magic spells to use AureliumSkills mana, use &7/mconfig configure config aurelium_skills.use_mana true
[17:06:16] [Server thread/INFO]: [Magic] Registered AureliumSkills XP as currencies: FARMING,FORAGING,MINING,FISHING,EXCAVATION,ARCHERY,DEFENSE,FIGHTING,ENDURANCE,AGILITY,ALCHEMY,ENCHANTING,SORCERY,HEALING,FORGING
[17:06:16] [Server thread/INFO]: [Magic] Registered currencies: AGILITY,EXCAVATION,DEFENSE,item,ARCHERY,FORGING,ENDURANCE,SORCERY,health,FARMING,HEALING,FIGHTING,hunger,FORAGING,FISHING,mana,ALCHEMY,xp,currency,ENCHANTING,sp,levels,MINING
[17:06:17] [Server thread/INFO]: [Magic] Loaded 556 spells
[17:06:17] [Server thread/INFO]: [Magic] Loaded 12 progression paths
[17:06:17] [Server thread/INFO]: [Magic] Loaded 16 crafting recipes
[17:06:17] [Server thread/INFO]: [Magic] LogBlock not found
[17:06:17] [Server thread/INFO]: [Magic] Integrating with Essentials for vanish detection
[17:06:17] [Server thread/INFO]: [Magic] Integrating with Essentials for Recall warps
[17:06:17] [Server thread/INFO]: [Magic] Essentials found, hooked up custom item handler
[17:06:17] [Server thread/INFO]: [Magic] Factions not found
[17:06:17] [Server thread/INFO]: [Magic] WorldGuard found, will respect build permissions for construction spells
[17:06:17] [Server thread/INFO]: [Magic] Towny not found, region protection and pvp checks will not be used.
[17:06:17] [Server thread/INFO]: [Magic] Lockette nor LockettePro found, will not integrate.
[17:06:17] [Server thread/INFO]: [Magic] GriefPrevention found, will respect claim build permissions for construction spells
[17:06:17] [Server thread/INFO]: [Magic] NoCheatPlus not found, will not integrate.
[17:06:17] [Server thread/INFO]: [Magic] dynmap not found, not integrating.
[17:06:17] [Server thread/INFO]: [Magic] Citizens found, enabling magic and command traits
[17:06:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: magic [10.8.4-2d528ac]
[17:06:17] [Server thread/INFO]: [Magic] PlaceholderAPI integration enabled. Available placeholders:
[17:06:17] [Server thread/INFO]: [Magic] magic_path, magic_class, magic_wand, magic_spell, magic_mana, magic_mana_max, magic_sp, magic_spell_count
[17:06:17] [Server thread/INFO]: [Magic] All magic attributes also available with a magic_ prefix
[17:06:17] [Server thread/INFO]: [Magic] Add to messages/placeholders to add custom placeholders
[17:06:17] [Server thread/INFO]: [Magic] LightAPI not found, Light action will not work
[17:06:17] [Server thread/INFO]: [Magic] Loaded 0 arenas
[17:06:17] [Server thread/INFO]: [Magic] Registered additional attributes: [WISDOM, AGILITY, EXCAVATION, DEFENSE, ARCHERY, FORGING, ENDURANCE, REGENERATION, SORCERY, STRENGTH, FARMING, HEALING, FIGHTING, LUCK, FORAGING, FISHING, TOUGHNESS, ALCHEMY, HEALTH, ENCHANTING, MINING]
[17:06:17] [Server thread/INFO]: [Magic] Finished loading configuration
[17:06:17] [Craft Scheduler Thread - 20 - Prism/ERROR]: [com.botsko.prism.libs.hikari.pool.HikariPool] prism - Exception during pool initialization.
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:828) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.botsko.prism.libs.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138) ~[prism-2.1.7.6.jar:?]
    at com.botsko.prism.libs.hikari.pool.PoolBase.newConnection(PoolBase.java:358) ~[prism-2.1.7.6.jar:?]
    at com.botsko.prism.libs.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206) ~[prism-2.1.7.6.jar:?]
    at com.botsko.prism.libs.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:477) ~[prism-2.1.7.6.jar:?]
    at com.botsko.prism.libs.hikari.pool.HikariPool.checkFailFast(HikariPool.java:560) ~[prism-2.1.7.6.jar:?]
    at com.botsko.prism.libs.hikari.pool.HikariPool.<init>(HikariPool.java:115) ~[prism-2.1.7.6.jar:?]
    at com.botsko.prism.libs.hikari.HikariDataSource.<init>(HikariDataSource.java:81) ~[prism-2.1.7.6.jar:?]
    at me.botsko.prism.database.mysql.MySqlPrismDataSource.createDataSource(MySqlPrismDataSource.java:147) ~[prism-2.1.7.6.jar:?]
    at me.botsko.prism.database.mysql.MySqlPrismDataSource.createDataSource(MySqlPrismDataSource.java:32) ~[prism-2.1.7.6.jar:?]
    at me.botsko.prism.database.sql.SqlPrismDataSource.<init>(SqlPrismDataSource.java:52) ~[prism-2.1.7.6.jar:?]
    at me.botsko.prism.database.mysql.MySqlPrismDataSource.<init>(MySqlPrismDataSource.java:60) ~[prism-2.1.7.6.jar:?]
    at me.botsko.prism.database.PrismDatabaseFactory.createDataSource(PrismDatabaseFactory.java:59) ~[prism-2.1.7.6.jar:?]
    at me.botsko.prism.Prism.lambda$onEnable$5(Prism.java:340) ~[prism-2.1.7.6.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.jar:git-Paper-81]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?]
    at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?]
    at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?]
    at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?]
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:89) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    ... 22 more
Caused by: java.net.ConnectException: Connection refused
    at sun.nio.ch.Net.pollConnect(Native Method) ~[?:?]
    at sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[?:?]
    at sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) ~[?:?]
    at sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) ~[?:?]
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) ~[?:?]
    at java.net.Socket.connect(Socket.java:633) ~[?:?]
    at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:63) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818) ~[mysql-connector-java-8.0.29.jar:8.0.29]
    ... 22 more
[17:06:17] [Craft Scheduler Thread - 20 - Prism/ERROR]: [Prism] Hikari Pool did not Initialize: Failed to initialize pool: Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
[17:06:17] [Craft Scheduler Thread - 20 - Prism/WARN]: [Prism] Database did not configure correctly.
[17:06:17] [Craft Scheduler Thread - 20 - Prism/INFO]: [Prism] --------------------- ## Important ## ---------------------
[17:06:17] [Craft Scheduler Thread - 20 - Prism/INFO]: [Prism] Prism will disable most commands because it couldn't connect to a database.
[17:06:17] [Craft Scheduler Thread - 20 - Prism/INFO]: [Prism] If you're using MySQL, check your config. Be sure MySQL is running.
[17:06:17] [Craft Scheduler Thread - 20 - Prism/INFO]: [Prism] For help - try our Discord Channel or the Wiki on Github.
[17:06:17] [Craft Scheduler Thread - 20 - Prism/INFO]: [Prism] --------------------- ## ========= ## ---------------------
[17:06:17] [Thread-44/INFO]: --------------------
[17:06:17] [Thread-44/INFO]: [CoreProtect] Version 21.2 is now available.
[17:06:17] [Thread-44/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[17:06:17] [Thread-44/INFO]: --------------------
[17:06:17] [Server thread/INFO]: [MythicMobs] ✓Using HolographicDisplays plugin for holograms
[17:06:17] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[17:06:17] [Server thread/INFO]: [TigerReports] Le plugin utilise BungeeCord.
[17:06:17] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[17:06:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[17:06:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[17:06:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion instawall due to a missing plugin: InstaWall
[17:06:17] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.46 which is not a depend or softdepend of this plugin.
[17:06:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[17:06:17] [Server thread/WARN]: [PlaceholderAPI] There was an issue with loading an expansion.
[17:06:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[17:06:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[17:06:17] [Server thread/INFO]: 4 placeholder hook(s) registered!
[17:06:17] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[17:06:17] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[17:06:17] [Server thread/INFO]: Resource pack has not changed, using hash y95I0cFBkJNdN0tA2/vcQi6Sdq4= (1655335452000 <= 1655335452000)
[17:06:17] [Server thread/INFO]: Done (62.912s)! For help, type "help"
[17:06:17] [Server thread/INFO]: Timings Reset
[17:06:17] [Server thread/INFO]: [Magic] Finished loading data.
[17:06:17] [Server thread/WARN]: [BeautyQuests] The NPC 24 does not exist for quest 6, branch 0, stage -1(ITEMS)
[17:06:17] [Server thread/WARN]: [BeautyQuests] The NPC 24 does not exist for quest 6, branch 0, stage -1(ITEMS)
[17:06:17] [Server thread/WARN]: [BeautyQuests] The NPC 24 does not exist for quest 6, branch 0, stage -1(ITEMS)
[17:06:17] [Server thread/INFO]: [BeautyQuests] 5 quests loaded (0.118s)!
[17:06:17] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 292
[17:06:17] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[17:06:17] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[17:06:18] [Craft Scheduler Thread - 31 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.6.3 New Version: 6.9.5
[17:06:18] [Server thread/INFO]: EliteBosses: Loaded brood-mother.yml successfully!
[17:06:18] [Server thread/INFO]: EliteBosses: Loaded plague-bloater.yml successfully!
[17:06:18] [Server thread/INFO]: EliteBosses: Loaded undead-assassin.yml successfully!
[17:06:18] [Server thread/INFO]: EliteBosses: Loaded yijki.yml successfully!
[17:06:18] [Server thread/INFO]: EliteBosses: Loaded king-slime.yml successfully!
[17:06:18] [Server thread/INFO]: EliteBosses: Loaded treasure-goblin.yml successfully!
[17:06:18] [Craft Scheduler Thread - 21 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[17:06:18] [Server thread/WARN]: [EliteBosses] Loaded class com.gmail.filoghost.holographicdisplays.api.placeholder.PlaceholderReplacer from HolographicDisplays v3.0.0 which is not a depend or softdepend of this plugin.
[17:06:18] [Server thread/INFO]: Failed to load HolographicDisplays Support
[17:06:24] [User Authenticator #1/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.inventory.ItemStack org.bukkit.inventory.ItemStack.deserialize(java.util.Map)' of class org.bukkit.inventory.ItemStack for deserialization
java.lang.IllegalArgumentException: Newer version! Server downgrades are not supported!
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:145) ~[guava-31.0.1-jre.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.util.CraftMagicNumbers.getMaterial(CraftMagicNumbers.java:259) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.inventory.ItemStack.deserialize(ItemStack.java:508) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:48) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:230) ~[snakeyaml-1.30.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:220) ~[snakeyaml-1.30.jar:?]
    at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:27) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:158) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:115) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:304) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at com.elmakers.mine.bukkit.data.YamlMageDataStore.load(YamlMageDataStore.java:131) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.getMageData(MagicController.java:979) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.onPreLogin(MagicController.java:940) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.listener.PlayerController.onPlayerPreLogin(PlayerController.java:1010) ~[Magic-10.8.4.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor92.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:git-Paper-81]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$LoginHandler.fireEvents(ServerLoginPacketListenerImpl.java:456) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$1.run(ServerLoginPacketListenerImpl.java:337) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:24] [User Authenticator #1/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.inventory.ItemStack org.bukkit.inventory.ItemStack.deserialize(java.util.Map)' of class org.bukkit.inventory.ItemStack for deserialization
java.lang.IllegalArgumentException: Newer version! Server downgrades are not supported!
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:145) ~[guava-31.0.1-jre.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.util.CraftMagicNumbers.getMaterial(CraftMagicNumbers.java:259) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.inventory.ItemStack.deserialize(ItemStack.java:508) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:48) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:230) ~[snakeyaml-1.30.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:220) ~[snakeyaml-1.30.jar:?]
    at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:27) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:158) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:115) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:304) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at com.elmakers.mine.bukkit.data.YamlMageDataStore.load(YamlMageDataStore.java:131) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.getMageData(MagicController.java:979) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.onPreLogin(MagicController.java:940) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.listener.PlayerController.onPlayerPreLogin(PlayerController.java:1010) ~[Magic-10.8.4.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor92.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:git-Paper-81]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$LoginHandler.fireEvents(ServerLoginPacketListenerImpl.java:456) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$1.run(ServerLoginPacketListenerImpl.java:337) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:24] [User Authenticator #1/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.inventory.ItemStack org.bukkit.inventory.ItemStack.deserialize(java.util.Map)' of class org.bukkit.inventory.ItemStack for deserialization
java.lang.IllegalArgumentException: Newer version! Server downgrades are not supported!
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:145) ~[guava-31.0.1-jre.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.util.CraftMagicNumbers.getMaterial(CraftMagicNumbers.java:259) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.inventory.ItemStack.deserialize(ItemStack.java:508) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:48) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:230) ~[snakeyaml-1.30.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:220) ~[snakeyaml-1.30.jar:?]
    at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:27) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:158) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:115) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:304) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at com.elmakers.mine.bukkit.data.YamlMageDataStore.load(YamlMageDataStore.java:131) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.getMageData(MagicController.java:979) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.onPreLogin(MagicController.java:940) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.listener.PlayerController.onPlayerPreLogin(PlayerController.java:1010) ~[Magic-10.8.4.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor92.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:git-Paper-81]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$LoginHandler.fireEvents(ServerLoginPacketListenerImpl.java:456) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$1.run(ServerLoginPacketListenerImpl.java:337) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:24] [User Authenticator #1/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.inventory.ItemStack org.bukkit.inventory.ItemStack.deserialize(java.util.Map)' of class org.bukkit.inventory.ItemStack for deserialization
java.lang.IllegalArgumentException: Newer version! Server downgrades are not supported!
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:145) ~[guava-31.0.1-jre.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.util.CraftMagicNumbers.getMaterial(CraftMagicNumbers.java:259) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.inventory.ItemStack.deserialize(ItemStack.java:508) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:48) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:230) ~[snakeyaml-1.30.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:220) ~[snakeyaml-1.30.jar:?]
    at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:27) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:158) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:115) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:304) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at com.elmakers.mine.bukkit.data.YamlMageDataStore.load(YamlMageDataStore.java:131) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.getMageData(MagicController.java:979) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.onPreLogin(MagicController.java:940) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.listener.PlayerController.onPlayerPreLogin(PlayerController.java:1010) ~[Magic-10.8.4.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor92.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:git-Paper-81]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$LoginHandler.fireEvents(ServerLoginPacketListenerImpl.java:456) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$1.run(ServerLoginPacketListenerImpl.java:337) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:24] [User Authenticator #1/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.inventory.ItemStack org.bukkit.inventory.ItemStack.deserialize(java.util.Map)' of class org.bukkit.inventory.ItemStack for deserialization
java.lang.IllegalArgumentException: Newer version! Server downgrades are not supported!
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:145) ~[guava-31.0.1-jre.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.util.CraftMagicNumbers.getMaterial(CraftMagicNumbers.java:259) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.inventory.ItemStack.deserialize(ItemStack.java:508) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:48) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:230) ~[snakeyaml-1.30.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:220) ~[snakeyaml-1.30.jar:?]
    at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:27) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:158) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:156) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:115) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:304) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at com.elmakers.mine.bukkit.data.YamlMageDataStore.load(YamlMageDataStore.java:131) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.getMageData(MagicController.java:979) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.MagicController.onPreLogin(MagicController.java:940) ~[Magic-10.8.4.jar:?]
    at com.elmakers.mine.bukkit.magic.listener.PlayerController.onPlayerPreLogin(PlayerController.java:1010) ~[Magic-10.8.4.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor92.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:git-Paper-81]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$LoginHandler.fireEvents(ServerLoginPacketListenerImpl.java:456) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl$1.run(ServerLoginPacketListenerImpl.java:337) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:24] [User Authenticator #1/WARN]: [Magic]  Error loading bound wand: spellbook
[17:06:24] [User Authenticator #1/WARN]: [Magic]  Error loading bound wand: magicsword
[17:06:24] [User Authenticator #1/WARN]: [Magic]  Error loading bound wand: mirrorshield
[17:06:24] [User Authenticator #1/WARN]: [Magic]  Error loading bound wand: wand
[17:06:24] [User Authenticator #1/WARN]: [Magic]  Error loading bound wand: magicbow
[17:06:24] [User Authenticator #1/INFO]: UUID of player GhostlyArua9 is b6538c96-f85f-4ecb-bd2c-b3e203c25275
[17:06:25] [Server thread/INFO]: GhostlyArua9 joined the game
[17:06:25] [Server thread/INFO]: GhostlyArua9[/67.48.142.90:60777] logged in with entity id 30 at ([paper119]-118.5, 77.0, -43.5)
[17:06:25] [Server thread/WARN]: [Essentials] Permissions lag notice with (LuckPermsHandler). Response took 48.461227ms. Summary: Getting prefix for GhostlyArua9
[17:06:30] [Craft Scheduler Thread - 22 - SimpleScore/WARN]: [SimpleScore] Could not apply PlaceholderAPI placeholders. Disable 'asyncPlaceholders' and try again
java.lang.NullPointerException: Cannot invoke "me.casperge.realisticseasons.calendar.Date.getMonth()" because the return value of "me.casperge.realisticseasons.calendar.TimeManager.getDate(org.bukkit.World)" is null
    at me.casperge.realisticseasons.api.PAPI.onRequest(PAPI.java:122) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:99) ~[PlaceholderAPI-2.11.2.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.applyPlaceholderAPI(PlaceholderReplacer.kt:22) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.replace(PlaceholderReplacer.kt:12) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.replacePlaceholders(ScoreboardTask.kt:119) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.applyPlaceholders(ScoreboardTask.kt:112) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.getPlayerBoard(ScoreboardTask.kt:103) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.run(ScoreboardTask.kt:69) ~[SimpleScore-3.9.1.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.jar:git-Paper-81]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:34] [Server thread/INFO]: GhostlyArua9 issued server command: /gmc
[17:06:35] [Craft Scheduler Thread - 7 - SimpleScore/WARN]: [SimpleScore] Could not apply PlaceholderAPI placeholders. Disable 'asyncPlaceholders' and try again
java.lang.NullPointerException: Cannot invoke "me.casperge.realisticseasons.season.Season.ordinal()" because "<parameter1>" is null
    at me.casperge.realisticseasons.calendar.Calendar.getSeasonStart(Calendar.java:50) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.calendar.TimeManager.getDaysUntilNextSeason(TimeManager.java:153) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.api.PAPI.onRequest(PAPI.java:113) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:99) ~[PlaceholderAPI-2.11.2.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.applyPlaceholderAPI(PlaceholderReplacer.kt:22) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.replace(PlaceholderReplacer.kt:12) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.replacePlaceholders(ScoreboardTask.kt:119) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.applyPlaceholders(ScoreboardTask.kt:112) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.getPlayerBoard(ScoreboardTask.kt:103) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.run(ScoreboardTask.kt:69) ~[SimpleScore-3.9.1.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.jar:git-Paper-81]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:36] [Server thread/INFO]: GhostlyArua9 issued server command: /pl
[17:06:40] [Craft Scheduler Thread - 29 - SimpleScore/WARN]: [SimpleScore] Could not apply PlaceholderAPI placeholders. Disable 'asyncPlaceholders' and try again
java.lang.NullPointerException: Cannot invoke "me.casperge.realisticseasons.season.Season.ordinal()" because "<parameter1>" is null
    at me.casperge.realisticseasons.calendar.Calendar.getSeasonStart(Calendar.java:50) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.calendar.TimeManager.getDaysUntilNextSeason(TimeManager.java:153) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.api.PAPI.onRequest(PAPI.java:113) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:99) ~[PlaceholderAPI-2.11.2.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.applyPlaceholderAPI(PlaceholderReplacer.kt:22) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.replace(PlaceholderReplacer.kt:12) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.replacePlaceholders(ScoreboardTask.kt:119) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.applyPlaceholders(ScoreboardTask.kt:112) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.getPlayerBoard(ScoreboardTask.kt:103) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.run(ScoreboardTask.kt:69) ~[SimpleScore-3.9.1.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.jar:git-Paper-81]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:45] [Craft Scheduler Thread - 7 - SimpleScore/WARN]: [SimpleScore] Could not apply PlaceholderAPI placeholders. Disable 'asyncPlaceholders' and try again
java.lang.NullPointerException: Cannot invoke "me.casperge.realisticseasons.season.Season.ordinal()" because "<parameter1>" is null
    at me.casperge.realisticseasons.calendar.Calendar.getSeasonStart(Calendar.java:50) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.calendar.TimeManager.getDaysUntilNextSeason(TimeManager.java:153) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.api.PAPI.onRequest(PAPI.java:113) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:99) ~[PlaceholderAPI-2.11.2.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.applyPlaceholderAPI(PlaceholderReplacer.kt:22) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.replace(PlaceholderReplacer.kt:12) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.replacePlaceholders(ScoreboardTask.kt:119) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.applyPlaceholders(ScoreboardTask.kt:112) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.getPlayerBoard(ScoreboardTask.kt:103) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.run(ScoreboardTask.kt:69) ~[SimpleScore-3.9.1.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.jar:git-Paper-81]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:50] [Craft Scheduler Thread - 29 - SimpleScore/WARN]: [SimpleScore] Could not apply PlaceholderAPI placeholders. Disable 'asyncPlaceholders' and try again
java.lang.NullPointerException: Cannot invoke "me.casperge.realisticseasons.season.Season.ordinal()" because "<parameter1>" is null
    at me.casperge.realisticseasons.calendar.Calendar.getSeasonStart(Calendar.java:50) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.calendar.TimeManager.getDaysUntilNextSeason(TimeManager.java:153) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.api.PAPI.onRequest(PAPI.java:113) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:99) ~[PlaceholderAPI-2.11.2.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.applyPlaceholderAPI(PlaceholderReplacer.kt:22) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.replace(PlaceholderReplacer.kt:12) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.replacePlaceholders(ScoreboardTask.kt:119) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.applyPlaceholders(ScoreboardTask.kt:112) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.getPlayerBoard(ScoreboardTask.kt:103) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.run(ScoreboardTask.kt:69) ~[SimpleScore-3.9.1.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.jar:git-Paper-81]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:55] [Craft Scheduler Thread - 10 - SimpleScore/WARN]: [SimpleScore] Could not apply PlaceholderAPI placeholders. Disable 'asyncPlaceholders' and try again
java.lang.NullPointerException: Cannot invoke "me.casperge.realisticseasons.season.Season.ordinal()" because "<parameter1>" is null
    at me.casperge.realisticseasons.calendar.Calendar.getSeasonStart(Calendar.java:50) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.calendar.TimeManager.getDaysUntilNextSeason(TimeManager.java:153) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.casperge.realisticseasons.api.PAPI.onRequest(PAPI.java:113) ~[RealsiticSeasons-10.1.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2.jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:99) ~[PlaceholderAPI-2.11.2.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.applyPlaceholderAPI(PlaceholderReplacer.kt:22) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.placeholders.PlaceholderReplacer.replace(PlaceholderReplacer.kt:12) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.replacePlaceholders(ScoreboardTask.kt:119) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.applyPlaceholders(ScoreboardTask.kt:112) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.getPlayerBoard(ScoreboardTask.kt:103) ~[SimpleScore-3.9.1.jar:?]
    at com.r4g3baby.simplescore.scoreboard.tasks.ScoreboardTask.run(ScoreboardTask.kt:69) ~[SimpleScore-3.9.1.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.jar:git-Paper-81]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.jar:git-Paper-81]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:06:56] [Server thread/INFO]: GhostlyArua9 issued server command: /realisticseasons set spring
[17:06:57] [Server thread/INFO]: CONSOLE issued server command: /list 
[17:06:57] [Server thread/INFO]: There are 1 out of maximum 48 players online.
[17:06:57] [Server thread/INFO]: Admins: (Owner)GhostlyArua9
[17:07:28] [Server thread/INFO]: GhostlyArua9 issued server command: /citizens reload
[17:07:29] [Server thread/INFO]: GhostlyArua9 issued server command: /citizens reload
[17:07:29] [Server thread/WARN]: [BeautyQuests] Citizens has been reloaded whereas it is highly not recommended for plugins compatibilities. Unexpected behaviors may happen.
[17:07:35] [Server thread/INFO]: GhostlyArua9 issued server command: /npc create test
[17:07:35] [Server thread/WARN]: java.lang.NoSuchMethodError: 'net.minecraft.world.entity.ai.attributes.AttributeMapBase net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.ex()'
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:321)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.commands.NPCCommands.create(NPCCommands.java:624)
[17:07:35] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[17:07:35] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
[17:07:35] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[17:07:35] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.api.command.CommandManager.executeMethod(CommandManager.java:159)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:91)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:187)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:305)
[17:07:35] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[17:07:35] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[17:07:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:909)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.handleCommand(PlayerConnection.java:2382)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$18(PlayerConnection.java:2153)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[17:07:35] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[17:07:35] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1359)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:183)
[17:07:35] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1336)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1329)
[17:07:35] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1307)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1192)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:303)
[17:07:35] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:07:35] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "net.minecraft.world.entity.ai.attributes.AttributeModifiable.a(double)" because "<local4>" is null
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:339)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.commands.NPCCommands.create(NPCCommands.java:624)
[17:07:35] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[17:07:35] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
[17:07:35] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[17:07:35] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.api.command.CommandManager.executeMethod(CommandManager.java:159)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:91)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:187)
[17:07:35] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:305)
[17:07:35] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[17:07:35] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[17:07:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:909)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.handleCommand(PlayerConnection.java:2382)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$18(PlayerConnection.java:2153)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[17:07:35] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[17:07:35] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1359)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:183)
[17:07:35] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1336)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1329)
[17:07:35] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1307)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1192)
[17:07:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:303)
[17:07:35] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:07:37] [Server thread/INFO]: CONSOLE issued server command: /list 
[17:07:37] [Server thread/INFO]: There are 1 out of maximum 48 players online.
[17:07:37] [Server thread/INFO]: Admins: (Owner)GhostlyArua9
[17:08:17] [Server thread/INFO]: CONSOLE issued server command: /list 
[17:08:17] [Server thread/INFO]: There are 1 out of maximum 48 players online.
[17:08:17] [Server thread/INFO]: Admins: (Owner)GhostlyArua9