Paste #120371: DenizenMetaBot Auto-Repaste Of log From adan._.0418

Date: 2024/02/19 03:25:17 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[10:47:37] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:47:40] [ServerMain/INFO]: Loaded 1174 recipes
[10:47:40] [ServerMain/INFO]: Loaded 1271 advancements
[10:47:40] [Server thread/INFO]: Starting minecraft server version 1.20.2
[10:47:40] [Server thread/INFO]: Loading properties
[10:47:40] [Server thread/INFO]: This server is running Purpur version git-Purpur-2095 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 4f12f5d on HEAD)
[10:47:41] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:47:41] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:47:41] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 5 worker threads, and gen parallelism of 5 threads
[10:47:42] [Server thread/WARN]: [Pufferfish] Will not enable SIMD! These optimizations are only safely supported on Java 17, Java 18, and Java 19.
[10:47:42] [Server thread/INFO]: Default game type: SURVIVAL
[10:47:42] [Server thread/INFO]: Generating keypair
[10:47:42] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:50007
[10:47:42] [Server thread/INFO]: Using epoll channel type
[10:47:42] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[10:47:42] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[10:47:43] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[10:47:44] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:47:50] [Server thread/WARN]: Legacy plugin ModPacketFix v1.0.1 does not specify an api-version.
[10:47:50] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.10.0-24w05b-SNAPSHOT
[10:47:50] [Server thread/INFO]: [ViaVersion] ViaVersion 4.10.0-24w05b-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[10:47:51] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[10:47:51] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[10:47:51] [Server thread/INFO]: [ViaBackwards] Loading translations...
[10:47:51] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[10:47:51] [Server thread/ERROR]: [ViaVersion] Error initializing plugin 'ViaVersion-4.10.0-24w05b-SNAPSHOT.jar' in folder 'plugins' (Is it up to date?)
java.lang.NoClassDefFoundError: com/viaversion/viaversion/protocols/protocol1_9_3to1_9_1_2/types/Chunk1_9_3_4Type
    at com.viaversion.viabackwards.api.ViaBackwardsPlatform.init(ViaBackwardsPlatform.java:95) ~[ViaBackwards-4.9.0-23w41a-SNAPSHOT.jar:?]
    at com.viaversion.viabackwards.BukkitPlugin.lambda$new$0(BukkitPlugin.java:35) ~[ViaBackwards-4.9.0-23w41a-SNAPSHOT.jar:?]
    at com.viaversion.viaversion.ViaManagerImpl.init(ViaManagerImpl.java:111) ~[ViaVersion-4.10.0-24w05b-SNAPSHOT.jar:?]
    at com.viaversion.viaversion.ViaVersionPlugin.onLoad(ViaVersionPlugin.java:91) ~[ViaVersion-4.10.0-24w05b-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.loadPlugins(CraftServer.java:528) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:310) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1102) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.viaversion.viaversion.protocols.protocol1_9_3to1_9_1_2.types.Chunk1_9_3_4Type
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]
    ... 13 more
