Paste #102099: err

Date: 2022/10/09 09:32:04 UTC-07: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


[16:17:23] [ServerMain/INFO]: Building unoptimized datafixer
[16:17:25] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[16:17:26] [ServerMain/INFO]: Loaded 7 recipes
[16:17:27] [Server thread/INFO]: Starting minecraft server version 1.19
[16:17:27] [Server thread/INFO]: Loading properties
[16:17:27] [Server thread/INFO]: This server is running Purpur version git-Purpur-1735 (MC: 1.19) (Implementing API version 1.19-R0.1-SNAPSHOT) (Git: 85f63e5 on HEAD)
[16:17:28] [Server thread/INFO]: Server Ping Player Sample Count: 12
[16:17:28] [Server thread/INFO]: Using 4 threads for Netty based IO
[16:17:28] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[16:17:28] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[16:17:28] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[16:17:28] [Server thread/INFO]: Default game type: SURVIVAL
[16:17:28] [Server thread/INFO]: Generating keypair
[16:17:28] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25595
[16:17:28] [Server thread/INFO]: Using epoll channel type
[16:17:28] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[16:17:28] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[16:17:29] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[16:17:33] [Server thread/WARN]: Legacy plugin ColorCodes v1.1 does not specify an api-version.
[16:17:33] [Server thread/WARN]: Legacy plugin BukkitHiddenSyntaxBlocker v2.1 does not specify an api-version.
[16:17:33] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Initializing Terra...
[16:17:33] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config.yml
[16:17:33] [Server thread/INFO]: [com.dfsek.terra.config.PluginConfigImpl] Loading config values from config.yml
[16:17:34] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading 31 Terra addons:
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]+7d056bd88
        - [email protected]
        - [email protected]
        - [email protected]+7d056bd88
