Paste #103582: Log File

Date: 2022/12/01 11:43:01 UTC-08:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


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


[11:32:15] [ServerMain/INFO]: Building unoptimized datafixer
[11:32:17] [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'
[11:32:18] [ServerMain/INFO]: Loaded 7 recipes
[11:32:20] [Server thread/INFO]: Starting minecraft server version 1.19.2
[11:32:20] [Server thread/INFO]: Loading properties
[11:32:20] [Server thread/INFO]: This server is running Paper version git-Paper-300 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: 54daefa)
[11:32:20] [Server thread/INFO]: Server Ping Player Sample Count: 12
[11:32:20] [Server thread/INFO]: Using 4 threads for Netty based IO
[11:32:20] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 8 worker threads, and gen parallelism of 8 threads
[11:32:20] [Server thread/INFO]: Default game type: SURVIVAL
[11:32:20] [Server thread/INFO]: Generating keypair
[11:32:20] [Server thread/INFO]: Starting Minecraft server on 162.33.19.122:25565
[11:32:20] [Server thread/INFO]: Using epoll channel type
[11:32:20] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[11:32:20] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[11:32:21] [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!
[11:32:26] [Server thread/WARN]: Legacy plugin SimpleTrash v1.0 does not specify an api-version.
[11:32:26] [Server thread/WARN]: Legacy plugin Broadcast v1.7 does not specify an api-version.
[11:32:26] [Server thread/WARN]: Legacy plugin SimpleTpa v6.1 does not specify an api-version.
[11:32:26] [Server thread/WARN]: Legacy plugin ObsidianBreaker v2.1 does not specify an api-version.
[11:32:26] [Server thread/WARN]: Legacy plugin PermissionsEx v1.23.4 does not specify an api-version.
[11:32:26] [Server thread/WARN]: Legacy plugin LegacyKB v2.0.2 does not specify an api-version.
[11:32:26] [Server thread/INFO]: [LiteEco] Loading 2 libraries... please wait
[11:32:26] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[11:32:26] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[11:32:26] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.20/kotlin-stdlib-jdk8-1.7.20.jar
[11:32:26] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.7.20/kotlin-stdlib-1.7.20.jar
[11:32:26] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.20/kotlin-stdlib-common-1.7.20.jar
[11:32:26] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[11:32:26] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.20/kotlin-stdlib-jdk7-1.7.20.jar
[11:32:26] [Server thread/WARN]: Legacy plugin EasyClearChat v3.7.0 does not specify an api-version.
[11:32:27] [Server thread/WARN]: Legacy plugin EssentialsChat vTeamCity does not specify an api-version.
[11:32:27] [Server thread/WARN]: Legacy plugin SmashHit v1.0-RC2 does not specify an api-version.
[11:32:27] [Server thread/INFO]: [StackMob] Loading 1 libraries... please wait
[11:32:27] [Server thread/INFO]: [StackMob] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[11:32:27] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
[11:32:27] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[11:32:27] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[11:32:27] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[11:32:27] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[11:32:27] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[11:32:27] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[11:32:27] [Server thread/INFO]: [TubeTils] Loading TubeTils v1.0.5
[11:32:27] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[11:32:27] [Server thread/INFO]: [SimpleGeyserVL] Loading SimpleGeyserVL v1.1b
[11:32:27] [Server thread/INFO]: [NametagEdit] Loading NametagEdit v4.5.11
[11:32:27] [Server thread/INFO]: [NoteBlockAPI] Loading NoteBlockAPI v1.6.1-SNAPSHOT
[11:32:27] [Server thread/INFO]: [NoEncryption] Loading NoEncryption v4.3
[11:32:27] [Server thread/INFO]: [SimpleTrash] Loading SimpleTrash v1.0
[11:32:27] [Server thread/INFO]: [BisectHosting] Loading BisectHosting v1.0.4
[11:32:27] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[11:32:27] [Server thread/INFO]: [PVPControl] Loading PVPControl v1.4.2
[11:32:27] [Server thread/INFO]: [AutoSmelt] Loading AutoSmelt v1.9.1
[11:32:27] [Server thread/INFO]: [Broadcast] Loading Broadcast v1.7
[11:32:27] [Server thread/INFO]: [SetSpawn] Loading SetSpawn v4.0
[11:32:27] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[11:32:27] [Server thread/INFO]: [ore-control] Loading ore-control v2022.06.26
[11:32:27] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[11:32:27] [Server thread/INFO]: [GroundItems] Loading GroundItems v1.0
[11:32:27] [Server thread/INFO]: [LaggRemover] Loading LaggRemover v2.0.6
[11:32:27] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b569
[11:32:27] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.2) has not yet been tested! Proceed with caution.
[11:32:28] [Server thread/INFO]: [VoidSpawn] Loading VoidSpawn v1.20.0
[11:32:28] [Server thread/INFO]: [SimpleTpa] Loading SimpleTpa v6.1
[11:32:28] [Server thread/INFO]: [ServerListMotdSpigot] Loading ServerListMotdSpigot v1.2.5
[11:32:28] [Server thread/INFO]: [ObsidianBreaker] Loading ObsidianBreaker v2.1
[11:32:28] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.23.4
[11:32:28] [Server thread/INFO]: [LegacyKB] Loading LegacyKB v2.0.2
[11:32:28] [Server thread/INFO]: [EzHomes] Loading EzHomes v1.7.2
[11:32:28] [Server thread/INFO]: [Enterprise] Loading Enterprise v1.7
[11:32:28] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[11:32:28] [Server thread/INFO]: [LiteEco] Loading LiteEco v1.1.5-SNAPSHOT
[11:32:28] [Server thread/INFO]: [LiteEco] Configuration database.db exist !
[11:32:28] [Server thread/INFO]: [LiteEco] Configuration config.yml exist !
[11:32:28] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.0-SNAPSHOT (b70-6e2c19f)
[11:32:29] [Server thread/INFO]: [floodgate] Took 520ms to boot Floodgate
[11:32:29] [Server thread/INFO]: [EasyClearChat] Loading EasyClearChat v3.7.0
[11:32:29] [Server thread/INFO]: [AntiCooldown] Loading AntiCooldown v4.0.3
[11:32:29] [Server thread/INFO]: [CommandDoesNotExist] Loading CommandDoesNotExist v4.2.1
[11:32:29] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v3.3.1
[11:32:29] [Server thread/INFO]: [ChatItem] Loading ChatItem v2.4.5
[11:32:29] [Server thread/INFO]: [Orebfuscator] Loading Orebfuscator v5.3.1
[11:32:29] [Server thread/INFO]: [PlayerVaults] Loading PlayerVaults v4.2.9
[11:32:29] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser-Spigot v2.1.0-SNAPSHOT
[11:32:29] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[11:32:29] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[11:32:29] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.0 build-18/06/2022
[11:32:29] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[11:32:31] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@319df5f8]
[11:32:31] [Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.24.2
[11:32:31] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.5
[11:32:31] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[11:32:31] [Server thread/INFO]: [AdvancedBan] Loading AdvancedBan v2.3.0
[11:32:31] [Server thread/INFO]: [SilkSpawners] Loading SilkSpawners v2.1.8
[11:32:31] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[11:32:31] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.1.3
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.2
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[jar-relocator]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, jar-relocator]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm-commons]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm-commons]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[HikariCP]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, HikariCP]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[slf4j-api]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, slf4j-api]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[h2]
[11:32:31] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, h2]
[11:32:31] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat vTeamCity
[11:32:31] [Server thread/INFO]: [NFCNotes] Loading NFCNotes v2.3.0
[11:32:31] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[11:32:31] [Server thread/INFO]: [SmashHit] Loading SmashHit v1.0-RC2
[11:32:31] [Server thread/INFO]: [Factions] Loading Factions v1.6.9.5-U0.6.19-b304
[11:32:31] [Server thread/INFO]: [Factions] Registered flag 'fuuid-claim' with WorldGuard.
[11:32:31] [Server thread/INFO]: [Factions] Registered flag 'fuuid-pvp' with WorldGuard.
[11:32:31] [Server thread/INFO]: [Factions] Registered flag 'fuuid-noloss' with WorldGuard.
[11:32:31] [Server thread/INFO]: [Images] Loading Images v2.2.7
[11:32:31] [Server thread/INFO]: [DeathMessages] Loading DeathMessages v1.4.15
[11:32:31] [Server thread/INFO]: [Negativity] Loading Negativity v1.12.3
[11:32:31] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.6.1
[11:32:31] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2775)
[11:32:31] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.5
[11:32:31] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.218-SNAPSHOT
[11:32:31] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[11:32:31] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.12
[11:32:31] [Server thread/INFO]: [StackMob] Loading StackMob v5.8.4
[11:32:31] [Server thread/INFO]: [StackMob] Registered WorldGuard region flag.
[11:32:31] [Server thread/INFO]: [TabList] Loading TabList v5.6.3
[11:32:31] [Server thread/INFO]: [SimpleScore] Loading SimpleScore v3.12.2
[11:32:31] [Server thread/INFO]: [CustomJoinMessages] Loading CustomJoinMessages v17.0.0
[11:32:31] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.9.5
[11:32:31] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.77.4
[11:32:31] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[11:32:31] [Server thread/INFO]: [TubeTils] Enabling TubeTils v1.0.5
[11:32:31] [Server thread/INFO]: [TubeTils] The Plugin will be activated ...
[11:32:31] [Server thread/INFO]: [TubeTils] Set Instances ...
[11:32:31] [Server thread/INFO]: [TubeTils] Setting Instances done!
[11:32:31] [Server thread/INFO]: [TubeTils] The plugin was successfully activated!
[11:32:31] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[11:32:31] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[11:32:31] [Server thread/INFO]: [ore-control] Enabling ore-control v2022.06.26
[11:32:32] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b569
[11:32:32] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[11:32:32] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[11:32:32] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[11:32:32] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[11:32:32] [Server thread/WARN]: [Vault] Loaded class ru.tehkode.permissions.bukkit.PermissionsEx from PermissionsEx v1.23.4 which is not a depend or softdepend of this plugin.
[11:32:32] [Server thread/INFO]: [Vault] [Permission] PermissionsEx found: Waiting
[11:32:32] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[11:32:32] [Server thread/INFO]: [Vault] [Chat] PermissionsEx found: Waiting
[11:32:32] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[11:32:32] [Server thread/INFO]: [LiteEco] Enabling LiteEco v1.1.5-SNAPSHOT
[11:32:32] [Server thread/WARN]: [LiteEco] PlaceholderAPI hook initialized
[11:32:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: liteeco [1.0.0]
[11:32:32] [Server thread/WARN]: [LiteEco] Registered Vault interface.
[11:32:33] [Server thread/INFO]: [LiteEco] Please download update of plugin LiteEco your version: 1.1.5-SNAPSHOT > updated version: 1.1.7-SNAPSHOT
[11:32:33] [Server thread/INFO]: [LiteEco] Registering commands with Cloud Command Framework !
[11:32:33] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[11:32:33] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@4bde512c
[11:32:33] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[11:32:33] [Server thread/INFO]: [LiteEco] Table lite_eco was successfully created.
[11:32:33] [Server thread/INFO]: [LiteEco] Bukkit Listener AccountEconomyManageListener registered () -> ok
[11:32:33] [Server thread/INFO]: [LiteEco] Bukkit Listener PlayerEconomyPayListener registered () -> ok
[11:32:33] [Server thread/INFO]: [LiteEco] Bukkit Listener ConsoleEconomyTransactionListener registered () -> ok
[11:32:33] [Server thread/INFO]: [LiteEco] Bukkit Listener PlayerJoinListener registered () -> ok
[11:32:33] [Server thread/INFO]: [LiteEco] Listeners registered(4) in time 13 ms -> ok
[11:32:33] [Server thread/INFO]: [LiteEco] Plugin enabled in time 835 ms
[11:32:33] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.0 build-18/06/2022
[11:32:33] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R1
[11:32:33] [Server thread/INFO]: [NexEngine] Successfully hooked with PermissionsEx permissions
[11:32:33] [Server thread/INFO]: [NexEngine] Successfully hooked with LiteEco economy
[11:32:33] [Server thread/INFO]: [NexEngine] Successfully hooked with PermissionsEx_Chat chat
[11:32:33] [Server thread/INFO]: [NexEngine] Successfully hooked with Vault!
[11:32:33] [Server thread/INFO]: [NexEngine] Plugin loaded in 68 ms!
[11:32:33] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[11:32:33] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[11:32:33] [Server thread/WARN]: [WorldEdit] Loaded class ru.tehkode.permissions.PermissionManager from PermissionsEx v1.23.4 which is not a depend or softdepend of this plugin.
[11:32:33] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[11:32:33] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R1.PaperweightAdapter as the Bukkit adapter
[11:32:34] [Server thread/INFO]: Preparing level "lobby"
[11:32:34] [Server thread/INFO]: -------- World Settings For [lobby] --------
[11:32:34] [Server thread/INFO]: View Distance: 8
[11:32:34] [Server thread/INFO]: Simulation Distance: 8
[11:32:34] [Server thread/INFO]: Item Merge Radius: 4.0
[11:32:34] [Server thread/INFO]: Item Despawn Rate: 6000
[11:32:34] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[11:32:34] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[11:32:34] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[11:32:34] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[11:32:34] [Server thread/INFO]: Mob Spawn Range: 6
[11:32:34] [Server thread/INFO]: Experience Merge Radius: 6.0
[11:32:34] [Server thread/INFO]: Cactus Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Cane Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Melon Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Sapling Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Carrot Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Potato Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Wheat Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Vine Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Kelp Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[11:32:34] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[11:32:34] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[11:32:34] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[11:32:34] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[11:32:34] [Server thread/INFO]: Max TNT Explosions: 100
[11:32:34] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[11:32:35] [Server thread/INFO]: -------- World Settings For [lobby_nether] --------
[11:32:35] [Server thread/INFO]: View Distance: 8
[11:32:35] [Server thread/INFO]: Simulation Distance: 8
[11:32:35] [Server thread/INFO]: Item Merge Radius: 4.0
[11:32:35] [Server thread/INFO]: Item Despawn Rate: 6000
[11:32:35] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[11:32:35] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[11:32:35] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[11:32:35] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[11:32:35] [Server thread/INFO]: Mob Spawn Range: 6
[11:32:35] [Server thread/INFO]: Experience Merge Radius: 6.0
[11:32:35] [Server thread/INFO]: Cactus Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Cane Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Melon Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Sapling Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Carrot Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Potato Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Wheat Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Vine Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Kelp Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[11:32:35] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[11:32:35] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[11:32:35] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[11:32:35] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[11:32:35] [Server thread/INFO]: Max TNT Explosions: 100
[11:32:35] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[11:32:35] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[11:32:35] [Server thread/INFO]: Time elapsed: 117 ms
[11:32:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[11:32:35] [Server thread/INFO]: Time elapsed: 81 ms
[11:32:35] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[11:32:35] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[11:32:35] [Server thread/INFO]: [SimpleGeyserVL] Enabling SimpleGeyserVL v1.1b
[11:32:35] [Server thread/INFO]: [SimpleGeyserVL] §3[SimpleGeyserVL] §aLoaded vote command: eco give $player$ 20
[11:32:35] [Server thread/INFO]: [SimpleGeyserVL] §3[SimpleGeyserVL] §aLoaded vote command: xp give $player$ 100
[11:32:35] [Server thread/INFO]: [SimpleGeyserVL] §3[SimpleGeyserVL] §aLoaded player msg: §aThank you! You have been awarded §etwenty dollars.
[11:32:35] [Server thread/INFO]: [SimpleGeyserVL] §3[SimpleGeyserVL] §aLoaded proadcast msg: §aThank §e%player%§a for §d/vote§aing for us on %service%!
[11:32:35] [Server thread/WARN]: [SimpleGeyserVL] Loaded class com.vexsoftware.votifier.model.VotifierEvent from Votifier v2.7.3 which is not a depend or softdepend of this plugin.
[11:32:35] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.11
[11:32:35] [Server thread/INFO]: [NametagEdit] Found PermissionsEx! Hooking in.
[11:32:35] [Server thread/WARN]: [NametagEdit] Loaded class ru.tehkode.permissions.events.PermissionEntityEvent from PermissionsEx v1.23.4 which is not a depend or softdepend of this plugin.
[11:32:35] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.1-SNAPSHOT
[11:32:36] [Server thread/INFO]: [NoEncryption] Enabling NoEncryption v4.3
[11:32:36] [Server thread/INFO]: [NoEncryption] Your server is running version 1.19.2-R0.1-SNAPSHOT.
[11:32:36] [Server thread/INFO]: [NoEncryption] Compatibility successful!
[11:32:36] [Server thread/INFO]: [NoEncryption] If you used /reload to update NoEncryption, your players need to disconnect and join back.
[11:32:36] [Server thread/INFO]: [SimpleTrash] Enabling SimpleTrash v1.0*
[11:32:36] [Server thread/INFO]: [BisectHosting] Enabling BisectHosting v1.0.4
[11:32:36] [Server thread/INFO]: [PVPControl] Enabling PVPControl v1.4.2
[11:32:36] [Server thread/INFO]: [Vadelia] 47 language statements loaded.
[11:32:36] [Server thread/INFO]: [Vadelia] Checking dependencies..
[11:32:36] [Server thread/WARN]: [PVPControl] Loaded class com.earth2me.essentials.Essentials from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[11:32:36] [Server thread/INFO]: [Vadelia] Hooked plugins: EssentialsX
[11:32:36] [Server thread/INFO]: [Vadelia] Combat logged enabled!
[11:32:36] [Server thread/INFO]: [AutoSmelt] Enabling AutoSmelt v1.9.1
[11:32:36] [Server thread/WARN]: [AutoSmelt] Loaded class com.sk89q.worldguard.bukkit.WorldGuardPlugin from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[11:32:36] [Server thread/WARN]: [AutoSmelt] Loaded class com.sk89q.worldedit.bukkit.WorldEditPlugin from WorldEdit v7.2.12+6240-87f4ae1 which is not a depend or softdepend of this plugin.
[11:32:36] [Server thread/INFO]: [AutoSmelt] [STDOUT] §3[§7AutoSmelt Log§3]§r WorldGuard functionality added
[11:32:36] [Server thread/WARN]: Nag author(s): '[tweedjt]' of 'AutoSmelt' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[11:32:36] [Server thread/INFO]: [AutoSmelt] [STDOUT] §3[§7AutoSmelt Log§3]§r Starting AutoSmelt
[11:32:36] [Server thread/INFO]: [Broadcast] Enabling Broadcast v1.7*
[11:32:36] [Server thread/INFO]: [Broadcast] [STDOUT] [Broadcast]: Failed to connect to metrics service
[11:32:36] [Server thread/WARN]: Nag author(s): '[iShadey]' of 'Broadcast' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[11:32:36] [Server thread/WARN]: java.net.UnknownHostException: metrics.joshuahagon.co.uk
[11:32:36] [Server thread/WARN]:  at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567)
[11:32:36] [Server thread/WARN]:  at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
[11:32:36] [Server thread/WARN]:  at java.base/java.net.Socket.connect(Socket.java:633)
[11:32:36] [Server thread/WARN]:  at java.base/sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:299)
[11:32:36] [Server thread/WARN]:  at java.base/sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:174)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:183)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:498)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:603)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:266)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:380)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:189)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:175)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1665)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)
[11:32:36] [Server thread/WARN]:  at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224)
[11:32:36] [Server thread/WARN]:  at java.base/java.net.URL.openStream(URL.java:1161)
[11:32:36] [Server thread/WARN]:  at Broadcast 1.7.jar//co.uk.joshuahagon.web.Metrics.addMetric(Metrics.java:20)
[11:32:36] [Server thread/WARN]:  at Broadcast 1.7.jar//co.uk.joshuahagon.plugin.broadcast.Main.onEnable(Main.java:29)
[11:32:36] [Server thread/WARN]:  at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[11:32:36] [Server thread/WARN]:  at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370)
[11:32:36] [Server thread/WARN]:  at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542)
[11:32:36] [Server thread/WARN]:  at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565)
[11:32:36] [Server thread/WARN]:  at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479)
[11:32:36] [Server thread/WARN]:  at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636)
[11:32:36] [Server thread/WARN]:  at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422)
[11:32:36] [Server thread/WARN]:  at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:306)
[11:32:36] [Server thread/WARN]:  at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1100)
[11:32:36] [Server thread/WARN]:  at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[11:32:36] [Server thread/WARN]:  at java.base/java.lang.Thread.run(Thread.java:833)
[11:32:36] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v4.0
[11:32:36] [Server thread/INFO]: [SetSpawn] Enabled!
[11:32:36] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[11:32:36] [Server thread/INFO]: [BuycraftX] Validating your server key...
[11:32:36] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[11:32:37] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[11:32:37] [Server thread/INFO]: [Votifier] Loaded token for website: default
[11:32:37] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[11:32:37] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[11:32:37] [Server thread/INFO]: [GroundItems] Enabling GroundItems v1.0
[11:32:37] [Server thread/INFO]: [LaggRemover] Enabling LaggRemover v2.0.6
[11:32:37] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /162.33.19.122:8192.
[11:32:37] [Server thread/INFO]: [LaggRemover] Loaded 0 module(s)
[11:32:37] [Server thread/INFO]: [LaggRemover] The LaggRemover AI is now active!
[11:32:37] [Server thread/INFO]: [LaggRemover] LaggRemover has been enabled!
[11:32:37] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[11:32:37] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[11:32:37] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[11:32:37] [Server thread/INFO]: [SimpleTpa] Enabling SimpleTpa v6.1*
[11:32:37] [Server thread/INFO]: [SimpleTpa] If you need support contact me at https://discord.gg/SZUkza9
[11:32:37] [Server thread/INFO]: [SimpleTpa] Simple Tpa has been enabled on version 6.1
[11:32:37] [Server thread/INFO]: Enabled metrics. You may opt-out by changing plugins/bStats/config.yml
[11:32:37] [Server thread/INFO]: [ServerListMotdSpigot] Enabling ServerListMotdSpigot v1.2.5
[11:32:37] [Server thread/INFO]: [ServerListMotdSpigot] Plugin by KennyTV
[11:32:37] [Server thread/INFO]: Found PlaceholderAPI, now using its placeholders!
[11:32:37] [Server thread/INFO]: [ObsidianBreaker] Enabling ObsidianBreaker v2.1*
[11:32:37] [Server thread/INFO]: [ObsidianBreaker] Couldn't find support for v1_19_R1. Block cracks not activated.
[11:32:37] [Server thread/INFO]: [PermissionsEx] Enabling PermissionsEx v1.23.4*
[11:32:37] [Server thread/INFO]: [PermissionsEx] Initializing file backend
[11:32:37] [Server thread/INFO]: [PermissionsEx] Permissions file successfully reloaded
[11:32:37] [Server thread/INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
[11:32:37] [Server thread/INFO]: [Vault][Permission] PermissionsEx hooked.
[11:32:37] [Server thread/INFO]: [Vault] [Vault][Chat] PermissionsEx_Chat hooked.
[11:32:37] [Server thread/INFO]: [LegacyKB] Enabling LegacyKB v2.0.2*
[11:32:37] [Server thread/INFO]: [EzHomes] Enabling EzHomes v1.7.2
[11:32:37] [Thread-20/WARN]: [PermissionsEx] The updater could not find any files for the project id 31279
[11:32:37] [Server thread/INFO]: [EzHomes] Yay! You are using Paper! We will make teleports async!
[11:32:37] [Server thread/INFO]: [Enterprise] Enabling Enterprise v1.7
[11:32:37] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.0-SNAPSHOT (b70-6e2c19f)
[11:32:37] [Server thread/INFO]: [EasyClearChat] Enabling EasyClearChat v3.7.0*
[11:32:37] [Server thread/INFO]: [EasyClearChat] English language chosen correctly.
[11:32:37] [Server thread/INFO]: [EasyClearChat] Plugin enabled. Plugin created by xtomyserrax
[11:32:37] [Server thread/INFO]: [AntiCooldown] Enabling AntiCooldown v4.0.3
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] Currently installed TubeTils version meet the requirements!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] ProtocolLib is installed! Support for ProtocolLib enabled!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] PlaceholderAPI is installed! Support for PlaceholderAPI enabled!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] The Plugin will be activated ...
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] ==================================================
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] JOIN OUR DISCORD: https://discord.gg/73ZDfbx
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] ==================================================
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] Loading Config Files ...
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] Config values are loaded into the cache ...
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] World YourWorldName disabled!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material WOOD_AXE for CustomItemDamage cannot be found or is not supported by 1.19.2-R0.1-SNAPSHOT!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material GOLD_AXE for CustomItemDamage cannot be found or is not supported by 1.19.2-R0.1-SNAPSHOT!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material WOOD_PICKAXE for CustomItemDamage cannot be found or is not supported by 1.19.2-R0.1-SNAPSHOT!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material GOLD_PICKAXE for CustomItemDamage cannot be found or is not supported by 1.19.2-R0.1-SNAPSHOT!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] Config values were successfully cached!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] Config Files was successfully loaded!
[11:32:37] [Server thread/INFO]: [AntiCooldownLogger] Checking for updates ...
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] Listeners will be registered ...
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] Listeners have been successfully registered!
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] Commands will be registered ...
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] Commands have been successfully registered!
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] Placeholders for PlacerholderAPI will be registered ...
[11:32:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: anticooldown [4.0.3]
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] Placeholders have been successfully registered!
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] Load and activate bStats ...
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] bStats was successfully loaded and activated!
[11:32:38] [Server thread/INFO]: [AntiCooldownLogger] The plugin was successfully activated in 636ms!
[11:32:38] [Server thread/INFO]: [CommandDoesNotExist] Enabling CommandDoesNotExist v4.2.1
[11:32:39] [Server thread/INFO]: [CDNE] [CDNE] ProcotolLib found
[11:32:39] [Server thread/INFO]: [CDNE] [CDNE] CommandDoesNotExist version 4.2.1 is Enabled
[11:32:39] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.3.1
[11:32:39] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[11:32:39] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[11:32:39] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_19_R1
[11:32:39] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[11:32:39] [Server thread/INFO]: [AuctionHouse] Loaded 70 listings
[11:32:39] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.5
[11:32:39] [Server thread/INFO]: [ChatItem] Detected server version: v1_19
[11:32:39] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[11:32:39] [Server thread/INFO]: [ChatItem] Loaded 5 getter for base components.
[11:32:39] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[11:32:39] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[11:32:39] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.3.1
[11:32:39] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.9
[11:32:39] [Server thread/INFO]: [PlayerVaults] Loaded! Took 275ms
[11:32:39] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.1.0-SNAPSHOT
[11:32:39] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.24.2
[11:32:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.24.2]
[11:32:39] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.24.2
[11:32:39] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[11:32:39] [Server thread/INFO]: There is a new version available. (2.24.3)
[11:32:39] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/75185/
[11:32:39] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.5
[11:32:39] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[11:32:40] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[11:32:40] [Server thread/WARN]: [Essentials] Loaded class {0} from {1} which is not a depend or softdepend of this plugin.
[11:32:40] [Server thread/ERROR]: [Essentials] You are using plugins known to cause severe issues with EssentialsX and other plugins.
[11:32:40] [Server thread/INFO]: [Essentials] Status determining class: me.doclic.noencryption.NoEncryption
[11:32:40] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsChat to the same version.
[11:32:40] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[11:32:40] [Server thread/INFO]: [Essentials] No kits found to migrate.
[11:32:40] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[11:32:40] [Server thread/INFO]: [Essentials] Using locale en
[11:32:40] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[11:32:40] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[11:32:40] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[11:32:40] [Server thread/INFO]: [Essentials] Using Vault based permissions (PermissionsEx)
[11:32:40] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[11:32:40] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[11:32:40] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[11:32:40] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[11:32:41] [Server thread/INFO]: 

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