[10:47:51] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.106
[10:47:51] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[10:47:52] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[10:47:52] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[10:47:52] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.20.4-v2
[10:47:59] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.18+6616-abda4e0
[10:48:01] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@12e2a2a5]
[10:48:01] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+25-fbfd7e9
[10:48:01] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.20.4-v3
[10:48:01] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.3.3-Premium
[10:48:01] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.227
[10:48:01] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.4.9
[10:48:01] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.6.10.0
[10:48:01] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+25-fbfd7e9
[10:48:01] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.27.0
[10:48:01] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.9.6
[10:48:01] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3250)
[10:48:01] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.5.1-9aedaa15
[10:48:01] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[10:48:01] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[10:48:01] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.9.0
[10:48:01] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[10:48:01] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.0-23w41a-SNAPSHOT
[10:48:01] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 6993-DEV)
[10:48:01] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.2-SNAPSHOT
[10:48:01] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.6.2-20240106.121459-29.jar'
[10:48:01] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_20_R2
[10:48:01] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.59
[10:48:01] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.5.3
[10:48:01] [Server thread/INFO]: [ShiftAndF] Loading server plugin ShiftAndF v1.2.0
[10:48:01] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.9.0
[10:48:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[10:48:01] [Server thread/INFO]: [AutoMessage] Loading server plugin AutoMessage v5.1.3
[10:48:01] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.26
[10:48:01] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v0.9.3
[10:48:01] [Server thread/INFO]: [MobFarmManager] Loading server plugin MobFarmManager v2.1.0.4
[10:48:01] [Server thread/INFO]: [GUIPlus] Loading server plugin GUIPlus v2.9
[10:48:01] [Server thread/INFO]: [PluginManager] Loading server plugin PluginManager v2.8.1
[10:48:01] [Server thread/INFO]: [GriefDefender] Loading server plugin GriefDefender v2.5.5
[10:48:01] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.19.0
[10:48:01] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (475 ms).
[10:48:01] [Server thread/INFO]: [Shopkeepers] Loading config.
[10:48:01] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[10:48:01] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[10:48:01] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[10:48:01] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.6
[10:48:01] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.8.0
[10:48:01] [Server thread/INFO]: [ModPacketFix] Loading server plugin ModPacketFix v1.0.1
[10:48:01] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.0.7
[10:48:01] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.12.1
[10:48:01] [Server thread/INFO]: [AntiCreeper] Loading server plugin AntiCreeper v2.8
[10:48:01] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.5-SNAPSHOT
[10:48:01] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.9.5_114.jar'
[10:48:01] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[10:48:01] [Server thread/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:48:02] [Server thread/WARN]: [MMOItems] Could not register stat 'ITEM_DAMAGE' as a stat with the same ID already exists.
[10:48:02] [Server thread/INFO]: [MMOItems Template Modifiers] Preloading template modifiers, please wait..
[10:48:02] [Server thread/INFO]: [MMOItems Item Templates] Preloading item templates, please wait..
[10:48:02] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:48:02] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.106
[10:48:03] [Server thread/INFO]:         __    
[10:48:03] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.106
[10:48:03] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[10:48:03] [Server thread/INFO]: 
[10:48:03] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:48:04] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:48:06] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:48:06] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:48:07] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4841ms)
[10:48:07] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[10:48:07] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[10:48:07] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[10:48:07] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:48:07] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[10:48:07] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:48:07] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.20.4-v2
[10:48:07] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Purpur (Paper) (Spigot) (git-Purpur-2095) : v1_20_R2 (Minecraft 1.20.2)
[10:48:07] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[10:48:09] [Server thread/INFO]: [BKCommonLib] I don't make mistakes. I just find ways not to code this plugin.
[10:48:09] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.20.4-v2 (build: 1667) enabled! (1.986s)
[10:48:09] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.18+6616-abda4e0
[10:48:09] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:48:09] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:48:09] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R2.PaperweightAdapter as the Bukkit adapter
[10:48:11] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from WorldEdit (>= v7.0.0)
[10:48:11] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.3.3-Premium
[10:48:12] [Server thread/INFO]: [PlotSquared/ClassLoaderCaptionProvider] No resource for locale 'zh_TW' found in the plugin file.Please ensure you have placed the latest version of the file messages_zh_TW.json in the 'lang' folder.You may be able to find completed translations at https://intellectualsites.crowdin.com/plotsquared
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: zh-TW
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[10:48:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 1336014
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: 768659082
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[10:48:13] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using EssentialsX as a complementary UUID service
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using Paper as a complementary UUID service
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 0 UUIDs will be cached
[10:48:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[10:48:13] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[10:48:13] [Server thread/INFO]: [GriefDefender] Enabling GriefDefender v2.5.5
[10:48:13] [Server thread/INFO]: [GriefDefender] Loading libraries...
[10:48:14] [Server thread/INFO]: [GriefDefender] GriefDefender boot start.
[10:48:15] [Server thread/INFO]: [GriefDefender] Loading configuration...
[10:48:16] [Server thread/INFO]: [GriefDefender] Loading Flag Definition Presets...
[10:48:16] [Server thread/INFO]: [GriefDefender] Loading flag definitions from file 'minecraft.conf'...
[10:48:17] [Server thread/INFO]: [GriefDefender] Detected Vault. Initializing VaultProvider...
[10:48:17] [Server thread/INFO]: [GriefDefender] [ACF] Enabled Asynchronous Tab Completion Support!
[10:48:17] [Server thread/INFO]: [GriefDefender] Loaded successfully.
[10:48:17] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.7
[10:48:18] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.20.2.
[10:48:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.0.7]
[10:48:18] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[10:48:18] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[10:48:18] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.12.1
[10:48:18] [Server thread/INFO]: Preparing level "world"
[10:48:18] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[10:48:18] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[10:48:18] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[10:48:18] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[10:48:18] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[10:48:18] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[10:48:18] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[10:48:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.0.7
[10:48:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: 301d078
[10:48:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[10:48:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[10:48:20] [Server thread/INFO]: [GriefDefender] [world] 4 total claims loaded.
[10:48:20] [Server thread/INFO]: [GriefDefender] Loading schematics for world world...
[10:48:20] [Server thread/INFO]: [GriefDefender] [world_nether] 0 total claims loaded.
[10:48:20] [Server thread/INFO]: [GriefDefender] Loading schematics for world world_nether...
[10:48:21] [Server thread/INFO]: [GriefDefender] [world_the_end] 0 total claims loaded.
[10:48:21] [Server thread/INFO]: [GriefDefender] Loading schematics for world world_the_end...
[10:48:21] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:48:21] [Server thread/INFO]: Time elapsed: 231 ms
[10:48:21] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:48:21] [Server thread/INFO]: Time elapsed: 33 ms
[10:48:21] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:48:21] [Server thread/INFO]: Time elapsed: 26 ms
[10:48:21] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.10.0-24w05b-SNAPSHOT
[10:48:21] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.2 (764)
[10:48:21] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[10:48:21] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[10:48:21] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:48:21] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+25-fbfd7e9
[10:48:21] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[10:48:22] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:48:22] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:48:22] [Server thread/INFO]: [Essentials] Loaded 39095 items from items.json.
[10:48:22] [Server thread/INFO]: [Essentials] Using locale en_US
[10:48:22] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:48:22] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:48:22] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[10:48:22] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:48:22] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.20.4-v3
[10:48:22] [Server thread/INFO]: [My_Worlds] Loading world 'zombie_trees' using chunk generator: ':{"coordinateScale":684.412,"heightScale":684.412,"lowerLimitScale":512.0,"upperLimitScale":512.0,"depthNoiseScaleX":200.0,"depthNoiseScaleZ":200.0,"depthNoiseScaleExponent":0.5,"mainNoiseScaleX":80.0,"mainNoiseScaleY":160.0,"mainNoiseScaleZ":80.0,"baseSize":8.5,"stretchY":12.0,"biomeDepthWeight":1.0,"biomeDepthOffset":0.0,"biomeScaleWeight":1.0,"biomeScaleOffset":0.0,"seaLevel":63,"useCaves":true,"useDungeons":true,"dungeonChance":8,"useStrongholds":true,"useVillages":true,"useMineShafts":true,"useTemples":true,"useMonuments":true,"useMansions":true,"useRavines":true,"useWaterLakes":true,"waterLakeChance":4,"useLavaLakes":true,"lavaLakeChance":80,"useLavaOceans":false,"fixedBiome":-1,"biomeSize":4,"riverSize":4,"dirtSize":33,"dirtCount":10,"dirtMinHeight":0,"dirtMaxHeight":256,"gravelSize":33,"gravelCount":8,"gravelMinHeight":0,"gravelMaxHeight":256,"graniteSize":33,"graniteCount":10,"graniteMinHeight":0,"graniteMaxHeight":80,"dioriteSize":33,"dioriteCount":10,"dioriteMinHeight":0,"dioriteMaxHeight":80,"andesiteSize":33,"andesiteCount":10,"andesiteMinHeight":0,"andesiteMaxHeight":80,"coalSize":17,"coalCount":20,"coalMinHeight":0,"coalMaxHeight":128,"ironSize":9,"ironCount":20,"ironMinHeight":0,"ironMaxHeight":64,"goldSize":9,"goldCount":2,"goldMinHeight":0,"goldMaxHeight":32,"redstoneSize":8,"redstoneCount":8,"redstoneMinHeight":0,"redstoneMaxHeight":16,"diamondSize":8,"diamondCount":1,"diamondMinHeight":0,"diamondMaxHeight":16,"lapisSize":7,"lapisCount":1,"lapisCenterHeight":16,"lapisSpread":16,"maxHeight":256,"noISE_Height":319}'
[10:48:23] [Server thread/INFO]: [GriefDefender] [zombie_trees] 2 total claims loaded.
[10:48:23] [Server thread/INFO]: [GriefDefender] Loading schematics for world zombie_trees...
[10:48:23] [Server thread/INFO]: Preparing start region for dimension minecraft:zombie_trees
[10:48:23] [pool-26-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[10:48:23] [pool-26-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[10:48:23] [Server thread/INFO]: Time elapsed: 881 ms
[10:48:24] [Server thread/INFO]: [My_Worlds] Loading world 'test0' using chunk generator: 'PlotSquared'
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/PlotSquared] Detected world load for 'test0'
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[10:48:24] [Worker-Main-3/INFO]: [P2] Loading flags for area: test0
[10:48:24] [Worker-Main-3/INFO]: [P2] Area flags: []
[10:48:24] [Worker-Main-3/INFO]: [P2] Road flags: []
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] - road schematic: false
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name test0
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = false
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 3
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 46
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = minecraft:stone
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = minecraft:grass_block
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = minecraft:stone_slab
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = minecraft:stone
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 42
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 7
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[10:48:24] [Worker-Main-3/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[10:48:24] [Server thread/INFO]: [GriefDefender] [test0] 1 total claims loaded.
[10:48:24] [Server thread/INFO]: [GriefDefender] Loading schematics for world test0...
[10:48:24] [Server thread/INFO]: Preparing start region for dimension minecraft:test0
[10:48:24] [Server thread/INFO]: Time elapsed: 214 ms
[10:48:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.20.4-v3]
[10:48:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.20.4-v3]
[10:48:24] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[10:48:24] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.20.4-v3 (build: 268) enabled! (2.153s)
[10:48:24] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.227
[10:48:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[10:48:25] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.4.9
[10:48:26] [Server thread/INFO]: Server version: v1_20_R2 - 1.20.2 - purpur  git-Purpur-2095 (MC: 1.20.2)
[10:48:27] [Server thread/INFO]: CMI hooked.
[10:48:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.4.9]
[10:48:27] [Server thread/INFO]: PlaceholderAPI hooked.
[10:48:27] [Server thread/INFO]: Updated (EN) language file. Took 32ms
[10:48:27] [Server thread/INFO]: [CMI] Enabling CMI v9.6.10.0
[10:48:27] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[10:48:27] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[10:48:27] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[10:48:27] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[10:48:27] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[10:48:27] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[10:48:27] [Server thread/INFO]: _______________________________________________________
[10:48:27] [Server thread/INFO]:   Integrating PaperSpigot async methods
[10:48:27] [Server thread/INFO]:   Vault found. (Loaded: true)
[10:48:27] [Server thread/INFO]:   Citizens found. (Loaded: false)
[10:48:27] [Server thread/INFO]:   59 Enabled and 0 Disabled modules
[10:48:28] [Server thread/INFO]:   ProtocolLib found. (Loaded: true)
[10:48:28] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.106
[10:48:28] [Server thread/INFO]:   Initialized Cipher256 AES
[10:48:28] [Server thread/INFO]:   Loaded (61) regular alias into memory. Took 71ms
[10:48:28] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 2ms
[10:48:28] [Server thread/INFO]:   Random teleport location is out of maximal world border X coordinate bounds for world world. Please update values.
[10:48:28] [Server thread/INFO]:   Random teleport location is out of minimal world border Z coordinate bounds for world world. Please update values.
[10:48:28] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for world world. Please update values.
[10:48:28] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (0) name
[10:48:28] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (flat) name
[10:48:28] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (owo) name
[10:48:28] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (test) name
[10:48:28] [Server thread/INFO]:   3.42.0 data base type detected
[10:48:28] [Server thread/INFO]:   Started SqLite data base. Took 182ms
[10:48:28] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: EssentialsX Economy
[10:48:29] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[10:48:29] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 1ms
[10:48:29] [Server thread/INFO]:   Loaded (144) custom mob heads into memory. Took 24ms
[10:48:29] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 42ms
[10:48:29] [Server thread/INFO]:   Loaded (5) kits into memory. Took 14ms
[10:48:29] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 16ms
[10:48:29] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 3ms
[10:48:29] [Server thread/INFO]:   
[10:48:29] [Server thread/INFO]: Attention! Found 2 duplicates in database. Same name, different UUID. This can cause some minor issues. Please remove one of them from database with /cmi removeuser [uuid] or /cmi removeuser duplicates 
[10:48:29] [Server thread/INFO]: NorthSpit 60541f27-d160-4653-b982-e48aa417ce1f last seen: 18 hours 32 min 53 sec  
[10:48:29] [Server thread/INFO]: NorthSpit 24e38b6f-2c27-2c11-928d-428fcb10cfae last seen: Unknown 
[10:48:29] [Server thread/INFO]: 48 f177220c-8194-2f90-87e9-8172dc5c7b14 last seen: Unknown 
[10:48:29] [Server thread/INFO]: 48 3b81e13d-f0af-2402-ad1f-354d55c19682 last seen: Unknown
[10:48:29] [Server thread/INFO]:   Loaded (34) player data into memory. Took 28ms
[10:48:29] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 0ms
[10:48:29] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[10:48:29] [Server thread/INFO]:   Loaded (0) custom alias into memory. Took 1ms
[10:48:29] [Server thread/INFO]:   Registered events. Took 215ms
[10:48:29] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 6ms
[10:48:29] [Server thread/INFO]:   Loaded (EN) language file into memory. Took 200ms
[10:48:29] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 66ms
[10:48:29] [Server thread/INFO]:   VaultPermissions found. (Loaded: true)
[10:48:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.6.10.0]
[10:48:29] [Server thread/INFO]:   PlaceholderAPI hooked.
[10:48:29] [Server thread/INFO]:   PlaceholderAPI found. (Loaded: true)
[10:48:29] [Server thread/INFO]:   mcMMO found. (Loaded: true)
[10:48:29] [Server thread/INFO]:   Starting world timer.
[10:48:29] [Server thread/INFO]:   Initializing world manager.
[10:48:29] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 8ms
[10:48:29] [Server thread/INFO]:   Loaded GeoIP
[10:48:29] [Server thread/INFO]:   Loaded (0) skin cache entries into memory. Took 0ms
[10:48:29] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[10:48:29] [Server thread/INFO]:   Version 9.6.10.0 has been enabled
[10:48:29] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[10:48:30] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+25-fbfd7e9
[10:48:30] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[10:48:30] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.27.0
[10:48:30] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.9.6
[10:48:30] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] No bot token has been set in the config; a bot token is required to connect to Discord.
[10:48:30] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for server list ping support
[10:48:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: premiumvanish [2.9.6]
[10:48:30] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[10:48:30] [Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[10:48:30] [Server thread/INFO]: [PremiumVanish] Hooked into CMI
[10:48:30] [Server thread/INFO]: [PremiumVanish] Hooked into DiscordSRV
[10:48:30] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for advancement interception
[10:48:30] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3250)
[10:48:30] [Server thread/INFO]: [Citizens] Loading external libraries
[10:48:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[10:48:31] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[10:48:31] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[10:48:31] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.5.1-9aedaa15
[10:48:31] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.2)...
[10:48:31] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[10:48:31] [pool-33-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (6405e850eea61a4b9bf4f0d0cbb80fe20b3cfb90)
[10:48:33] [Server thread/INFO]: [MythicMobs] Mythic mcMMO Support has been enabled!
[10:48:33] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[10:48:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[10:48:33] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[10:48:33] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[10:48:33] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[10:48:33] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[10:48:33] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[10:48:35] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:48:35] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:48:35] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:48:35] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/container/plugins/MythicMobs/stats.yml
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:48:36] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[10:48:36] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[10:48:36] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[10:48:36] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.5.1 ( build 9aedaa15 ) has been successfully loaded!
[10:48:36] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.9.0
[10:48:36] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[10:48:36] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into CMI!
[10:48:36] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[10:48:36] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[10:48:36] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[10:48:36] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[10:48:36] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[10:48:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.9.0]
[10:48:37] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[10:48:37] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[10:48:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[10:48:37] [Server thread/INFO]: [TAB] Enabled in 223ms
[10:48:37] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.0-23w41a-SNAPSHOT
[10:48:37] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 6993-DEV)
[10:48:37] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1377), impl for Spigot v1.3.0-SNAPSHOT (build 6993-DEV) 
[10:48:37] [Server thread/WARN]: java.lang.IllegalAccessException: class com.denizenscript.denizencore.utilities.ReflectionHelper cannot access a member of class java.lang.Module (in module java.base) with package access
[10:48:37] [Server thread/WARN]:     at java.base/jdk.internal.reflect.Reflection.newIllegalAccessException(Unknown Source)
[10:48:37] [Server thread/WARN]:     at java.base/java.lang.reflect.AccessibleObject.checkAccess(Unknown Source)
[10:48:37] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Unknown Source)
[10:48:37] [Server thread/WARN]:     at Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizencore.utilities.ReflectionHelper.giveReflectiveAccess(ReflectionHelper.java:293)
[10:48:37] [Server thread/WARN]:     at Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizencore.utilities.ReflectionHelper.<clinit>(ReflectionHelper.java:321)
[10:48:37] [Server thread/WARN]:     at Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizencore.scripts.ScriptRegistry._registerType(ScriptRegistry.java:22)
[10:48:37] [Server thread/WARN]:     at Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizencore.scripts.ScriptRegistry._registerCoreTypes(ScriptRegistry.java:26)
[10:48:37] [Server thread/WARN]:     at Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizencore.DenizenCore.init(DenizenCore.java:139)
[10:48:37] [Server thread/WARN]:     at Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizen.Denizen.onEnable(Denizen.java:122)
[10:48:37] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[10:48:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[10:48:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[10:48:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[10:48:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:660)
[10:48:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:571)
[10:48:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:632)
[10:48:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:429)
[10:48:37] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[10:48:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1102)
[10:48:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:48:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[10:48:38] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.2 
[10:48:38] [Server thread/INFO]: +> [Denizen] Running on unrecognized (future?) Java version. May or may not work. 
[10:48:38] [Server thread/INFO]:  ERROR!
[10:48:38] [Server thread/INFO]:                  Error Message: Internal exception was thrown!
[10:48:38] [Server thread/INFO]: [Error Continued] java.lang.IllegalAccessException: class com.denizenscript.denizencore.utilities.ReflectionHelper cannot access a member of class java.lang.Module (in module java.base) with package access
[10:48:38] [Server thread/INFO]: [Error Continued]   java.base/jdk.internal.reflect.Reflection.newIllegalAccessException(Unknown Source)
[10:48:38] [Server thread/INFO]: [Error Continued]   java.base/java.lang.reflect.AccessibleObject.checkAccess(Unknown Source)
[10:48:38] [Server thread/INFO]: [Error Continued]   java.base/java.lang.reflect.Method.invoke(Unknown Source)
[10:48:38] [Server thread/INFO]: [Error Continued]   Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizencore.utilities.ReflectionHelper.giveReflectiveAccess(ReflectionHelper.java:293)
[10:48:38] [Server thread/INFO]: [Error Continued]   Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:37)
[10:48:38] [Server thread/INFO]: [Error Continued]   Denizen-1.3.0-b6993-DEV.jar//com.denizenscript.denizen.Denizen.onEnable(Denizen.java:154)
[10:48:38] [Server thread/INFO]: [Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[10:48:38] [Server thread/INFO]: [Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[10:48:38] [Server thread/INFO]: [Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[10:48:38] [Server thread/INFO]: [Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[10:48:38] [Server thread/INFO]: [Error Continued]   org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:660)
[10:48:38] [Server thread/INFO]: [Error Continued]   org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:571)
[10:48:38] [Server thread/INFO]: [Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:632)
[10:48:38] [Server thread/INFO]: [Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:429)
[10:48:38] [Server thread/INFO]: [Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[10:48:38] [Server thread/INFO]: [Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1102)
[10:48:38] [Server thread/INFO]: [Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:48:38] [Server thread/INFO]: [Error Continued]   java.base/java.lang.Thread.run(Unknown Source)
[10:48:38] [Server thread/ERROR]: Error occurred while enabling Denizen v1.3.0-SNAPSHOT (build 6993-DEV) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_20_R3/inventory/CraftInventoryCustom
    at com.denizenscript.denizen.nms.v1_20.Handler.<clinit>(Handler.java:276) ~[Denizen-1.3.0-b6993-DEV.jar:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Unknown Source) ~[?:?]
    at java.lang.Class.forName(Unknown Source) ~[?:?]
    at com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:55) ~[Denizen-1.3.0-b6993-DEV.jar:?]
    at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:154) ~[Denizen-1.3.0-b6993-DEV.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:660) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:571) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:632) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:429) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:345) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1102) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_20_R3.inventory.CraftInventoryCustom
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]
    ... 18 more