[16:17:34] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Terra addons successfully loaded.
[16:17:34] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Finished initialization.
[16:17:34] [Server thread/WARN]: Legacy plugin TTA v5.5 does not specify an api-version.
[16:17:34] [Server thread/WARN]: Legacy plugin CustomList v2.0.7 does not specify an api-version.
[16:17:34] [Server thread/WARN]: Legacy plugin SimpleStaffChat2 v2.7 does not specify an api-version.
[16:17:34] [Server thread/WARN]: Legacy plugin MVdWPlaceholderAPI v3.1.1 does not specify an api-version.
[16:17:34] [Server thread/WARN]: Legacy plugin SimpleSit v1.7 does not specify an api-version.
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loading 2 libraries... please wait
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/com/google/inject/guice/5.1.0/guice-5.1.0.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/javax/inject/javax.inject/1/javax.inject-1.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/com/google/guava/guava/30.1-jre/guava-30.1-jre.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/minecraft/multicraft/servers/server362854/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[16:17:34] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_19_R1
[16:17:35] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 250 ms to scan 1 urls, producing 1188 keys and 3720 values
[16:17:35] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_19_R1
[16:17:35] [Server thread/INFO]: [ColorCodes] Loading ColorCodes v1.1
[16:17:35] [Server thread/INFO]: [InventoryRollbackPlus] Loading InventoryRollbackPlus v1.6.7
[16:17:35] [Server thread/INFO]: [Chunky] Loading Chunky v1.2.217
[16:17:35] [Server thread/INFO]: [TubeTils] Loading TubeTils v1.0.5
[16:17:35] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[16:17:35] [Server thread/INFO]: [BukkitHiddenSyntaxBlocker] Loading BukkitHiddenSyntaxBlocker v2.1
[16:17:35] [Server thread/INFO]: [ChatFeelings] Loading ChatFeelings v4.9.4
[16:17:35] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.4.2
[16:17:35] [Server thread/INFO]: [ViaVersion] ViaVersion 4.4.2 is now loaded, injecting!
[16:17:36] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[16:17:36] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[16:17:36] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[16:17:36] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[16:17:36] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[16:17:36] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[16:17:36] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[16:17:36] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[16:17:36] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[16:17:36] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[16:17:36] [Server thread/INFO]: [Terra] Loading Terra v6.2.0-BETA+7d056bd88
[16:17:36] [Server thread/INFO]: [TTA] Loading TTA v5.5
[16:17:36] [Server thread/INFO]: [BlockCommands] Loading BlockCommands v1.0.0
[16:17:36] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.41
[16:17:36] [Server thread/INFO]: [vilib] Loading vilib v1.1.0
[16:17:36] [Server thread/INFO]: [CustomList] Loading CustomList v2.0.7
[16:17:36] [Server thread/INFO]: [ItemRenamerReloaded] Loading ItemRenamerReloaded v0.6
[16:17:36] [Server thread/INFO]: [OpenInv] Loading OpenInv v4.2.1
[16:17:36] [Server thread/INFO]: [SimpleStaffChat2] Loading SimpleStaffChat2 v2.7
[16:17:36] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[16:17:36] [Server thread/INFO]: [RocketJoin] Loading RocketJoin v2.4.1
[16:17:36] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b600
[16:17:37] [Server thread/INFO]: [MVdWPlaceholderAPI] Loading MVdWPlaceholderAPI v3.1.1
[16:17:37] [Server thread/INFO]: [PrefiX] Loading PrefiX v6.4
[16:17:37] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-CMI
[16:17:37] [Server thread/INFO]: [SimpleSit] Loading SimpleSit v1.7
[16:17:37] [Server thread/INFO]: [AntiCooldown] Loading AntiCooldown v4.0.3
[16:17:37] [Server thread/INFO]: [NametagEdit] Loading NametagEdit v4.5.11
[16:17:37] [Server thread/INFO]: [IP] Loading IP v4.0.2
[16:17:37] [Server thread/INFO]: [CraftingStore] Loading CraftingStore v2.8.1
[16:17:37] [Server thread/INFO]: [MyCommand] Loading MyCommand v5.7.2
[16:17:37] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[16:17:38] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@172a18b6]
[16:17:38] [Server thread/INFO]: [AnimatedScoreboard] Loading AnimatedScoreboard v0.2.7
[16:17:38] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.5.5
[16:17:38] [Server thread/INFO]: [spark] Loading spark v1.9.42
[16:17:38] [Server thread/INFO]: [Vouchers] Loading Vouchers v3.1.0
[16:17:38] [Server thread/INFO]: [HeadDB] Loading HeadDB v4.4.4
[16:17:38] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.0-SNAPSHOT
[16:17:38] [Server thread/INFO]: [TAB] Loading TAB v3.1.2
[16:17:38] [Server thread/INFO]: [BanManager] Loading BanManager v7.8.0
[16:17:38] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.8-beta-01+cbb2ba7
[16:17:38] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.4.4
[16:17:38] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.2
[16:17:38] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.1
[16:17:38] [Server thread/INFO]: [LootCrate] Loading LootCrate v0.10.0
[16:17:38] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2716)
[16:17:38] [Server thread/INFO]: [Plan] Loading Plan v5.4 build 1722
[16:17:38] [Server thread/INFO]: [WolfyUtilities] Loading WolfyUtilities v4.16.5.1
[16:17:38] [Server thread/INFO]: [WolfyUtilities] Register json serializer/deserializer
[16:17:38] [Server thread/INFO]: [WolfyUtilities] Register CustomItem meta checks
[16:17:38] [Server thread/INFO]: [ClaimChunk] Loading ClaimChunk v0.0.23-RC8
[16:17:38] [Server thread/INFO]: [ClaimChunk] WorldGuard support enabled.
[16:17:38] [Server thread/INFO]: [CMILib] Loading CMILib v1.2.3.6
[16:17:38] [Server thread/INFO]: [CustomCrafting] Loading CustomCrafting v3.16.8.1
[16:17:38] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.5.1
[16:17:38] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v3.16.8.1
[16:17:38] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[16:17:38] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[16:17:38] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[16:17:38] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[16:17:38] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[16:17:38] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[16:17:38] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[16:17:38] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[16:17:38] [Server thread/INFO]: [BottledExp] Loading BottledExp v3.1.0.0
[16:17:38] [Server thread/INFO]: [CMI] Loading CMI v9.2.4.0
[16:17:38] [Server thread/INFO]: [AdvancedEnchantments] Loading AdvancedEnchantments v8.14.3
[16:17:38] [Server thread/INFO]: [InteractiveChat] Loading InteractiveChat v4.2.3.1
[16:17:38] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading InteractiveChatDiscordSrvAddon v4.2.3.1
[16:17:38] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[16:17:38] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.3.0
[16:17:38] [Server thread/INFO]: true
[16:17:38] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[16:17:38] [Server thread/INFO]: [TubeTils] Enabling TubeTils v1.0.5
[16:17:38] [Server thread/INFO]: [TubeTils] The Plugin will be activated ...
[16:17:38] [Server thread/INFO]: [TubeTils] Set Instances ...
[16:17:38] [Server thread/INFO]: [TubeTils] Setting Instances done!
[16:17:38] [Server thread/INFO]: [TubeTils] The plugin was successfully activated!
[16:17:38] [Server thread/INFO]: [Terra] Enabling Terra v6.2.0-BETA+7d056bd88
[16:17:38] [Server thread/INFO]: [com.dfsek.terra.bukkit.TerraBukkitPlugin] Running on Minecraft version v1.19.1 with server implementation Purpur.
[16:17:38] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config packs...
[16:17:38] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: default.zip
[16:17:40] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "OVERWORLD:OVERWORLD"
[16:17:41] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "OVERWORLD:OVERWORLD" v1.2.0 by Astrash, Sancires, Aureus in 2315.044484ms.
[16:17:41] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loaded packs.
[16:17:41] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_19_R1.AwfulBukkitHacks] Hacking biome registry...
[16:17:41] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_19_R1.AwfulBukkitHacks] Doing tag garbage....
[16:17:41] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.41
[16:17:42] [Server thread/INFO]:         __    
[16:17:42] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.41
[16:17:42] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[16:17:42] [Server thread/INFO]: 
[16:17:42] [Server thread/INFO]: [LuckPerms] Loading configuration...
[16:17:43] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[16:17:44] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[16:17:44] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[16:17:44] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3014ms)
[16:17:44] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b600
[16:17:44] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[16:17:44] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[16:17:44] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[16:17:45] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[16:17:45] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[16:17:45] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[16:17:45] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[16:17:45] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R1.PaperweightAdapter as the Bukkit adapter
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.5.1
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.19.0
[16:17:46] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.5.1
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[16:17:46] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Register API references
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Loading Player Data
[16:17:46] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[16:17:46] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.0
[16:17:46] [Server thread/INFO]: Preparing level "world"
[16:17:48] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_19_R1.NMSInjectListener] Preparing to take over the world: world
[16:17:48] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_19_R1.NMSInjectListener] Successfully injected into world.
[16:18:07] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[16:18:07] [Server thread/INFO]: Time elapsed: 258 ms
[16:18:07] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[16:18:07] [Server thread/INFO]: Time elapsed: 87 ms
[16:18:07] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[16:18:07] [Server thread/INFO]: Time elapsed: 64 ms
[16:18:07] [Server thread/INFO]: [ColorCodes] Enabling ColorCodes v1.1*
[16:18:07] [Server thread/INFO]: [ColorCodes] ColorCodes 1.0 has been enabled!
[16:18:07] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.7
[16:18:07] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[16:18:07] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[16:18:07] [Server thread/INFO]: [Chunky] Enabling Chunky v1.2.217
[16:18:07] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[16:18:07] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.4.2 which is not a depend or softdepend of this plugin.
[16:18:08] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[16:18:08] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[16:18:08] [Server thread/INFO]: [BukkitHiddenSyntaxBlocker] Enabling BukkitHiddenSyntaxBlocker v2.1*
[16:18:08] [Server thread/INFO]: [ChatFeelings] Enabling ChatFeelings v4.9.4
[16:18:09] [Server thread/INFO]: [ChatFeelings] Having issues? Got a question? Join our support discord: https://discord.gg/6ugXPfX
[16:18:09] [Server thread/INFO]: [ChatFeelings] Hooking into PlaceholderAPI...
[16:18:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatfeelings [4.9.4]
[16:18:09] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.4.2
[16:18:09] [Server thread/INFO]: [TTA] Enabling TTA v5.5*
[16:18:09] [Server thread/INFO]: 
[16:18:09] [Server thread/INFO]: =========>[TTA Terms]<=========
[16:18:09] [Server thread/INFO]: -> You are not permitted to claim this plugin as your own!
[16:18:09] [Server thread/INFO]: -> You are not permitted to decompiling the plugin's sourcecode!
[16:18:09] [Server thread/INFO]: -> You are not permitted to modify the code or the plugin and call it your own!
[16:18:09] [Server thread/INFO]: -> You are not permitted to redistributing this plugin as your own!
[16:18:09] [Server thread/INFO]: ======>[Terms Accepted!]<======
[16:18:09] [Server thread/INFO]: 
[16:18:09] [Server thread/INFO]: [TTA] Engine: Unknown Engine!
[16:18:09] [Server thread/INFO]: [TTA] Minecraft 1.19 Support enabled!
[16:18:09] [Server thread/INFO]: [TTA] Version: 5.5 by [Herbystar] enabled!
[16:18:09] [Server thread/INFO]: [BlockCommands] Enabling BlockCommands v1.0.0
[16:18:09] [Server thread/INFO]: [vilib] Enabling vilib v1.1.0
[16:18:09] [Server thread/INFO]: [vilib] Enabled vilib 1.1.0
[16:18:09] [Server thread/INFO]: [CustomList] Enabling CustomList v2.0.7*
[16:18:09] [Server thread/INFO]: [CustomList] Data sent to Metrics successfully.
[16:18:09] [Server thread/INFO]: [ItemRenamerReloaded] Enabling ItemRenamerReloaded v0.6
[16:18:09] [Server thread/INFO]: (!) ItemRenamer has been loaded. Version 0.6
[16:18:09] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.2.1
[16:18:09] [Server thread/INFO]: [SimpleStaffChat2] Enabling SimpleStaffChat2 v2.7*
[16:18:09] [Server thread/INFO]: ==========================================
[16:18:09] [Server thread/INFO]: All files have been loaded correctly!
[16:18:09] [Server thread/INFO]: ==========================================
[16:18:09] [Server thread/INFO]: Hooked into PlaceholderAPI.
[16:18:09] [Server thread/INFO]: ====================================
[16:18:09] [Server thread/INFO]: SimpleStaffChat2 has been enabled.
[16:18:09] [Server thread/INFO]:  [*] Version: 2.7
[16:18:09] [Server thread/INFO]:  [*] Name: SimpleStaffChat2
[16:18:09] [Server thread/INFO]:  [*] Author: RefracDevelopment
[16:18:09] [Server thread/INFO]: ====================================
[16:18:09] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[16:18:09] [Server thread/INFO]: [BuycraftX] Validating your server key...
[16:18:10] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[16:18:10] [Server thread/INFO]: [RocketJoin] Enabling RocketJoin v2.4.1
[16:18:10] [Server thread/INFO]: [RocketJoin] PlaceholderAPI hooked!
[16:18:10] [Server thread/INFO]: [RocketJoin] RocketJoin v2.4.1 by Lorenzo0111 is now enabled!
[16:18:10] [Server thread/INFO]: [MVdWPlaceholderAPI] Enabling MVdWPlaceholderAPI v3.1.1*
[16:18:10] [Server thread/INFO]: [MVdWPlaceholderAPI] Initializing placeholders ...
[16:18:10] [Server thread/INFO]: [MVdWPlaceholderAPI] Sending metrics ...
[16:18:10] [Server thread/INFO]: [PrefiX] Enabling PrefiX v6.4
[16:18:10] [Server thread/INFO]: [PrefiX] Loading 40 messages.
[16:18:10] [Server thread/INFO]: [PrefiX] Loading language pack: English
[16:18:10] [Server thread/INFO]: [PrefiX] Loaded 19 config values
[16:18:10] [Server thread/INFO]: [PrefiX] We're up and running
[16:18:10] [Server thread/INFO]: [SimpleSit] Enabling SimpleSit v1.7*
[16:18:10] [Server thread/INFO]: [AntiCooldown] Enabling AntiCooldown v4.0.3
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] Currently installed TubeTils version meet the requirements!
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] ProtocolLib is installed! Support for ProtocolLib enabled!
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] PlaceholderAPI is installed! Support for PlaceholderAPI enabled!
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] The Plugin will be activated ...
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] ==================================================
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] JOIN OUR DISCORD: https://discord.gg/73ZDfbx
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] ==================================================
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] Loading Config Files ...
[16:18:10] [Server thread/INFO]: [AntiCooldownLogger] Config values are loaded into the cache ...
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] World YourWorldName disabled!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material WOOD_AXE for CustomItemDamage cannot be found or is not supported by 1.19-R0.1-SNAPSHOT!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material GOLD_AXE for CustomItemDamage cannot be found or is not supported by 1.19-R0.1-SNAPSHOT!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material WOOD_PICKAXE for CustomItemDamage cannot be found or is not supported by 1.19-R0.1-SNAPSHOT!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material GOLD_PICKAXE for CustomItemDamage cannot be found or is not supported by 1.19-R0.1-SNAPSHOT!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Config values were successfully cached!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Config Files was successfully loaded!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Checking for updates ...
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Listeners will be registered ...
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Listeners have been successfully registered!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Commands will be registered ...
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Commands have been successfully registered!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Placeholders for PlacerholderAPI will be registered ...
[16:18:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: anticooldown [4.0.3]
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Placeholders have been successfully registered!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] Load and activate bStats ...
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] bStats was successfully loaded and activated!
[16:18:11] [Server thread/INFO]: [AntiCooldownLogger] The plugin was successfully activated in 151ms!
[16:18:11] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.11
[16:18:11] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[16:18:11] [Server thread/INFO]: [IP] Enabling IP v4.0.2
[16:18:11] [Server thread/INFO]: [IP] Loaded all config files
[16:18:11] [Server thread/INFO]: [IP] Registered gamemode default!
[16:18:11] [Server thread/INFO]: [IP] Registered gamemode spectator!
[16:18:11] [Server thread/INFO]: [IP] Registered style type default!
[16:18:11] [Server thread/INFO]: [IP] Connecting with PlaceholderAPI...
[16:18:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: witp [4.0.2]
[16:18:11] [Server thread/INFO]: Preparing start region for dimension minecraft:witp
[16:18:11] [Server thread/INFO]: Preparing spawn area: 0%
[16:18:11] [Server thread/INFO]: Time elapsed: 390 ms
[16:18:11] [Server thread/INFO]: [IP] Loaded IP in 709ms!
[16:18:11] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.8.1
[16:18:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: craftingstore [2.8.1]
[16:18:12] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[16:18:12] [Server thread/INFO]: [CraftingStore] There was a problem hooking with Vault
[16:18:12] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.2
[16:18:12] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.2*-=-=-=-=-=-=-=-=-=-*
[16:18:12] [Server thread/INFO]: | Hooked on Vault 1.7.3-CMI
[16:18:12] [Server thread/INFO]: | Command file(s) found : 1
[16:18:12] [Server thread/INFO]: | Config : Ready.
[16:18:12] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[16:18:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[16:18:12] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[16:18:12] [Server thread/INFO]: | Custom commands loaded : 44
[16:18:12] [Server thread/INFO]: | New update available : MyCommand v5.7.3
[16:18:12] [Server thread/WARN]: [MyCommand] Loaded class com.comphenix.protocol.events.PacketListener from ProtocolLib v5.0.0-SNAPSHOT-b600 which is not a depend or softdepend of this plugin.
[16:18:12] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[16:18:12] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[16:18:12] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.2.7
[16:18:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: animatedscoreboard [0.0.1]
[16:18:12] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.5.5
[16:18:12] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[16:18:12] [Server thread/INFO]: [spark] Enabling spark v1.9.42
[16:18:12] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[16:18:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.9.42]
[16:18:12] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[16:18:12] [Server thread/INFO]: [MVdWPlaceholderAPI] spark added custom placeholder {spark_*}
[16:18:12] [Server thread/INFO]: [spark] Registered MVdWPlaceholderAPI placeholders
[16:18:12] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.1.0
[16:18:12] [Server thread/INFO]:  
[16:18:12] [Server thread/INFO]: =============================
[16:18:12] [Server thread/INFO]: Vouchers v3.1.0 by Tweetzy
[16:18:12] [Server thread/INFO]: Developer: Kiran Hart
[16:18:12] [Server thread/INFO]: [FeatherCore] Hooked into Vouchers
[16:18:12] [Server thread/INFO]: =============================
[16:18:12] [Server thread/INFO]:  
[16:18:12] [Server thread/INFO]: [HeadDB] Enabling HeadDB v4.4.4
[16:18:12] [Server thread/INFO]: [HeadDB] [INFO]: Loading HeadDB - 4.4.4
[16:18:12] [Server thread/INFO]: [HeadDB] [INFO]: Done!
[16:18:12] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.0-SNAPSHOT
[16:18:12] [Server thread/INFO]: [TAB] Enabling TAB v3.1.2
[16:18:12] [Server thread/INFO]: [TAB] Server version: 1.19 (v1_19_R1)
[16:18:12] [Server thread/INFO]: [TAB] Loaded NMS hook in 50ms
[16:18:13] [Server thread/INFO]: [TAB] Animation "CustomBar" has refresh interval of 25 which is not divisible by 50! Using 50.
[16:18:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.1.2]
[16:18:13] [Server thread/INFO]: [TAB] Enabled in 109ms
[16:18:13] [Server thread/INFO]: [BanManager] Enabling BanManager v7.8.0
[16:18:13] [Server thread/INFO]: [me.confuser.banmanager.common.hikari.HikariDataSource] bm-local - Starting...
[16:18:13] [pool-28-thread-1/WARN]: [DiscordSRV] 

The current build of DiscordSRV is outdated by 28 commits! Get the latest build at your favorite distribution center.

Spigot: https://www.spigotmc.org/resources/discordsrv.18494/
Github: https://github.com/DiscordSRV/DiscordSRV/releases
Direct Download: https://get.discordsrv.com

[16:18:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[16:18:13] [Server thread/INFO]: [me.confuser.banmanager.common.hikari.HikariDataSource] bm-local - Start completed.
[16:18:14] [Server thread/INFO]: [BanManager] Loaded 0 bans into memory
[16:18:14] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[16:18:14] [Server thread/INFO]: [BanManager] Loaded 0 mutes into memory
[16:18:14] [Server thread/INFO]: [BanManager] Loaded 0 ip bans into memory
[16:18:14] [Server thread/INFO]: [BanManager] Loaded 0 ip mutes into memory
[16:18:14] [Server thread/INFO]: [BanManager] Loaded 0 ip range bans into memory
[16:18:14] [Server thread/INFO]: [BanManager] Loaded 0 name bans into memory
[16:18:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bm [7]
[16:18:14] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
[16:18:14] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[16:18:14] [Server thread/INFO]: [WorldGuard] (witp) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (witp) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (witp) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (witp) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'witp'
[16:18:14] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:18:14] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.4.4
[16:18:14] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.2
[16:18:14] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[16:18:14] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[16:18:14] [Server thread/INFO]: --------------------
[16:18:14] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[16:18:14] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[16:18:14] [Server thread/INFO]: --------------------
[16:18:14] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[16:18:15] [Server thread/INFO]: [LootCrate] Enabling LootCrate v0.10.0
[16:18:15] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:𝓓𝓮𝓯𝓮𝓪𝓽𝓮𝓭𝓢𝓜𝓟(941811353855856691)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⇥welcome(941811430083166298)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⇤goodbye(941811438211715133)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋨smp-plugins-mana⋩(956293576537538681)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋨server-development⋩(1010475666845745282)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋨server-chat⋩(1011351403555455047)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋨server-console⋩(1011351353974595624)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋨store-logs⋩(1014547811112587354)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☾rules☽(941811373074165841)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☾introduction☽(941811374030454804)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☾roles☽(941811375032918046)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☾streams☽(941811377973129296)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☾announcements☽(941811384285556797)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☾giveaways☽(941811418024534046)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠general┨(941811382465200189)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠pets┨(941811385795498024)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠bump┨(941811386877628456)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠commands┨(941811387838107679)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠quotes┨(941811391185190963)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠streamer-self-promo┨(941811399246635091)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠art┨(941811400689467412)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠vids┨(941811403747119144)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠birthdays┨(941811407790428241)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠selfies┨(941811408755105792)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠memes┨(943238788317061181)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┠scenery-shots┨(956577003430117416)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⊕staff-general(941811392967766107)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⊕issues(941811394121183232)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⊕bots(941811395094253618)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⊕logs(943245078732877864)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⊕bastion-logs(943245224023556107)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:payment-test(984751166233673728)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┌minecraft-igns┐(959787543459659836)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┌looking-for-a-party┐(943206931873546250)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┌stat-checking┐(943210235395469354)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┌game-clips┐(943210440622743572)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:◎no-mic(941811390073671720)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❂chats(941811415768006698)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❂events(941811416921423873)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❂giveaways(943210853921079296)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:〖daily-store〗(1019585936390115351)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:〖looking-for-team〗(1019586065457233962)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:〖clips〗(1019586141223137280)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:〖val-general〗(1019586327492165654)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☾tickets☽(1026584286880612462)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-0002(1026598382267023410)
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:⋨server-console⋩(1011351353974595624)
[16:18:15] [Server thread/INFO]: 
[16:18:15] [Server thread/INFO]: 
[16:18:15] [Server thread/INFO]: [  LootCrate v0.10.0  ]
[16:18:15] [Server thread/INFO]: 
[16:18:15] [Server thread/INFO]: Running Purpur v1.19-R0.1-SNAPSHOT.
[16:18:15] [Server thread/INFO]: Loaded 2 crate(s).
[16:18:15] [Server thread/INFO]: Detected DecentHolograms.
[16:18:15] [Server thread/INFO]: Detected bStats Metrics.
[16:18:15] [Server thread/INFO]: 
[16:18:15] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2716)
[16:18:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[16:18:15] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[16:18:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[16:18:15] [Server thread/INFO]: [Plan] Enabling Plan v5.4 build 1722
[16:18:16] [Server thread/INFO]: [Plan] 
[16:18:16] [Server thread/INFO]: [Plan]            ██▌
[16:18:16] [Server thread/INFO]: [Plan]      ██▌   ██▌
[16:18:16] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[16:18:16] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.4 build 1722
[16:18:16] [Server thread/INFO]: [Plan] 
[16:18:16] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[16:18:16] [Server thread/INFO]: [Plan] Downloading SQLite Driver, this may take a while...
[16:18:16] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[16:18:16] [Server thread/INFO]: [Plan] SQLite-database connection established.
[16:18:16] [Server thread/INFO]: [Plan] WebServer: Certificate KeyStore File not Found: plugins/Plan/Cert.jks
[16:18:16] [Server thread/INFO]: [Plan] WebServer: No Certificate -> Using HTTP-server for Visualization.
[16:18:16] [Server thread/INFO]: [Plan] WebServer: User Authorization Disabled! (Not secure over HTTP)
[16:18:16] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] Applying Patch: PlayerTableRowPatch..
[16:18:16] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[16:18:16] [Server thread/INFO]: [Plan] Webserver running on PORT 8141 ( http://37.59.219.147:8141 )
[16:18:16] [Server thread/INFO]: [Plan] Loading server identifying information
[16:18:16] [Server thread/INFO]: [Plan] Server identifier loaded: 914611f3-c404-433d-919c-9e1838a2cf74
[16:18:16] [Server thread/INFO]: [Plan] Registered extension: BanManager
[16:18:16] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[16:18:16] [Server thread/INFO]: [DiscordSRV] API listener com.djrapitops.extension.DiscordSRVListener subscribed (2 methods)
[16:18:16] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[16:18:16] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[16:18:16] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[16:18:16] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[16:18:16] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[16:18:16] [Server thread/INFO]: [ClaimChunk] Enabling ClaimChunk v0.0.23-RC8
[16:18:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: claimchunk [0.0.23-RC8]
[16:18:16] [Server thread/INFO]: [ClaimChunk] Successfully enabled the ClaimChunk PlaceholderAPI expansion!
[16:18:16] [Server thread/INFO]: [ClaimChunk] Economy not enabled.
[16:18:16] [Server thread/INFO]: [ClaimChunk] Loaded messages from messages.json
[16:18:16] [Server thread/INFO]: [ClaimChunk] Initialization complete.
[16:18:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[16:18:16] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.3.6
[16:18:17] [Server thread/INFO]: Server version: v1_19_R1 - 1.19.0 - paper
[16:18:18] [Server thread/INFO]: CMI hooked.
[16:18:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.3.6]
[16:18:18] [Server thread/INFO]: PlaceholderAPI hooked.
[16:18:18] [Server thread/INFO]: Updated (EN) language file. Took 31ms
[16:18:18] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v3.16.8.1
[16:18:18] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[16:18:18] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[16:18:18] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[16:18:18] [Server thread/INFO]: [CustomCrafting]     Version    | v3.16.8.1
[16:18:18] [Server thread/INFO]: [CustomCrafting]     WolfyUtils | v4.16.5.1
[16:18:18] [Server thread/INFO]: [CustomCrafting]     Bukkit     | git-Purpur-1735 (MC: 1.19)(API: 1.19-R0.1-SNAPSHOT)
[16:18:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[16:18:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[16:18:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[16:18:18] [Server thread/INFO]: [CustomCrafting] 
[16:18:18] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[16:18:18] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Junye Zhou, Apprehentice, PwassonDoDouce, Mr_Mint_
[16:18:18] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[16:18:18] [Thread-31/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[16:18:18] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.0.0 translated by WolfyScript
[16:18:18] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.0.0 translated by WolfyScript
[16:18:18] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[16:18:18] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[16:18:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customcrafting [3.16.8.1]
[16:18:18] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[16:18:18] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[16:18:18] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[16:18:19] [Server thread/INFO]: [CustomCrafting] Loading Cauldrons
[16:18:19] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[16:18:19] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[16:18:19] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[16:18:19] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[16:18:19] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[16:18:19] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 8 recipes; Skipped: 0 error/s, 0 already existing
[16:18:19] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[16:18:19] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[16:18:19] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 8 recipes
[16:18:19] [Server thread/INFO]: [CustomCrafting] 
[16:18:19] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[16:18:19] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[16:18:19] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[16:18:19] [Server thread/INFO]: [BottledExp] Enabling BottledExp v3.1.0.0
[16:18:19] [Server thread/INFO]: [BottledExp] Version 3.1.0.0 has been enabled
[16:18:19] [Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
[16:18:19] [Server thread/INFO]: [CMI] Enabling CMI v9.2.4.0
[16:18:20] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[16:18:20] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[16:18:20] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[16:18:20] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[16:18:20] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[16:18:20] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[16:18:20] [Server thread/INFO]: _______________________________________________________
[16:18:20] [Server thread/INFO]:   Integrating PaperSpigot async methods
[16:18:20] [Server thread/INFO]:   Citizens found.
[16:18:20] [Server thread/INFO]:   57 Enabled and 0 Disabled modules
[16:18:20] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.41
[16:18:20] [Server thread/INFO]:   Initialized Cipher256 AES
[16:18:20] [Server thread/INFO]:   Loaded (60) regular alias into memory. Took 65ms
[16:18:20] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 0ms
[16:18:20] [Server thread/INFO]:   3.36.0 data base type detected
[16:18:20] [Server thread/INFO]:   Started SqLite data base. Took 127ms
[16:18:20] [Server thread/INFO]: [CMI] Vault was found but economy engine is missing. Use one from list provided in https://dev.bukkit.org/bukkit-plugins/vault/
[16:18:20] [Server thread/INFO]: [CMI] Alternatively you can enable CMI economy in config.yml file
[16:18:20] [Server thread/INFO]:   Vault was found but not economy plugin, you will have limited economy support
[16:18:20] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[16:18:20] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[16:18:20] [Server thread/INFO]:   Loaded (142) custom mob heads into memory. Took 14ms
[16:18:20] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 27ms
[16:18:20] [Server thread/INFO]:   Initializing BungeeCord
[16:18:21] [Server thread/INFO]:   Loaded (5) kits into memory. Took 12ms
[16:18:21] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 7ms
[16:18:21] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 1ms
[16:18:21] [Server thread/INFO]:   Loaded (6) player data into memory. Took 20ms
[16:18:21] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 0ms
[16:18:21] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[16:18:21] [Server thread/INFO]:   Loaded (5) custom alias into memory. Took 1ms
[16:18:21] [Server thread/INFO]:   Registered events. Took 81ms
[16:18:21] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 3ms
[16:18:21] [Server thread/INFO]:   Updated (EN) language file. Took 105ms
[16:18:21] [Server thread/WARN]: [CMILib] Loaded class com.Zrips.CMI.Containers.Snd from CMI v9.2.4.0 which is not a depend or softdepend of this plugin.
[16:18:21] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 51ms
[16:18:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.2.4.0]
[16:18:21] [Server thread/INFO]:   PlaceholderAPI hooked.
[16:18:21] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_charges_left}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_charges_max}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_charges_time}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_charges_cooldown}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_display_name}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_p_*_display_name}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_cleannickname}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_nickname}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_name}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_uuid}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_deathloc}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_backloc}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_cuffed}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_muted}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_inpvp}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_god}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_mail_count}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_warning_count}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_warning_points}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_afk}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_afk_symbol}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_afk_msg}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_afk_for}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_afk_in}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_spy}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_cmdspy}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_signspy}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_joinedcounter}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_banned}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_maxhomes}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_homeamount}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_missingexp}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_missingexpp}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_exp}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_expp}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_totalexp}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_level}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_ping}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_gamemode}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_op}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_pweather}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_weather}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_weatherduration}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_canfly}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_flying}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_vanished_symbol}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_balance_formated}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_balance_formatted}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_balance}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_prefix}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_suffix}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_group}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_nameplate_prefix}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_nameplate_suffix}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_tfly}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_tfly_formated}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_tfly_formatted}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_flightcharge}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_tgod}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_tgod_formated}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_tgod_formatted}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_votecount}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_dailyvotecount}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_rank}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_rank_displayname}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_rank_name}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_nextranks}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_nextrankpercent}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_nextvalidranks}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_canrankup}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_country}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_country_code}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_city}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_name_colorcode}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_glow_code}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_glow_name}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_jailed}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_jailname}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_jailcell}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_jailtime}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_jailreason}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_bungeeserver}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_formatted}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_days}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_dayst}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_hours}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_hoursf}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_hourst}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_minutes}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_minutest}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_seconds}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_playtime_secondst}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_world_formatted}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_online}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_itemcount_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_maxperm_*_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_toggle_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_togglename_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_equation_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_equationint_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_color_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_displayname}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_realname}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_type}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_itemdata}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_amount}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_durability}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_worth}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_worth_one}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_worthc}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_iteminhand_worthc_one}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_schedule_nextin_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_schedule_endat_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_baltop_name_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_baltop_money_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_baltop_shortmoney_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_playtimetop_name_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_playtimetop_time_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_votetop_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_votetopcount_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_worth_buy_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_worth_sell_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_worthc_buy_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_worthc_sell_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_bungee_total_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_bungee_current_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_bungee_motd_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_bungee_onlinestatus_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_tps_1}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_tps_60}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_tps_300}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_tps_*_colored}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_random_player_name}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_lastrandom_player_name}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_random_*_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_lastrandom_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_rank_percent_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_meta_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_metaint_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_chatmute_time}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_chatmute_reason}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_baltop}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_stats_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_kitcd_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_kit_available}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_kit_available_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_user_kit_hasaccess_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_jail_time_*_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_jail_username_*_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_jail_reason_*_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_weather_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_weatherduration_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_afk_count}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_maintenance_state}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_maintenance_message}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_uptime}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_uptime_seconds}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_worlds}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_vanished}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_users}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {player_world}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_player_world}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {player_x}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_player_x}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {player_y}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_player_y}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {player_z}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_player_z}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {player_biome}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_player_biome}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {vault_eco_balance_formatted}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {server_online}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_online}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {server_max_players}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_max_players}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {server_online_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_online_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {server_unique_joins}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_unique_joins}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {onlineplayers_names}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_onlineplayers_names}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {onlineplayers_displaynames}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_onlineplayers_displaynames}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {server_time_*_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_time_*_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {server_time_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_server_time_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {world_time12_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_world_time12_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {world_time24_*}
[16:18:21] [Server thread/INFO]: [MVdWPlaceholderAPI] CMI added custom placeholder {cmi_world_time24_*}
[16:18:21] [Server thread/INFO]:   MVdWPlaceholderAPI support enabled
[16:18:21] [Server thread/INFO]:   MVdWPlaceholderAPI hooked.
[16:18:21] [Server thread/INFO]:   PlaceholderMVdWAPI was found - Enabling capabilities.
[16:18:21] [Server thread/INFO]:   Starting world timer.
[16:18:21] [Server thread/INFO]:   Initializing world manager.
[16:18:21] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 8ms
[16:18:21] [Server thread/INFO]:   Loaded GeoIP
[16:18:21] [Server thread/INFO]:   Loaded (0) skin cache entries into memory. Took 0ms
[16:18:21] [Server thread/INFO]:   Found DiscordSRV
[16:18:21] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (4 methods)
[16:18:21] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[16:18:21] [Server thread/INFO]:   Version 9.2.4.0 has been enabled
[16:18:21] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[16:18:21] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v8.14.3
[16:18:21] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[16:18:21] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuardExtraFlags.
[16:18:21] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[16:18:21] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[16:18:21] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into CMI.
[16:18:21] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[16:18:21] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[16:18:21] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.3.1
[16:18:25] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[16:18:25] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into CMI!
[16:18:25] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[16:18:25] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[16:18:25] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[16:18:25] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[16:18:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [1.0.0]
[16:18:25] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[16:18:25] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.3.1
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.8-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-70.1-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[16:18:25] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[16:18:26] [Server thread/INFO]: [InteractiveChat] Loading languages...
[16:18:26] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[16:18:26] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (6 methods)
[16:18:26] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (3 methods)
[16:18:26] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[16:18:26] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 8 slash commands for 1 plugins in 1/1 guilds (0 cancelled)
[16:18:26] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[16:18:26] [Server thread/INFO]: Running delayed init tasks
[16:18:26] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19 (759)
[16:18:27] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[16:18:27] [Craft Scheduler Thread - 13 - IP/INFO]: [IP] Initializing schematics...
[16:18:27] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[16:18:27] [Craft Scheduler Thread - 13 - IP/INFO]: [IP] Found 0 unsupported schematic(s).
[16:18:27] [Craft Scheduler Thread - 13 - IP/INFO]: [IP] Loaded all schematics in 135ms!
[16:18:27] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 holograms!
[16:18:27] [Server thread/INFO]: [BanManager] The following commands are blocked whilst muted:
[16:18:27] [Server thread/INFO]: [BanManager] msg
[16:18:27] [Server thread/INFO]: [BanManager] The following commands are blocked whilst soft muted:
[16:18:27] [Server thread/INFO]: [BanManager] msg
[16:18:27] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[16:18:27] [Craft Scheduler Thread - 18 - Plan/INFO]: [Plan] ----------------------------------------
[16:18:27] [Craft Scheduler Thread - 18 - Plan/INFO]: [Plan] New Release (5.5 build 1984) is available https://github.com/plan-player-analytics/Plan/releases
[16:18:27] [Craft Scheduler Thread - 18 - Plan/INFO]: [Plan] ----------------------------------------
[16:18:27] [Craft Scheduler Thread - 24 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[16:18:27] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[16:18:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan [5.4 build 1722]
[16:18:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.0-SNAPSHOT]
[16:18:27] [Craft Scheduler Thread - 16 - DecentHolograms/INFO]: 
[16:18:27] [Craft Scheduler Thread - 16 - DecentHolograms/INFO]: A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[16:18:27] [Craft Scheduler Thread - 7 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[16:18:27] [Craft Scheduler Thread - 23 - Vault/INFO]: [Vault] Checking for Updates ... 
[16:18:27] [Craft Scheduler Thread - 23 - Vault/INFO]: [Vault] No new version available
[16:18:27] [Craft Scheduler Thread - 5 - PrefiX/INFO]: 
[16:18:27] [Craft Scheduler Thread - 5 - PrefiX/INFO]: +-----------------= PrefiX =-----------------+
[16:18:27] [Craft Scheduler Thread - 5 - PrefiX/INFO]: ------------------------------------------------
[16:18:27] [Craft Scheduler Thread - 5 - PrefiX/INFO]: A new version of Prefix is available.
[16:18:27] [Craft Scheduler Thread - 5 - PrefiX/INFO]: Current version: 6.4, new version: 6.5.
[16:18:27] [Craft Scheduler Thread - 5 - PrefiX/INFO]: URL: https://www.spigotmc.org/resources/prefix.70359/
[16:18:27] [Craft Scheduler Thread - 5 - PrefiX/INFO]: ------------------------------------------------
[16:18:27] [Craft Scheduler Thread - 5 - PrefiX/INFO]: +------------------------------------------+
[16:18:27] [Craft Scheduler Thread - 7 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[16:18:27] [Server thread/WARN]: java.lang.NoSuchMethodError: 'net.minecraft.world.entity.ai.attributes.AttributeMapBase net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.ex()'
[16:18:27] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:321)
[16:18:27] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[16:18:27] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[16:18:27] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[16:18:27] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[16:18:27] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:164)
[16:18:27] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[16:18:27] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520)
[16:18:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:18:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[16:18:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1151)
[16:18:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:308)
[16:18:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:831)
[16:18:27] [Server thread/WARN]: [Citizens] Task #142 for Citizens v2.0.30-SNAPSHOT (build 2716) generated an exception
java.lang.NullPointerException: Cannot invoke "net.minecraft.world.entity.ai.attributes.AttributeModifiable.a(double)" because "range" is null
    at net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:339) ~[Citizens-2.0.30-b2716.jar:?]
    at net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105) ~[Citizens-2.0.30-b2716.jar:?]
    at net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53) ~[Citizens-2.0.30-b2716.jar:?]
    at net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41) ~[Citizens-2.0.30-b2716.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259) ~[Citizens-2.0.30-b2716.jar:?]
    at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:164) ~[Citizens-2.0.30-b2716.jar:?]
    at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59) ~[Citizens-2.0.30-b2716.jar:?]
    at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520) ~[Citizens-2.0.30-b2716.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.19.jar:git-Purpur-1735]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[purpur-1.19.jar:git-Purpur-1735]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1151) ~[purpur-1.19.jar:git-Purpur-1735]
    at net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:308) ~[purpur-1.19.jar:git-Purpur-1735]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[16:18:27] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[16:18:27] [Server thread/INFO]: Done (59.574s)! For help, type "help"