[11:32:41] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v2.1.8
[11:32:41] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting SilkSpawners v2.1.8
[11:32:41] [pool-32-thread-1/INFO]: [SilkSpawners] [INFO]: Checking for updates
[11:32:41] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading Cross-Version support
[11:32:41] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading support for NMS-Version v1_19_R1
[11:32:41] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading locale file
[11:32:41] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting metrics service. You can disable the collection of anonymous usage data by editing the config file under /plugins/bStats/
[11:32:41] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering listeners
[11:32:41] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering commands
[11:32:41] [Server thread/INFO]: [SilkSpawners] [INFO]: Started SilkSpawners v2.1.8
[11:32:41] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[11:32:41] [pool-32-thread-1/INFO]: [SilkSpawners] [INFO]: The plugin is up to date (v2.1.8)
[11:32:41] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[11:32:41] [Server thread/INFO]: [Multiverse-Core] §aWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[11:32:41] [Server thread/INFO]: -------- World Settings For [1] --------
[11:32:41] [Server thread/INFO]: View Distance: 8
[11:32:41] [Server thread/INFO]: Simulation Distance: 8
[11:32:41] [Server thread/INFO]: Item Merge Radius: 4.0
[11:32:41] [Server thread/INFO]: Item Despawn Rate: 6000
[11:32:41] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[11:32:41] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[11:32:41] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[11:32:41] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[11:32:41] [Server thread/INFO]: Mob Spawn Range: 6
[11:32:41] [Server thread/INFO]: Experience Merge Radius: 6.0
[11:32:41] [Server thread/INFO]: Cactus Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Cane Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Melon Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Sapling Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Carrot Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Potato Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Wheat Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Vine Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Kelp Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[11:32:41] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[11:32:41] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[11:32:41] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[11:32:41] [Server thread/INFO]: Max TNT Explosions: 100
[11:32:41] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[11:32:41] [Server thread/INFO]: -------- World Settings For [2] --------
[11:32:41] [Server thread/INFO]: View Distance: 8
[11:32:41] [Server thread/INFO]: Simulation Distance: 8
[11:32:41] [Server thread/INFO]: Item Merge Radius: 4.0
[11:32:41] [Server thread/INFO]: Item Despawn Rate: 6000
[11:32:41] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[11:32:41] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[11:32:41] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[11:32:41] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[11:32:41] [Server thread/INFO]: Mob Spawn Range: 6
[11:32:41] [Server thread/INFO]: Experience Merge Radius: 6.0
[11:32:41] [Server thread/INFO]: Cactus Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Cane Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Melon Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Sapling Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Carrot Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Potato Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Wheat Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Vine Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Kelp Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[11:32:41] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[11:32:41] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[11:32:41] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[11:32:41] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[11:32:41] [Server thread/INFO]: Max TNT Explosions: 100
[11:32:41] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[11:32:42] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: lobby_the_end
[11:32:42] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[11:32:42] [Server thread/INFO]: -------- World Settings For [3] --------
[11:32:42] [Server thread/INFO]: View Distance: 8
[11:32:42] [Server thread/INFO]: Simulation Distance: 8
[11:32:42] [Server thread/INFO]: Item Merge Radius: 4.0
[11:32:42] [Server thread/INFO]: Item Despawn Rate: 6000
[11:32:42] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[11:32:42] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[11:32:42] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[11:32:42] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[11:32:42] [Server thread/INFO]: Mob Spawn Range: 6
[11:32:42] [Server thread/INFO]: Experience Merge Radius: 6.0
[11:32:42] [Server thread/INFO]: Cactus Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Cane Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Melon Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Sapling Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Carrot Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Potato Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Wheat Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Vine Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Kelp Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[11:32:42] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[11:32:42] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[11:32:42] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[11:32:42] [Server thread/INFO]: Max TNT Explosions: 100
[11:32:42] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[11:32:42] [Server thread/INFO]: -------- World Settings For [wild] --------
[11:32:42] [Server thread/INFO]: View Distance: 8
[11:32:42] [Server thread/INFO]: Simulation Distance: 8
[11:32:42] [Server thread/INFO]: Item Merge Radius: 4.0
[11:32:42] [Server thread/INFO]: Item Despawn Rate: 6000
[11:32:42] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[11:32:42] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[11:32:42] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[11:32:42] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[11:32:42] [Server thread/INFO]: Mob Spawn Range: 6
[11:32:42] [Server thread/INFO]: Experience Merge Radius: 6.0
[11:32:42] [Server thread/INFO]: Cactus Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Cane Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Melon Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Sapling Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Carrot Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Potato Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Wheat Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Vine Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Kelp Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[11:32:42] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[11:32:42] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[11:32:42] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[11:32:42] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[11:32:42] [Server thread/INFO]: Max TNT Explosions: 100
[11:32:42] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[11:32:42] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[11:32:42] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[11:32:42] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: voidworld
[11:32:42] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[11:32:42] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[11:32:42] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[11:32:42] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[11:32:42] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.1.3
[11:32:42] [Server thread/INFO]:  
[11:32:42] [Server thread/INFO]: __________________________________________________________
[11:32:42] [Server thread/INFO]:  
[11:32:42] [Server thread/INFO]:                        TradeSystem [2.1.3]
[11:32:42] [Server thread/INFO]:  
[11:32:42] [Server thread/INFO]: Status:
[11:32:42] [Server thread/INFO]:  
[11:32:42] [Server thread/INFO]: MC-Version: 1.19.2 (R0.1-SNAPSHOT, Paper)
[11:32:42] [Server thread/INFO]:  
[11:32:42] [Server thread/INFO]:   > Loading sounds
[11:32:42] [Server thread/INFO]:   > Loading blacklist
[11:32:42] [Server thread/INFO]:     ...got 3 blocked item(s)
[11:32:42] [Server thread/INFO]:   > Loading layouts
[11:32:42] [Server thread/INFO]:     ...got 4 layout(s)
[11:32:42] [Server thread/INFO]:   > Database logging is disabled
[11:32:42] [Server thread/INFO]:  
[11:32:42] [Server thread/INFO]: Finished (217ms)
[11:32:42] [Server thread/INFO]:  
[11:32:42] [Server thread/INFO]: __________________________________________________________
[11:32:42] [Server thread/INFO]:  
[11:32:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[11:32:42] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.2
[11:32:43] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[11:32:43] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[11:32:43] [Server thread/INFO]: [ajLeaderboards] The columns already exist for VotingPlugin_Total_AllTime. Canceling updater and bumping DB version.
[11:32:43] [Server thread/INFO]: [ajLeaderboards] The columns already exist for liteeco_balance. Canceling updater and bumping DB version.
[11:32:43] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_deaths. Canceling updater and bumping DB version.
[11:32:43] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[11:32:43] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[11:32:43] [Server thread/INFO]: [ajLeaderboards] Loaded 5 boards
[11:32:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.2]
[11:32:43] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[11:32:43] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.2 by ajgeiss0702 enabled!
[11:32:43] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat vTeamCity*
[11:32:43] [Server thread/WARN]: §4Version mismatch! Please update all Essentials jars to the same version.
[11:32:43] [Server thread/INFO]: [NFCNotes] Enabling NFCNotes v2.3.0
[11:32:43] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[11:32:43] [Server thread/INFO]: [WorldGuard] (lobby) TNT ignition is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (lobby) Lighters are PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (lobby) Lava fire is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (lobby) Fire spread is UNRESTRICTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby'
[11:32:43] [Server thread/INFO]: [WorldGuard] (lobby_nether) TNT ignition is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lighters are PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lava fire is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (lobby_nether) Fire spread is UNRESTRICTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_nether'
[11:32:43] [Server thread/INFO]: [WorldGuard] (1) TNT ignition is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (1) Lighters are PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (1) Lava fire is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (1) Fire spread is UNRESTRICTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '1'
[11:32:43] [Server thread/INFO]: [WorldGuard] (2) TNT ignition is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (2) Lighters are PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (2) Lava fire is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (2) Fire spread is UNRESTRICTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '2'
[11:32:43] [Server thread/INFO]: [WorldGuard] (3) TNT ignition is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (3) Lighters are PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (3) Lava fire is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (3) Fire spread is UNRESTRICTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '3'
[11:32:43] [Server thread/INFO]: [WorldGuard] (wild) TNT ignition is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (wild) Lighters are PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (wild) Lava fire is PERMITTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] (wild) Fire spread is UNRESTRICTED.
[11:32:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'wild'
[11:32:43] [Server thread/INFO]: [WorldGuard] Loading region data...
[11:32:43] [Server thread/WARN]: [NexEngine] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[11:32:43] [Server thread/INFO]: [NexEngine] Successfully hooked with WorldGuard!
[11:32:43] [Server thread/INFO]: [SmashHit] Enabling SmashHit v1.0-RC2*
[11:32:43] [Server thread/INFO]: [Factions] Enabling Factions v1.6.9.5-U0.6.19-b304
[11:32:44] [Server thread/INFO]: [Factions] === Starting up! ===
[11:32:44] [Server thread/INFO]: [Factions] 
[11:32:44] [Server thread/INFO]: [Factions] Factions UUID!
[11:32:44] [Server thread/INFO]: [Factions] Version 1.6.9.5-U0.6.19-b304
[11:32:44] [Server thread/INFO]: [Factions] 
[11:32:44] [Server thread/INFO]: [Factions] Need support? https://factions.support/help/
[11:32:44] [Server thread/INFO]: [Factions] 
[11:32:44] [Server thread/INFO]: [Factions] Detected Minecraft 1.19.2
[11:32:44] [Server thread/INFO]: [Factions] 
[11:32:44] [Server thread/INFO]: [Factions] Server UUID d026408f-6b69-4fac-afac-00640016907c
[11:32:44] [Server thread/INFO]: [Factions] Loaded 1429 material mappings.
[11:32:44] [Server thread/INFO]: [Factions] Loaded 32 players in 20 factions with 924 claims
[11:32:44] [Server thread/INFO]: [Factions] Using POWER for land/raid control. Enabling power commands.
[11:32:44] [Server thread/INFO]: [Factions] Enabling /f fly command
[11:32:44] [Server thread/INFO]: [Factions]  
[11:32:44] [Server thread/WARN]: [Factions] Notice: PermissionsEx version 1.x is dead. We suggest using LuckPerms (or PEX 2.0 when available). https://luckperms.net/
[11:32:44] [Server thread/INFO]: [Factions]  
[11:32:44] [Server thread/INFO]: [Factions] Using BUKKIT as a particle provider
[11:32:44] [Server thread/INFO]: [Factions] Using REDSTONE as the ParticleEffect for /f sc
[11:32:44] [Server thread/INFO]: [Factions] Found API support for sending player titles :D
[11:32:44] [Server thread/INFO]: [Factions] Found and connected to Essentials
[11:32:44] [Server thread/INFO]: [Factions] Based on main.conf will delete Essentials player homes in their old faction when they leave
[11:32:44] [Server thread/INFO]: [Factions] Using Essentials for teleportation
[11:32:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: factionsuuid [1.6.9.5-U0.6.19-b304]
[11:32:44] [Server thread/INFO]: [Factions] Successfully registered placeholders with PlaceholderAPI.
[11:32:44] [Server thread/INFO]: [Factions] Found support for WorldGuard version 7.0.7+216b061
[11:32:44] [Server thread/INFO]: [Factions] === Ready to go after 554ms! ===
[11:32:44] [Server thread/INFO]: [Images] Enabling Images v2.2.7
[11:32:44] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[11:32:44] [Server thread/INFO]: [DeathMessages] Enabling DeathMessages v1.4.15
[11:32:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deathmessages [1.4.15]
[11:32:44] [Server thread/INFO]: [DeathMessages] PlaceholderAPI Hook Enabled!
[11:32:44] [Server thread/INFO]: [DeathMessages] WorldGuard Hook Enabled!
[11:32:44] [Server thread/INFO]: [DeathMessages] bStats Hook Enabled!
[11:32:44] [Server thread/INFO]: [Negativity] Enabling Negativity v1.12.3
[11:32:44] [Server thread/INFO]: [Negativity] Detected server version: v1_19 (v1_19_R1)
[11:32:44] [Server thread/INFO]: [Negativity] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[11:32:44] [Server thread/INFO]: [Negativity] This plugin is free, but you can buy the premium version : https://www.spigotmc.org/resources/86874 <3
[11:32:44] [Server thread/INFO]: [Negativity] Founded u/v/w baseBlock's methods
[11:32:45] [Server thread/INFO]: [Negativity] Loaded support for Essentials, WorldGuard, AdvancedBan, FloodGate.
[11:32:45] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.1
[11:32:45] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `master_world's` override! Maybe there are capital letters?
[11:32:45] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `creative_world's` override! Maybe there are capital letters?
[11:32:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.1]
[11:32:45] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2775)
[11:32:45] [Server thread/INFO]: [Citizens] Loading external libraries
[11:32:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[11:32:48] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[11:32:48] [Server thread/WARN]: [NexEngine] Loaded class net.citizensnpcs.api.trait.TraitInfo from Citizens v2.0.30-SNAPSHOT (build 2775) which is not a depend or softdepend of this plugin.
[11:32:48] [Server thread/INFO]: [NexEngine] Successfully hooked with Citizens!
[11:32:48] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.5
[11:32:48] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[11:32:48] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with DecentHolograms!
[11:32:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.5]
[11:32:48] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[11:32:48] [Server thread/INFO]: [ExcellentCrates] Loaded 5 animation configs.
[11:32:48] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[11:32:48] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[11:32:48] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 133 ms!
[11:32:48] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.218-SNAPSHOT
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[11:32:48] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[11:32:48] [Server thread/INFO]: [mcMMO] Platform String: 1.19.2-R0.1-SNAPSHOT
[11:32:48] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.2
[11:32:48] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[11:32:48] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[11:32:48] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[11:32:48] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[11:32:48] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[11:32:48] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[11:32:49] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
[11:32:49] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[11:32:49] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[11:32:49] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[11:32:50] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[11:32:50] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[11:32:50] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[11:32:50] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[11:32:50] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.12
[11:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.12]
[11:32:50] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[11:32:50] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[11:32:50] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[11:32:50] [Server thread/INFO]: [StackMob] Enabling StackMob v5.8.4
[11:32:50] [Server thread/INFO]: [StackMob] StackMob v5.8.4 by antiPerson and contributors.
[11:32:50] [Server thread/INFO]: [StackMob] GitHub: https://github.com/Nathat23/StackMob-5 Discord: https://discord.gg/fz9xzuB
[11:32:50] [Server thread/INFO]: [StackMob] Loading config files...
[11:32:50] [Server thread/INFO]: [StackMob] Registering hooks and trait checks...
[11:32:50] [Server thread/INFO]: [StackMob] Registering events, commands and tasks...
[11:32:50] [Server thread/INFO]: [TabList] Enabling TabList v5.6.3
[11:32:50] [Server thread/INFO]: [TabList] Hooked PlaceholderAPI version: 2.11.2
[11:32:50] [Server thread/INFO]: [TabList] > Enabled v5.6.3 (64ms)
[11:32:50] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.2
[11:32:50] [ForkJoinPool.commonPool-worker-1/INFO]: [StackMob] No update is currently available.
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] -------------
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] New update is available for TabList
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] Your version: 5.6.3, New version 5.6.4
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] Download: https://www.spigotmc.org/resources/46229/
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] 
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] Always consider upgrading to the latest version, which may include fixes.
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] 
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] To disable update checking, go to the config file
[11:32:51] [ForkJoinPool.commonPool-worker-2/INFO]: [TabList] -------------
[11:32:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SimpleScore [3.12.2]
[11:32:51] [Server thread/INFO]: [CustomJoinMessages] Enabling CustomJoinMessages v17.0.0
[11:32:51] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Asynchronous Tab Completion Support!
[11:32:51] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Brigadier Support!
[11:32:51] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.9.5
[11:32:52] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[11:32:52] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.9.5
[11:32:52] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.77.4
[11:32:52] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[11:32:52] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[11:32:52] [Server thread/INFO]: [Geyser-Spigot] 
[11:32:52] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.1.0-SNAPSHOT (git-master-c6e417a)
[11:32:52] [Server thread/INFO]: [Geyser-Spigot] 
[11:32:52] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[11:32:55] [Network Listener - #3/INFO]: [Geyser-Spigot] Started Geyser on 162.33.19.122:19132
[11:32:55] [Server thread/INFO]: [Geyser-Spigot] Done (2.632s)! Run /geyser help for help!
[11:32:55] [Server thread/INFO]: Running delayed init tasks
[11:32:55] [Craft Scheduler Thread - 24 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[11:32:55] [Craft Scheduler Thread - 26 - Essentials/INFO]: [Essentials] Fetching version information...
[11:32:55] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LiteEco for Vault's Economy API
[11:32:55] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Vault for Vault's Chat API
[11:32:55] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[11:32:55] [Craft Scheduler Thread - 25 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[11:32:55] [Craft Scheduler Thread - 25 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[11:32:55] [Craft Scheduler Thread - 34 - Vault/INFO]: [Vault] Checking for Updates ... 
[11:32:55] [Craft Scheduler Thread - 10 - SmashHit/WARN]: [SmashHit] Plugin SmashHit v1.0-RC2 generated an exception while executing task 765
java.lang.NullPointerException: Damage resolver is null, unsupported Spigot version?
  at com.frash23.smashhit.SmashHitListener.<init>(SmashHitListener.java:49) ~[SmashHit.jar:?]
  at com.frash23.smashhit.SmashHit$1.run(SmashHit.java:61) ~[SmashHit.jar:?]
  at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-300]
  at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.2.jar:git-Paper-300]
  at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.2.jar:?]
  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
  at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:32:55] [Craft Scheduler Thread - 24 - DecentHolograms/INFO]: [DecentHolograms] Loaded 17 holograms!
[11:32:55] [Craft Scheduler Thread - 34 - Vault/INFO]: [Vault] No new version available
[11:32:55] [Craft Scheduler Thread - 37 - Factions/WARN]: [Factions] Update available: 0.6.20
[11:32:56] [Craft Scheduler Thread - 8 - EzHomes/INFO]: [EzHomes] You are running the latest version.
[11:32:56] [Server thread/INFO]: [Factions] Found economy plugin through Vault: LiteEco
[11:32:56] [Server thread/INFO]: [Factions] Using Vault with permissions plugin PermissionsEx
[11:32:56] [Server thread/INFO]: [Factions] Found PlayerVaults hook, adding /f vault and /f setmaxvault commands.
[11:32:56] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[11:32:56] [Server thread/INFO]: [Citizens] Loaded 7 NPCs.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.77.4 ]================================
[11:32:56] [Server thread/INFO]: [ShopGUIPlus]  
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[11:32:56] [Server thread/WARN]: [ShopGUIPlus] Found SilkSpawners but not hooked into it. You need to download an additional addon: https://brcdev.net/go/silkspawners-bridge
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 main menu items.
[11:32:56] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading misc > 73, item not loaded: Invalid or no material name specified
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 76 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'raiding' with 9 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'potions' with 13 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ranks' with 4 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 19 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'building' with 9 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'kits' with 4 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 9 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'crates' with 2 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'enchanting' with 122 items.
[11:32:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[11:32:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[11:32:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 9 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded 11 shops with total of 276 items.
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[11:32:56] [Thread-42/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[11:32:56] [Server thread/INFO]: [ShopGUIPlus]  
[11:32:56] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[11:32:56] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[11:32:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [3.3.1]
[11:32:56] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[11:32:56] [Server thread/INFO]: Done (36.339s)! For help, type "help"
[11:32:56] [Server thread/INFO]: Timings Reset
[11:32:56] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[11:32:56] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[11:32:56] [Craft Scheduler Thread - 28 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.9.5
[11:32:56] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:32:57] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:32:57] [Craft Scheduler Thread - 28 - Images/INFO]: [Images] Loaded 2 images...
[11:33:00] [Craft Scheduler Thread - 34 - EzHomes/INFO]: [EzHomes] Looking for any empty homes files to clean up...
[11:33:00] [Craft Scheduler Thread - 34 - EzHomes/INFO]: [EzHomes] 0 file(s) were cleaned.
[11:33:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[11:33:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[11:33:00] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.bencodez.votingplugin.VotingPluginMain from VotingPlugin v6.9.5 which is not a depend or softdepend of this plugin.
[11:33:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin [1.5]
[11:33:00] [Server thread/INFO]: 3 placeholder hook(s) registered!
[11:33:05] [Craft Scheduler Thread - 38 - NoteBlockAPI/INFO]: [NoteBlockAPI] New update available!
[11:33:18] [User Authenticator #0/INFO]: UUID of player SkyWorker25 is ad2b25a3-55dd-401c-8854-2525b2dac4d0
[11:33:19] [Server thread/INFO]: SkyWorker25[/ipwouldbehere:porthere] logged in with entity id 249 at ([wild]1568.612343147684, 84.0, 486.4572499201549)
[11:33:55] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[11:33:57] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:33:57] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:34:07] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@641ddd41[id=00000000-0000-0000-0009-01f135c9e6f2,name=.Tiko8580,properties={},legacy=false]
java.lang.IllegalArgumentException: Name and ID cannot both be blank
  at com.mojang.authlib.GameProfile.<init>(GameProfile.java:26) ~[authlib-3.11.49.jar:?]
  at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:203) ~[authlib-3.11.49.jar:?]
  at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillGameProfile(PaperMinecraftSessionService.java:38) ~[paper-1.19.2.jar:git-Paper-300]
  at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:175) ~[authlib-3.11.49.jar:?]
  at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillProfileProperties(PaperMinecraftSessionService.java:31) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$3(SkullBlockEntity.java:142) ~[?:?]
  at net.minecraft.Util.ifElse(Util.java:467) ~[?:?]
  at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$6(SkullBlockEntity.java:139) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
  at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:34:15] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@23dd0b3e[id=00000000-0000-0000-0009-01f923d0ee46,name=.MinerMends,properties={},legacy=false]
java.lang.IllegalArgumentException: Name and ID cannot both be blank
  at com.mojang.authlib.GameProfile.<init>(GameProfile.java:26) ~[authlib-3.11.49.jar:?]
  at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:203) ~[authlib-3.11.49.jar:?]
  at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillGameProfile(PaperMinecraftSessionService.java:38) ~[paper-1.19.2.jar:git-Paper-300]
  at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:175) ~[authlib-3.11.49.jar:?]
  at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillProfileProperties(PaperMinecraftSessionService.java:31) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$3(SkullBlockEntity.java:142) ~[?:?]
  at net.minecraft.Util.ifElse(Util.java:467) ~[?:?]
  at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$6(SkullBlockEntity.java:139) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
  at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:34:21] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@ecdd0a9[id=00000000-0000-0000-0009-01f9de5050a8,name=.NotFrosty4660,properties={},legacy=false]