[10:48:38] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.0-SNAPSHOT (build 6993-DEV)
[10:48:38] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.2-SNAPSHOT
[10:48:38] [Server thread/INFO]: [MythicLib] Hooked onto DecentHolograms
[10:48:38] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[10:48:38] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[10:48:38] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[10:48:38] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[10:48:38] [Server thread/INFO]: [MythicLib] Hooked onto mcMMO
[10:48:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.6.2-SNAPSHOT]
[10:48:38] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[10:48:38] [Server thread/INFO]: [spark] Enabling spark v1.10.59
[10:48:39] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[10:48:39] [Server thread/INFO]: [spark] Starting background profiler...
[10:48:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.59]
[10:48:40] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[10:48:40] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.5.3
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 section configs from /sections/
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 shop configs from /shops/
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Updating Shop settings...
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.20.2...
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 17 shop sections.
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to AUTO in config
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Failed to automatically find compatible spawner provider, using default...
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[10:48:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Debug mode is enabled.
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading item stock provider...
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading limited selling provider...
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading all items...
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully enabled rotating shop RotatingShop, with a rotating interval of 1h
[10:48:41] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Initialized - Took 1000ms to complete
[10:48:42] [Server thread/INFO]: [ShiftAndF] Enabling ShiftAndF v1.2.0
[10:48:42] [Server thread/INFO]: [ShiftAndF] 插件成功啟用。
[10:48:42] [Server thread/INFO]: [ShiftAndF] 設定檔案已自動寫入。
[10:48:42] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.9.0
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[10:48:43] [Server thread/INFO]: [InteractiveChat] Loading languages...
[10:48:43] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[10:48:43] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[10:48:43] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[10:48:43] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[10:48:43] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[10:48:43] [Server thread/INFO]: [AutoMessage] Enabling AutoMessage v5.1.3
[10:48:43] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.26
[10:48:43] [Server thread/INFO]: [PvPManager] Using player nametags: true
[10:48:43] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[10:48:43] [Server thread/INFO]: [PvPManager] Players stored: 14
[10:48:43] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[10:48:43] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[10:48:43] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[10:48:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.26]
[10:48:43] [Server thread/INFO]: [PvPManager] mcMMO Found! Hooked successfully
[10:48:43] [Server thread/INFO]: [PvPManager] TAB Found! Using TAB to change nametags instead of scoreboards
[10:48:43] [Server thread/INFO]: [PvPManager] NPCs are supported in this version! (v1_20_R2)
[10:48:43] [Server thread/INFO]: [PvPManager] Auto Respawn is supported in this version! Using 1.15+ gamerules
[10:48:43] [Server thread/INFO]: [PvPManager] PvPManager v3.26 enabled (196 ms)
[10:48:43] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.9.3
[10:48:43] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[10:48:43] [Server thread/WARN]: [AdvancedPortals] Proxy features disabled for Advanced Portals as bungee isn't enabled on the server (spigot.yml).If you are using Paper proxies.velocity.enabled (config/paper-global.yml) or settings.velocity-support.enabled (paper.yml) may not be enabled 
[10:48:43] [Server thread/INFO]: Advanced portals have been successfully enabled!
[10:48:43] [Server thread/INFO]: [MobFarmManager] Enabling MobFarmManager v2.1.0.4
[10:48:44] [Server thread/INFO]: MobFarmManager Version 2.1.0.4 has been enabled
[10:48:44] [Server thread/INFO]: [GUIPlus] Enabling GUIPlus v2.9
[10:48:44] [Server thread/INFO]: [PluginManager] Enabling PluginManager v2.8.1
[10:48:44] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.19.0
[10:48:44] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[10:48:44] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[10:48:44] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[10:48:44] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[10:48:44] [Server thread/INFO]: --------------------
[10:48:44] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[10:48:44] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[10:48:44] [Server thread/INFO]: --------------------
[10:48:44] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.6
[10:48:44] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.8.0
[10:48:45] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Update available: 3.28.2 Current version: 3.26
[10:48:45] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Follow the link to download: https://www.spigotmc.org/resources/pvpmanager.%%__RESOURCE__%%
[10:48:49] [Server thread/INFO]: [InteractionVisualizer] Loading languages...
[10:48:49] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[10:48:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[10:48:50] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[10:48:50] [Server thread/INFO]: [ModPacketFix] Enabling ModPacketFix v1.0.1*
[10:48:50] [Server thread/INFO]: [AntiCreeper] Enabling AntiCreeper v2.8
[10:48:50] [Server thread/INFO]: [AntiCreeper] Enabled!
[10:48:50] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.5-SNAPSHOT
[10:48:51] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[10:48:51] [Server thread/INFO]: [MMOItems] Hooked onto mcMMO
[10:48:51] [Server thread/INFO]: [MMOItems LONG_SWORD DUAL_LONGSWORD] Could not load base item data 'item-particles': 
[10:48:51] [Server thread/INFO]: [MMOItems THRUSTING_SWORD SKILLED_SWORD] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[10:48:51] [Server thread/INFO]: [MMOItems SWORD YANISDARK_SWORD] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[10:48:51] [Server thread/INFO]: [MMOItems OFF_CATALYST QUICKCASTER_CATALYST] Could not load base item data 'mana-regeneration': Could not find stat with ID 'MANA_REGENERATION'
[10:48:51] [Server thread/INFO]: [MMOItems OFF_CATALYST CHARM_OF_LEVITATION] Could not load base item data 'max-stellium': Could not find stat with ID 'MAX_STELLIUM'
[10:48:51] [Server thread/INFO]: [MMOItems KATANA MASTER_KATANA] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[10:48:51] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[10:48:51] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience-enchanting': Could not find stat with ID 'ADDITIONAL_EXPERIENCE_ENCHANTING'
[10:48:51] [Server thread/INFO]: [MMOItems HAMMER THOR_HAMMER] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[10:48:51] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[10:48:51] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[10:48:51] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[10:48:51] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[10:48:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.9.5-SNAPSHOT]
[10:48:51] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[10:48:51] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[10:48:52] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:48:52] [Server thread/INFO]: Running delayed init tasks
[10:48:52] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[10:48:52] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[10:48:52] [Craft Scheduler Thread - 16 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[10:48:52] [Server thread/INFO]: [GriefDefender] Loading Global Snapshot Data...
[10:48:52] [Server thread/INFO]: [GriefDefender] Loading Admin Claim Group Data...
[10:48:52] [Server thread/INFO]: [GriefDefender] Checking for compatible economy plugin...
[10:48:52] [Server thread/INFO]: [GriefDefender] Found economy plugin 'EssentialsX Economy'. GriefDefender economy integration is now enabled.
[10:48:52] [Craft Scheduler Thread - 25 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[10:48:52] [Server thread/INFO]: [GriefDefender] BKCommonLib provider enabled!
[10:48:52] [Craft Scheduler Thread - 22 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:48:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: griefdefender [0.1]
[10:48:52] [Server thread/INFO]: [GriefDefender] PlaceholderAPI provider enabled!
[10:48:52] [Craft Scheduler Thread - 22 - Vault/INFO]: [Vault] No new version available
[10:48:52] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-CMI)!
[10:48:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Loading next rotation items for shop RotatingShop
[10:48:52] [Server thread/INFO]: Shop >> New items were just added to Magic shop, check out /shop RotatingShop. Next items in 1h 0m 0s
[10:48:52] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[10:48:53] [Craft Scheduler Thread - 18 - PluginManager/INFO]: PM | You are using the latest version of PluginManager.
[10:48:53] [Craft Scheduler Thread - 4 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] There appears to be a PlotSquared update available!
[10:48:53] [Craft Scheduler Thread - 4 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] You are running version 7.3.3-Premium, the latest version is 7.3.5
[10:48:53] [Craft Scheduler Thread - 4 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] https://www.spigotmc.org/resources/77506/updates
[10:48:53] [Craft Scheduler Thread - 8 - CMILib/INFO]: New version of CMILib was detected. Please update it
[10:48:53] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] You're 24 EssentialsX dev build(s) out of date!
[10:48:53] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[10:48:53] [Craft Scheduler Thread - 15 - EconomyShopGUI-Premium/INFO]: [EconomyShopGUI-Premium] [INFO]: There is an update available for EconomyShopGUI Premium, you are running v5.5.3 but found v5.8.2.
[10:48:53] [Craft Scheduler Thread - 15 - EconomyShopGUI-Premium/INFO]: [EconomyShopGUI-Premium] [INFO]: Download using command /eshop update
[10:48:53] [Craft Scheduler Thread - 25 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[10:48:54] [Craft Scheduler Thread - 17 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[10:48:54] [Craft Scheduler Thread - 17 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[10:48:54] [Craft Scheduler Thread - 17 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[10:48:54] [Server thread/INFO]: [Citizens] Loaded 28 NPCs.
[10:48:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[10:48:54] [Server thread/INFO]: 1 placeholder hook(s) registered!
[10:48:54] [Server thread/INFO]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[10:48:54] [Server thread/INFO]: [PremiumVanish] Your current version of PremiumVanish is outdated - New version: '2.9.7'; Currently: '2.9.6'
[10:48:54] [Server thread/INFO]: Done (74.258s)! For help, type "help"
[10:48:54] [Server thread/INFO]: [CMI] DiscordSRV found. (Loaded: true)
[10:48:54] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (2 methods)
[10:48:54] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.27.0
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:48:54] [Craft Scheduler Thread - 17 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[10:48:54] [Craft Scheduler Thread - 17 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[10:48:54] [Craft Scheduler Thread - 17 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[10:48:56] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['CIT-21953c2d0f62'/161, uuid='21953c2d-0f62-2f76-b65d-b2bcfb720a08', l='ServerLevel[world]', x=-1657.15, y=102.00, z=111.65, cpos=[-104, 6], tl=19, v=true](CIT-21953c2d0f62 at -1657.1472,102.0,111.6488)
[10:48:56] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[10:48:56] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:172)
[10:48:56] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:1014)
[10:48:56] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:410)
[10:48:56] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[10:48:56] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[10:48:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[10:48:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:48:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1497)
[10:48:56] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:486)
[10:48:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1406)
[10:48:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1177)
[10:48:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:48:56] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[10:48:57] [Craft Scheduler Thread - 21 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[10:48:58] [Craft Scheduler Thread - 24 - InteractionVisualizer/INFO]: [InteractionVisualizer] Loaded all 1 languages!
[10:48:59] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[10:49:00] [Craft Scheduler Thread - 27 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[10:50:08] [User Authenticator #0/INFO]: UUID of player Adan_TW is c22ea632-c29b-4bf0-b245-e56b7152949c
[10:50:09] [Server thread/INFO]: Adan_TW joined the game
[10:50:09] [Server thread/INFO]: Adan_TW[/36.234.66.234:56686] logged in with entity id 467 at ([zombie_trees]-7639.5449061980225, 153.22902634997106, 2749.3490968371602)
[10:50:10] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:50:10] [Server thread/ERROR]: Could not pass event PlayerTeleportEvent to MythicLib v1.6.2-SNAPSHOT
java.lang.NullPointerException: Player data not loaded
    at java.util.Objects.requireNonNull(Unknown Source) ~[?:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:432) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.api.player.MMOPlayerData.get(MMOPlayerData.java:427) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at io.lumine.mythic.lib.listener.SkillTriggers.teleport(SkillTriggers.java:142) ~[MythicLib-dist-1.6.2-20240106.121459-29.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor985.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:git-Purpur-2095]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1747) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1716) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.teleport(ServerGamePacketListenerImpl.java:1712) ~[?:?]
    at net.minecraft.server.level.ServerPlayer.startRiding(ServerPlayer.java:2601) ~[?:?]
    at net.minecraft.world.entity.Entity.startRiding(Entity.java:2909) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.mount(NMSImpl.java:1169) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.util.NMS.mount(NMS.java:681) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.trait.SitTrait.run(SitTrait.java:90) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:551) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:500) ~[Citizens-2.0.33-b3250.jar:?]
    at net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC.l(EntityHumanNPC.java:364) ~[Citizens-2.0.33-b3250.jar:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1469) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:924) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:901) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1577) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1406) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[10:50:11] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['.w.'/475, uuid='bc780f08-e96c-2d3f-8e63-7326700438a5', l='ServerLevel[zombie_trees]', x=-7627.01, y=138.00, z=2751.08, cpos=[-477, 171], tl=20, v=true](.w. at -7627.0064,138.0,2751.076)
[10:50:11] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:172)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:1014)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:410)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1497)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:486)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1406)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1177)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:50:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[10:50:11] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['.w.'/487, uuid='4f5f7c05-c29e-2982-85bc-ead4df00508b', l='ServerLevel[zombie_trees]', x=-7639.74, y=141.00, z=2753.07, cpos=[-478, 172], tl=20, v=true](.w. at -7639.7437,141.0,2753.0705)
[10:50:11] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:172)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:1014)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:410)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1497)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:486)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1406)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1177)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:50:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[10:50:11] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['CIT-ee21c9fa5d5f'/499, uuid='ee21c9fa-5d5f-2f4b-969d-f728c0eddd57', l='ServerLevel[zombie_trees]', x=-7616.66, y=138.00, z=2762.47, cpos=[-477, 172], tl=20, v=true](CIT-ee21c9fa5d5f at -7616.656,138.0,2762.465)
[10:50:11] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:172)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:1014)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:410)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1497)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:486)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1406)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1177)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:50:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[10:50:11] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC[':D'/511, uuid='63461ba6-9e89-2fce-b3e2-3c157b042102', l='ServerLevel[zombie_trees]', x=-7623.42, y=140.00, z=2762.92, cpos=[-477, 172], tl=20, v=true](:D at -7623.4235,140.0,2762.9194)
[10:50:11] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:172)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:1014)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:410)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1497)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:486)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1406)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1177)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:50:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[10:50:11] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['48'/515, uuid='f177220c-8194-2f90-87e9-8172dc5c7b14', l='ServerLevel[zombie_trees]', x=-7627.70, y=140.00, z=2757.70, cpos=[-477, 172], tl=20, v=true](48 at -7627.7,140.0,2757.7)
[10:50:11] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:172)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:1014)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:410)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1497)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:486)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1406)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1177)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:50:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[10:50:11] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['48'/538, uuid='3b81e13d-f0af-2402-ad1f-354d55c19682', l='ServerLevel[zombie_trees]', x=-7611.35, y=138.00, z=2769.59, cpos=[-476, 173], tl=20, v=true](48 at -7611.3499,138.0,2769.5889)
[10:50:11] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:172)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:1014)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:410)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[10:50:11] [Server thread/WARN]:     at Citizens-2.0.33-b3250.jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[10:50:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1497)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:486)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1406)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1177)
[10:50:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[10:50:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[10:50:15] [Server thread/ERROR]: Exception when Adan_TW attempted to tab complete denizen 
org.bukkit.command.CommandException: Unhandled exception during tab completion for command '/denizen ' in plugin Denizen v1.3.0-SNAPSHOT (build 6993-DEV)
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:150) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.Command.tabComplete(Command.java:93) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.tabComplete(SimpleCommandMap.java:253) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.tabCompleteCommand(CraftServer.java:2556) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.tabComplete(CraftServer.java:2528) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.craftbukkit.v1_20_R2.command.BukkitCommandWrapper.getSuggestions(BukkitCommandWrapper.java:74) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at com.mojang.brigadier.tree.ArgumentCommandNode.listSuggestions(ArgumentCommandNode.java:71) ~[brigadier-1.1.8.jar:git-Purpur-2095]
    at com.mojang.brigadier.CommandDispatcher.getCompletionSuggestions(CommandDispatcher.java:602) ~[purpur-1.20.2.jar:?]
    at com.mojang.brigadier.CommandDispatcher.getCompletionSuggestions(CommandDispatcher.java:582) ~[purpur-1.20.2.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleCustomCommandSuggestions$5(ServerGamePacketListenerImpl.java:831) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1351) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1328) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1321) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1437) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.NoClassDefFoundError: com/denizenscript/denizen/utilities/command/manager/CommandManager
    at com.denizenscript.denizen.Denizen.onTabComplete(Denizen.java:591) ~[Denizen-1.3.0-b6993-DEV.jar:?]
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:141) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    ... 22 more
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.utilities.command.manager.CommandManager
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]
    at com.denizenscript.denizen.Denizen.onTabComplete(Denizen.java:591) ~[Denizen-1.3.0-b6993-DEV.jar:?]
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:141) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    ... 22 more
[10:50:16] [Server thread/INFO]: Adan_TW issued server command: /denizen
[10:50:16] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'denizen' in plugin Denizen v1.3.0-SNAPSHOT (build 6993-DEV) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.dispatchCommand(CraftServer.java:1005) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at org.bukkit.craftbukkit.v1_20_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:265) ~[purpur-1.20.2.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:338) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:322) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2279) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2239) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(Unknown Source) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1351) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1328) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1321) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1299) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1187) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[purpur-1.20.2.jar:git-Purpur-2095]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[11:01:59] [User Authenticator #1/INFO]: UUID of player NorthSpit is 60541f27-d160-4653-b982-e48aa417ce1f
[11:01:59] [Server thread/INFO]: NorthSpit[/111.243.97.239:53849] logged in with entity id 1084 at ([zombie_trees]-7621.271303922287, 138.0, 2758.084039585588)
[11:02:00] [Server thread/INFO]: [Essentials] Created a User for :D (63461ba6-9e89-2fce-b3e2-3c157b042102) for non Bukkit type: net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC$PlayerNPC
[11:02:25] [Server thread/INFO]: [Essentials] Created a User for CIT-ee21c9fa5d5f (ee21c9fa-5d5f-2f4b-969d-f728c0eddd57) for non Bukkit type: net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC$PlayerNPC
[11:02:26] [Server thread/INFO]: [Essentials] Created a User for 48 (f177220c-8194-2f90-87e9-8172dc5c7b14) for non Bukkit type: net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC$PlayerNPC
[11:02:27] [Server thread/INFO]: [Essentials] Created a User for .w. (bc780f08-e96c-2d3f-8e63-7326700438a5) for non Bukkit type: net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC$PlayerNPC
[11:02:27] [Server thread/INFO]: [Essentials] Created a User for .w. (4f5f7c05-c29e-2982-85bc-ead4df00508b) for non Bukkit type: net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC$PlayerNPC
[11:02:57] [Server thread/INFO]: NorthSpit issued server command: /gamemode creative
[11:03:14] [Server thread/INFO]: Adan_TW issued server command: /npc targetable
[11:03:16] [Server thread/INFO]: Adan_TW issued server command: /npc targetable
[11:03:38] [Server thread/INFO]: Adan_TW issued server command: /npc target -c
[11:03:41] [Server thread/INFO]: Adan_TW issued server command: /npc target -c -a
[11:03:45] [Server thread/INFO]: Adan_TW issued server command: /npc target -c -a -p
[11:03:59] [Server thread/INFO]: Adan_TW issued server command: /npc target -p Adan_TW
[11:04:01] [Server thread/INFO]: Adan_TW issued server command: /gamemode survival
[11:04:12] [Server thread/INFO]: Adan_TW issued server command: /pluginmanager unload PvPManager
[11:04:12] [Server thread/INFO]: [PvPManager] Disabling PvPManager v3.26
[11:04:12] [Server thread/INFO]: [PvPManager] Saving player data to storage...
[11:04:12] [Server thread/INFO]: [PvPManager] Closed SQLITE storage
[11:04:17] [Server thread/INFO]: Adan_TW issued server command: /npc target -p
[11:04:20] [Server thread/INFO]: Adan_TW issued server command: /npc targetable
[11:04:26] [Server thread/INFO]: Adan_TW issued server command: /npc targetable -t
[11:12:35] [Server thread/INFO]: Adan_TW issued server command: /gamemode creative
[11:12:59] [Server thread/INFO]: NorthSpit issued server command: /v
[11:12:59] [Server thread/INFO]: NorthSpit issued server command: /v
[11:13:56] [Server thread/INFO]: [Essentials] Created a User for :D (63461ba6-9e89-2fce-b3e2-3c157b042102) for non Bukkit type: net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC$PlayerNPC
[11:13:57] [Server thread/INFO]: [Essentials] Created a User for 48 (3b81e13d-f0af-2402-ad1f-354d55c19682) for non Bukkit type: net.citizensnpcs.nms.v1_20_R2.entity.EntityHumanNPC$PlayerNPC