[16:18:27] [Server thread/INFO]: [WolfyUtilities] Dependencies Loaded. Calling DependenciesLoadedEvent!
[16:18:27] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[16:18:27] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[16:18:27] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[16:18:27] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[16:18:27] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[16:18:27] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[16:18:27] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 0 recipes; Skipped: 0 error/s, 8 already existing
[16:18:27] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[16:18:27] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[16:18:27] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 8 recipes
[16:18:27] [Server thread/INFO]: [CustomCrafting] 
[16:18:27] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[16:18:27] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[16:18:27] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[16:18:27] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 8 slash commands for 1 plugins in 1/1 guilds (0 cancelled)
[16:18:27] [Craft Scheduler Thread - 27 - ChatFeelings/INFO]: [ChatFeelings] Update Available! You're running v4.9.4, while the latest is v4.10.1
[16:18:27] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:18:28] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:18:28] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[16:18:28] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[16:18:28] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[16:18:28] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[16:18:28] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[16:18:28] [Craft Scheduler Thread - 9 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[16:18:29] [Craft Scheduler Thread - 10 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[16:18:30] [Craft Scheduler Thread - 25 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[16:18:31] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[16:18:31] [Craft Scheduler Thread - 5 - HeadDB/INFO]: [HeadDB] [INFO]: Fetched 48803 heads!
[16:18:32] [Craft Scheduler Thread - 24 - ClaimChunk/INFO]: [ClaimChunk] You are using the latest version of ClaimChunk: 0.0.23-RC8 (Online: 0.0.23-RC8)
[16:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[16:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[16:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: healthbar [0.6]
[16:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[16:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ascii [1.0.0]
[16:18:33] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-CMI which is not a depend or softdepend of this plugin.
[16:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[16:18:33] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.41 which is not a depend or softdepend of this plugin.
[16:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[16:18:33] [Server thread/INFO]: 7 placeholder hook(s) registered!
[16:18:36] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[16:20:28] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:20:28] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:21:36] [User Authenticator #1/INFO]: UUID of player ItzMarni is cd398744-21f9-40e6-884d-0a58fed89b45
[16:21:36] [Server thread/INFO]: [+] ItzMarni
[16:21:36] [Server thread/INFO]: ItzMarni[/         ip          ] logged in with entity id 150 at ([world]170.2590037680705, 135.12039157605642, -120.79889647039116)
[16:22:02] [Server thread/INFO]: ItzMarni issued server command: /spawn
[16:22:02] [Server thread/INFO]: /spawn
[16:22:26] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[16:22:28] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:22:28] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:22:53] [Server thread/INFO]: ItzMarni issued server command: /npc
[16:22:53] [Server thread/INFO]: /npc
[16:24:28] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:24:28] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:24:44] [Server thread/INFO]: ItzMarni issued server command: /npc create Tutorial
[16:24:44] [Server thread/INFO]: /npc create Tutorial
[16:24:44] [Server thread/WARN]: java.lang.NoSuchMethodError: 'net.minecraft.world.entity.ai.attributes.AttributeMapBase net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.ex()'
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:321)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.commands.NPCCommands.create(NPCCommands.java:667)
[16:24:44] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:24:44] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:78)
[16:24:44] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[16:24:44] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:187)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:97)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:228)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:289)
[16:24:44] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[16:24:44] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[16:24:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:940)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.handleCommand(PlayerConnection.java:2474)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2245)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[16:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[16:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1386)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:183)
[16:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1363)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1356)
[16:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1334)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1219)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:308)
[16:24:44] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:831)
[16:24:44] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "net.minecraft.world.entity.ai.attributes.AttributeModifiable.a(double)" because "range" is null
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:339)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.commands.NPCCommands.create(NPCCommands.java:667)
[16:24:44] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:24:44] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:78)
[16:24:44] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[16:24:44] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:187)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:97)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:228)
[16:24:44] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:289)
[16:24:44] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[16:24:44] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[16:24:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:940)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.handleCommand(PlayerConnection.java:2474)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2245)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[16:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[16:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1386)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:183)
[16:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1363)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1356)
[16:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1334)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1219)
[16:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:308)
[16:24:44] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:831)
[16:26:28] [Craft Scheduler Thread - 9 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:26:28] [Craft Scheduler Thread - 9 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:26:59] [Server thread/INFO]: ItzMarni issued server command: /npc create Tutorial
[16:26:59] [Server thread/INFO]: /npc create Tutorial
[16:26:59] [Server thread/WARN]: java.lang.NoSuchMethodError: 'net.minecraft.world.entity.ai.attributes.AttributeMapBase net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.ex()'
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:321)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.commands.NPCCommands.create(NPCCommands.java:667)
[16:26:59] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:26:59] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:78)
[16:26:59] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[16:26:59] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:187)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:97)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:228)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:289)
[16:26:59] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[16:26:59] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[16:26:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:940)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.handleCommand(PlayerConnection.java:2474)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2245)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[16:26:59] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[16:26:59] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1386)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:183)
[16:26:59] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1363)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1356)
[16:26:59] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1334)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1219)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:308)
[16:26:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:831)
[16:26:59] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "net.minecraft.world.entity.ai.attributes.AttributeModifiable.a(double)" because "range" is null
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:339)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.commands.NPCCommands.create(NPCCommands.java:667)
[16:26:59] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:26:59] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:78)
[16:26:59] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[16:26:59] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:187)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:97)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:228)
[16:26:59] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:289)
[16:26:59] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[16:26:59] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[16:26:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:940)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.handleCommand(PlayerConnection.java:2474)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2245)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[16:26:59] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[16:26:59] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1386)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:183)
[16:26:59] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1363)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1356)
[16:26:59] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1334)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1219)
[16:26:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:308)
[16:26:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:831)
[16:27:15] [Server thread/INFO]: ItzMarni issued server command: /npc create tutorial
[16:27:15] [Server thread/INFO]: /npc create tutorial
[16:27:15] [Server thread/WARN]: java.lang.NoSuchMethodError: 'net.minecraft.world.entity.ai.attributes.AttributeMapBase net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.ex()'
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:321)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.commands.NPCCommands.create(NPCCommands.java:667)
[16:27:15] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:27:15] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:78)
[16:27:15] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[16:27:15] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:187)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:97)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:228)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:289)
[16:27:15] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[16:27:15] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[16:27:15] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:940)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.handleCommand(PlayerConnection.java:2474)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2245)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[16:27:15] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[16:27:15] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1386)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:183)
[16:27:15] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1363)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1356)
[16:27:15] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.bq(IAsyncTaskHandler.java:114)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1490)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1209)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:308)
[16:27:15] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:831)
[16:27:15] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "net.minecraft.world.entity.ai.attributes.AttributeModifiable.a(double)" because "range" is null
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.initialise(EntityHumanNPC.java:339)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.EntityHumanNPC.<init>(EntityHumanNPC.java:105)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.nms.v1_19_R1.entity.HumanController.createEntity(HumanController.java:53)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.AbstractEntityController.spawn(AbstractEntityController.java:41)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:259)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.commands.NPCCommands.create(NPCCommands.java:667)
[16:27:15] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:27:15] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:78)
[16:27:15] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[16:27:15] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:187)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:97)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:228)
[16:27:15] [Server thread/WARN]:     at Citizens-2.0.30-b2716.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:289)
[16:27:15] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[16:27:15] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[16:27:15] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:940)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.handleCommand(PlayerConnection.java:2474)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2245)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[16:27:15] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[16:27:15] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1386)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:183)
[16:27:15] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1363)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1356)
[16:27:15] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.bq(IAsyncTaskHandler.java:114)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1490)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1209)
[16:27:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:308)
[16:27:15] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:831)
[16:28:28] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:28:29] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:30:29] [Craft Scheduler Thread - 36 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:30:29] [Craft Scheduler Thread - 36 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).