java.lang.IllegalArgumentException: Name and ID cannot both be blank
  at com.mojang.authlib.GameProfile.<init>(GameProfile.java:26) ~[authlib-3.11.49.jar:?]
  at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:203) ~[authlib-3.11.49.jar:?]
  at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillGameProfile(PaperMinecraftSessionService.java:38) ~[paper-1.19.2.jar:git-Paper-300]
  at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:175) ~[authlib-3.11.49.jar:?]
  at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillProfileProperties(PaperMinecraftSessionService.java:31) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$3(SkullBlockEntity.java:142) ~[?:?]
  at net.minecraft.Util.ifElse(Util.java:467) ~[?:?]
  at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$6(SkullBlockEntity.java:139) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
  at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:34:23] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@29da610c[id=00000000-0000-0000-0009-01f52daa5cc7,name=.Nimmby01,properties={},legacy=false]
java.lang.IllegalArgumentException: Name and ID cannot both be blank
  at com.mojang.authlib.GameProfile.<init>(GameProfile.java:26) ~[authlib-3.11.49.jar:?]
  at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:203) ~[authlib-3.11.49.jar:?]
  at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillGameProfile(PaperMinecraftSessionService.java:38) ~[paper-1.19.2.jar:git-Paper-300]
  at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:175) ~[authlib-3.11.49.jar:?]
  at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillProfileProperties(PaperMinecraftSessionService.java:31) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$3(SkullBlockEntity.java:142) ~[?:?]
  at net.minecraft.Util.ifElse(Util.java:467) ~[?:?]
  at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$6(SkullBlockEntity.java:139) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
  at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:34:55] [Server thread/ERROR]: Could not pass event NPCRightClickEvent to Citizens v2.0.30-SNAPSHOT (build 2775)
java.lang.NullPointerException: name cannot be null
  at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:907) ~[guava-31.0.1-jre.jar:?]
  at net.citizensnpcs.npc.ai.speech.CitizensSpeechFactory.getVocalChord(CitizensSpeechFactory.java:38) ~[Citizens-2.0.30-b2775.jar:?]
  at net.citizensnpcs.api.ai.speech.SimpleSpeechController.speak(SimpleSpeechController.java:33) ~[Citizens-2.0.30-b2775.jar:?]
  at net.citizensnpcs.api.ai.speech.SimpleSpeechController.speak(SimpleSpeechController.java:23) ~[Citizens-2.0.30-b2775.jar:?]
  at net.citizensnpcs.trait.text.Text.sendText(Text.java:262) ~[Citizens-2.0.30-b2775.jar:?]
  at net.citizensnpcs.trait.text.Text.sendCooldownMessage(Text.java:222) ~[Citizens-2.0.30-b2775.jar:?]
  at net.citizensnpcs.trait.text.Text.onRightClick(Text.java:166) ~[Citizens-2.0.30-b2775.jar:?]
  at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
  at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:git-Paper-300]
  at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
  at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
  at net.citizensnpcs.EventListen.onPlayerInteractEntity(EventListen.java:483) ~[Citizens-2.0.30-b2775.jar:?]
  at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor591.execute(Unknown Source) ~[?:?]
  at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
  at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:git-Paper-300]
  at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
  at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
  at net.minecraft.server.network.ServerGamePacketListenerImpl$5.performInteraction(ServerGamePacketListenerImpl.java:2914) ~[?:?]
  at net.minecraft.server.network.ServerGamePacketListenerImpl$5.a(ServerGamePacketListenerImpl.java:2970) ~[?:?]
  at net.minecraft.network.protocol.game.ServerboundInteractPacket$InteractionAction.dispatch(ServerboundInteractPacket.java:131) ~[?:?]
  at net.minecraft.network.protocol.game.ServerboundInteractPacket.dispatch(ServerboundInteractPacket.java:80) ~[?:?]
  at net.minecraft.server.network.ServerGamePacketListenerImpl.handleInteract(ServerGamePacketListenerImpl.java:2906) ~[?:?]
  at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:67) ~[?:?]
  at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:12) ~[?:?]
  at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
  at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
  at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
  at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:185) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
  at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
  at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.2.jar:git-Paper-300]
  at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-300]
  at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:34:55] [Server thread/INFO]: SkyWorker25 issued server command: /mv tp wild
[11:34:57] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:34:57] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:35:57] [Craft Scheduler Thread - 42 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:35:58] [Craft Scheduler Thread - 42 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:36:44] [Server thread/INFO]: SkyWorker25 issued server command: /plugins
[11:36:48] [Server thread/INFO]: SkyWorker25 issued server command: /ore-control
[11:36:58] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:36:58] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:37:58] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:37:58] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:38:58] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:38:58] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:39:58] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:39:58] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).