Paste #139762: Citizens Warning

Date: 2026/04/01 17:50:20 UTC+00:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[20:45:06] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Microsoft Microsoft-11369940) on Windows 11 10.0 (amd64)
[20:45:06] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.11-127-main@bd74bf6 (2026-03-10T02:55:23Z) for Minecraft 1.21.11
[20:45:08] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[20:45:11] [ServerMain/INFO]: [PluginInitializerManager] Initialized 49 plugins
[20:45:11] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - CrazyCrates (5.0.0)
[20:45:11] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (48):
 - AdvancedAchievements (9.4), AfkPool (2.1.0), AlphaChest (1.17.0), BeastLib (1.6.1), BeastWithdraw (2.5.4), BuycraftX (12.0.8), CMILib (1.5.8.8), Citizens (2.0.41-SNAPSHOT (build 4138)), ClearLag (3.2.2), CombatLogX (10.4.2.4), CompatNoCheatPlus (6.6.7-SNAPSHOT-b11), CrazyEnvoys (1.14.2), Essentials (2.21.2), EssentialsChat (2.21.2), EssentialsSpawn (2.21.2), FastAsyncWorldEdit (2.15.0+59372c5), FlightEffects (1.3-GodEmpire), FlyPvP-RocketBoots (1.0), GHolo (2.3.2), Geyser-Spigot (2.9.5-SNAPSHOT), GodEmpireAchievements (1.0), GodEmpireCombatLog (1.0), GodEmpireCommandSigns (1), GodEmpireRPGItems (251121-1639-SNAPSHOT), GodEmpireRankup (1.0), GroupManager (3.2 (Phoenix)), KillerMoney (4.6.0), MyCommand (5.7.5), NoCheatPlus (3.17.1-SNAPSHOT-Updated-b268), PlaceholderAPI (2.12.2), PlayerSkillsReborn (1.7.12), ProtocolLib (5.4.1-SNAPSHOT), ServerListPlus (3.5.1-SNAPSHOT), SirBlobmanCore (2.3.0), TAB (5.5.0), TheGlow (1.2.5-STABLE), TradeMe (6.2.2.9), Vault (1.7.3-b131), ViaBackwards (5.8.1-SNAPSHOT), ViaRewind (4.0.15), ViaVersion (5.8.1), VoteParty (2.39), VotifierPlus (1.4.3), VotingPlugin (7.0), WorldGuard (7.0.15-beta-01+445a1d7), ajLeaderboards (2.10.1), zAuctionHouse (4.0.0.0), zMenu (1.1.1.2)
[20:45:20] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[20:45:26] [ServerMain/INFO]: Loaded 1470 recipes
[20:45:26] [ServerMain/INFO]: Loaded 1584 advancements
[20:45:26] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[20:45:27] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 798,2ms
[20:45:27] [Server thread/INFO]: Starting minecraft server version 1.21.11
[20:45:27] [Server thread/INFO]: Loading properties
[20:45:27] [Server thread/INFO]: This server is running Paper version 1.21.11-127-main@bd74bf6 (2026-03-10T02:55:23Z) (Implementing API version 1.21.11-R0.1-SNAPSHOT)
[20:45:27] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[20:45:27] [Server thread/INFO]: Server Ping Player Sample Count: 12
[20:45:27] [Server thread/INFO]: Using 4 threads for Netty based IO
[20:45:29] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[20:45:29] [Server thread/INFO]: Default game type: SURVIVAL
[20:45:29] [Server thread/INFO]: Generating keypair
[20:45:29] [Server thread/INFO]: Starting Minecraft server on *:25565
[20:45:29] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[20:45:29] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 4 libraries... please wait
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\ch\ethz\globis\phtree\phtree\2.8.2\phtree-2.8.2.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\it\unimi\dsi\fastutil\8.5.16\fastutil-8.5.16.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\team\unnamed\mocha\3.0.0\mocha-3.0.0.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\javassist\javassist\3.30.2-GA\javassist-3.30.2-GA.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [zMenu] Loading 2 libraries... please wait
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [zMenu] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\mariadb\jdbc\mariadb-java-client\3.5.6\mariadb-java-client-3.5.6.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [zMenu] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\net\kyori\adventure-text-minimessage\4.26.1\adventure-text-minimessage-4.26.1.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [zMenu] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\net\kyori\adventure-api\4.26.1\adventure-api-4.26.1.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [zMenu] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\net\kyori\adventure-key\4.26.1\adventure-key-4.26.1.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [zMenu] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [zMenu] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[20:45:30] [Server thread/INFO]: [SpigotLibraryLoader] [zMenu] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\jetbrains\annotations\26.0.2-1\annotations-26.0.2-1.jar
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouse] Loading 1 libraries... please wait
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouse] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\mariadb\jdbc\mariadb-java-client\3.5.6\mariadb-java-client-3.5.6.jar
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\openjdk\nashorn\nashorn-core\15.7\nashorn-core-15.7.jar
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\ow2\asm\asm\7.3.1\asm-7.3.1.jar
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\ow2\asm\asm-commons\7.3.1\asm-commons-7.3.1.jar
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\ow2\asm\asm-analysis\7.3.1\asm-analysis-7.3.1.jar
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\ow2\asm\asm-tree\7.3.1\asm-tree-7.3.1.jar
[20:45:31] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\ow2\asm\asm-util\7.3.1\asm-util-7.3.1.jar
[20:45:31] [Server thread/INFO]: [TheGlow] Dependencies loaded correctly
[20:45:31] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[20:45:44] [Server thread/WARN]: Legacy plugin PlayerSkillsReborn v1.7.12 does not specify an api-version.
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loading 6 libraries... please wait
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\postgresql\postgresql\42.4.2\postgresql-42.4.2.jar
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\checkerframework\checker-qual\3.5.0\checker-qual-3.5.0.jar
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\com\h2database\h2\2.1.214\h2-2.1.214.jar
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\mysql\mysql-connector-java\8.0.30\mysql-connector-java-8.0.30.jar
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\com\google\protobuf\protobuf-java\3.19.4\protobuf-java-3.19.4.jar
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\mariadb\jdbc\mariadb-java-client\3.0.7\mariadb-java-client-3.0.7.jar
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[20:45:44] [Server thread/INFO]: [SpigotLibraryLoader] [GroupManager] Loaded library C:\Users\REGEAR\Desktop\GodEmpire FlyPvP (GameServer) (1.21) (Most Updated)\libraries\org\slf4j\slf4j-api\2.0.0\slf4j-api-2.0.0.jar
[20:45:44] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[20:45:44] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.15.0+59372c5
[20:45:46] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@49e2ba24]
[20:45:46] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.8.1
[20:45:46] [Server thread/INFO]: [ViaVersion] ViaVersion 5.8.1 is now loaded. Registering protocol transformers and injecting...
[20:45:46] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading block connection mappings ...
[20:45:47] [Via-Mappingloader-1/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[20:45:47] [Server thread/INFO]: [ViaBackwards] Loading translations...
[20:45:47] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[20:45:48] [Server thread/INFO]: [ViaRewind] Registering protocols...
[20:45:48] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.8.1-SNAPSHOT
[20:45:48] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.15-beta-01+445a1d7
[20:45:48] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.12.2
[20:45:49] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.15
[20:45:49] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.1-SNAPSHOT
[20:45:49] [Server thread/INFO]: [SirBlobman Core] Loading server plugin SirBlobmanCore v2.3.0
[20:45:49] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.2
[20:45:49] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.41-SNAPSHOT (build 4138)
[20:45:49] [Server thread/INFO]: [zMenu] Loading server plugin zMenu v1.1.1.2
[20:45:49] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.4.3
[20:45:49] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.8.8
[20:45:49] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.5.0
[20:45:49] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v10.4.2.4
[20:45:49] [Server thread/INFO]: [CombatLogX] Loading expansions...
[20:45:49] [Server thread/INFO]: [CombatLogX] There are no expansions to load.
[20:45:49] [Server thread/INFO]: [CombatLogX] CombatLogX loaded successfully.
[20:45:49] [Server thread/INFO]: [AdvancedAchievements] Loading server plugin AdvancedAchievements v9.4
[20:45:49] [Server thread/INFO]: [CompatNoCheatPlus] Loading server plugin CompatNoCheatPlus v6.6.7-SNAPSHOT-b11
[20:45:49] [Server thread/INFO]: [BeastLib] Loading server plugin BeastLib v1.6.1
[20:45:49] [Server thread/INFO]: [zAuctionHouse] Loading server plugin zAuctionHouse v4.0.0.0
[20:45:49] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v7.0
[20:45:49] [Server thread/INFO]: [VoteParty] Loading server plugin VoteParty v2.39
[20:45:49] [Server thread/INFO]: [TradeMe] Loading server plugin TradeMe v6.2.2.9
[20:45:49] [Server thread/INFO]: [TheGlow] Loading server plugin TheGlow v1.2.5-STABLE
[20:45:49] [Server thread/INFO]: [ServerListPlus] Loading server plugin ServerListPlus v3.5.1-SNAPSHOT
[20:45:49] [Server thread/INFO]: [PlayerSkillsReborn] Loading server plugin PlayerSkillsReborn v1.7.12
[20:45:49] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.5
[20:45:49] [Server thread/INFO]: [KillerMoney] Loading server plugin KillerMoney v4.6.0
[20:45:49] [Server thread/INFO]: [GroupManager] Loading server plugin GroupManager v3.2 (Phoenix)
[20:45:49] [Server thread/INFO]: [GroupManager] Dependencies: OK
[20:45:49] [Server thread/INFO]: [GodEmpireRPGItems] Loading server plugin GodEmpireRPGItems v251121-1639-SNAPSHOT
[20:45:49] [Server thread/INFO]: [GodEmpireRankup] Loading server plugin GodEmpireRankup v1.0
[20:45:49] [Server thread/INFO]: [GodEmpireCommandSigns] Loading server plugin GodEmpireCommandSigns v1
[20:45:49] [Server thread/INFO]: [GodEmpireCombatLog] Loading server plugin GodEmpireCombatLog v1.0
[20:45:49] [Server thread/INFO]: [GodEmpireAchievements] Loading server plugin GodEmpireAchievements v1.0
[20:45:49] [Server thread/INFO]: [GHolo] Loading server plugin GHolo v2.3.2
[20:45:49] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.9.5-SNAPSHOT
[20:45:50] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[20:45:50] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[20:45:50] [Server thread/INFO]: [FlyPvP-RocketBoots] Loading server plugin FlyPvP-RocketBoots v1.0
[20:45:50] [Server thread/INFO]: [FlightEffects] Loading server plugin FlightEffects v1.3-GodEmpire
[20:45:50] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.2
[20:45:50] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.2
[20:45:50] [Server thread/INFO]: [CrazyEnvoys] Loading server plugin CrazyEnvoys v1.14.2
[20:45:50] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v5.0.0
[20:45:50] [Server thread/INFO]: [NoCheatPlus] Loading server plugin NoCheatPlus v3.17.1-SNAPSHOT-Updated-b268
[20:45:50] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[20:45:50] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[20:45:50] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.21.11
[20:45:50] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[20:45:50] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[20:45:50] [Server thread/INFO]: [BeastWithdraw] Loading server plugin BeastWithdraw v2.5.4
[20:45:50] [Server thread/INFO]: [AlphaChest] Loading server plugin AlphaChest v1.17.0
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.10.1
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[20:45:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[20:45:50] [Server thread/INFO]: [AfkPool] Loading server plugin AfkPool v2.1.0
[20:45:50] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[20:45:50] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[20:45:50] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[20:45:50] [Server thread/INFO]: [Vault] [Permission] GroupManager found: Waiting
[20:45:50] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[20:45:50] [Server thread/INFO]: [Vault] [Chat] GroupManager found: Waiting
[20:45:50] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[20:45:50] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.15.0+59372c5
[20:45:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[20:45:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[20:45:51] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[20:45:51] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[20:45:51] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_11.PaperweightFaweAdapter as the Bukkit adapter
[20:45:52] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.15
[20:45:52] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.1-SNAPSHOT
[20:45:52] [Server thread/INFO]: [SirBlobman Core] Enabling SirBlobmanCore v2.3.0
[20:45:52] [Server thread/INFO]: [SirBlobman Core] Successfully loaded 129 language(s)
[20:45:52] [Server thread/INFO]: Preparing level "world"
[20:45:52] [Server thread/INFO]: -------- World Settings For [world] --------
[20:45:52] [Server thread/INFO]: Mob Spawn Range: 4
[20:45:52] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[20:45:52] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[20:45:52] [Server thread/INFO]: Item Despawn Rate: 6000
[20:45:52] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[20:45:52] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[20:45:52] [Server thread/INFO]: Cactus Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Cane Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Melon Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Sapling Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Carrot Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Potato Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Wheat Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Vine Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: Kelp Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[20:45:52] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[20:45:52] [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
[20:45:52] [Server thread/INFO]: Max TNT Explosions: 100
[20:45:52] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[20:45:52] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[20:45:52] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[20:45:52] [Server thread/INFO]: Item Merge Radius: 2.5
[20:45:52] [Server thread/INFO]: Experience Merge Radius: 3.0
[20:45:52] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[20:45:52] [Server thread/INFO]: View Distance: 10
[20:45:52] [Server thread/INFO]: Simulation Distance: 10
[20:45:53] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[20:45:53] [Server thread/INFO]: Mob Spawn Range: 4
[20:45:53] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[20:45:53] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[20:45:53] [Server thread/INFO]: Item Despawn Rate: 6000
[20:45:53] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[20:45:53] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[20:45:53] [Server thread/INFO]: Cactus Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Cane Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Melon Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Sapling Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Carrot Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Potato Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Wheat Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Vine Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Kelp Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[20:45:53] [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
[20:45:53] [Server thread/INFO]: Max TNT Explosions: 100
[20:45:53] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[20:45:53] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[20:45:53] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[20:45:53] [Server thread/INFO]: Item Merge Radius: 2.5
[20:45:53] [Server thread/INFO]: Experience Merge Radius: 3.0
[20:45:53] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[20:45:53] [Server thread/INFO]: View Distance: 10
[20:45:53] [Server thread/INFO]: Simulation Distance: 10
[20:45:53] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[20:45:53] [Server thread/INFO]: Mob Spawn Range: 4
[20:45:53] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[20:45:53] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[20:45:53] [Server thread/INFO]: Item Despawn Rate: 6000
[20:45:53] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[20:45:53] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[20:45:53] [Server thread/INFO]: Cactus Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Cane Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Melon Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Sapling Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Carrot Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Potato Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Wheat Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Vine Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: Kelp Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[20:45:53] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[20:45:53] [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
[20:45:53] [Server thread/INFO]: Max TNT Explosions: 100
[20:45:53] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[20:45:53] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[20:45:53] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[20:45:53] [Server thread/INFO]: Item Merge Radius: 2.5
[20:45:53] [Server thread/INFO]: Experience Merge Radius: 3.0
[20:45:53] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[20:45:53] [Server thread/INFO]: View Distance: 10
[20:45:53] [Server thread/INFO]: Simulation Distance: 10
[20:45:53] [Server thread/INFO]: Loading 60 persistent chunks for world 'minecraft:overworld'...
[20:45:53] [Server thread/INFO]: Preparing spawn area: 14%
[20:45:53] [Server thread/INFO]: Prepared spawn area in 286 ms
[20:45:53] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:the_nether'...
[20:45:53] [Server thread/INFO]: Prepared spawn area in 2 ms
[20:45:53] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:the_end'...
[20:45:53] [Server thread/INFO]: Prepared spawn area in 0 ms
[20:45:53] [Server thread/INFO]: Done preparing level "world" (1.012s)
[20:45:53] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.8.1
[20:45:53] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.11 (774)
[20:45:53] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.8.1-SNAPSHOT
[20:45:53] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.15-beta-01+445a1d7
[20:45:54] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[20:45:54] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[20:45:54] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[20:45:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[20:45:54] [Server thread/INFO]: [WorldGuard] Loading region data...
[20:45:54] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.12.2
[20:45:54] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[20:45:54] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.2
[20:45:55] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[20:45:55] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[20:45:55] [Server thread/INFO]: [Essentials] No kits found to migrate.
[20:45:55] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[20:45:55] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[20:45:55] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[20:45:55] [Server thread/INFO]: [Essentials] Using locale en
[20:45:55] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[20:45:56] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[20:45:56] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[20:45:56] [Server thread/INFO]: [Essentials] Using Vault based permissions (GroupManager)
[20:45:56] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.41-SNAPSHOT (build 4138)
[20:45:56] [Server thread/INFO]: [Citizens] Detected system language [[el]]. If you'd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[20:45:56] [Server thread/INFO]: [Citizens] Loaded 2 templates.
[20:45:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[20:45:57] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[20:45:57] [Server thread/INFO]: [zMenu] Enabling zMenu v1.1.1.2
[20:45:57] [Server thread/INFO]: [zMenu v1.1.1.2] === ENABLE START ===
[20:45:57] [Server thread/INFO]: [zMenu v1.1.1.2] Plugin Version V1.1.1.2
[20:45:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zmenu [1.1.1.2]
[20:45:57] [Server thread/INFO]: [zMenu] The database connection is valid ! (SQLITE)
[20:45:57] [Server thread/INFO]: [zMenu] Use ComponentMeta
[20:45:57] [Server thread/INFO]: [zMenu v1.1.1.2] Paper server detected, loading Dialogs support
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\actions_patterns\default-actions.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\patterns\pattern_example.yml loaded successfully !
[20:45:58] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\advanced_inventory.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\animated_title_inventory.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\basic_inventory.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\examples\cookies.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\examples\playtimes.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\examples\switch.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\example_punish.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kits_preview.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_commander.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_emperor.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_extra.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_firework.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_guard.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_human.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_king.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_slave.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\kit_soldier.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\inventories\pro_inventory.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\website\inventories.yml loaded successfully !
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\dialogs\confirmation-dialog.yml loaded successfully!
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\dialogs\default-dialog.yml loaded successfully!
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\dialogs\multi_action-dialog.yml loaded successfully!
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zMenu\dialogs\server_link-dialog.yml loaded successfully!
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] Command /basic_command successfully register.
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] Command /advanced_command successfully register.
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] Command /pro_command successfully register.
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] Command /openbook successfully register.
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] Command /kits successfully register.
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] Command /punish successfully register.
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] 
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] You can support zMenu by upgrading your account here: https://minecraft-inventory-builder.com/account-upgrade
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] zMenu’s site includes an inventory editor (under development), a marketplace (already available) is a forum (under development)
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] 
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] Loading 7 commands
[20:45:58] [Server thread/INFO]: [zMenu v1.1.1.2] === ENABLE DONE (1149ms) ===
[20:45:58] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.4.3
[20:45:58] [Server thread/INFO]: [VotifierPlus] Votifier enabled.
[20:45:58] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.8.8
[20:45:58] [Server thread/INFO]: Server version: v1_21_R7 - 1.21.11 - paper  1.21.11-127-bd74bf6 (MC: 1.21.11)
[20:45:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.8.8]
[20:45:59] [Server thread/INFO]: PlaceholderAPI hooked.
[20:45:59] [Server thread/INFO]: Updated (EN) language file. Took 34ms
[20:45:59] [Server thread/INFO]: [TAB] Enabling TAB v5.5.0
[20:45:59] [Server thread/INFO]: [TAB] Enabled in 311ms
[20:45:59] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v10.4.2.4
[20:45:59] [Server thread/INFO]: [CombatLogX] There are no expansions to enable.
[20:45:59] [Server thread/INFO]: [CombatLogX] CombatLogX is now enabled.
[20:45:59] [Server thread/INFO]: [AdvancedAchievements] Enabling AdvancedAchievements v9.4
[20:45:59] [Server thread/INFO]: Bukkit version: 1.21.11-R0.1-SNAPSHOT
[20:45:59] [Server thread/INFO]: Parsed server version: 121
[20:45:59] [Server thread/INFO]: [AdvancedAchievements] Backing up and loading configuration files...
[20:45:59] [Server thread/INFO]: [AdvancedAchievements] Loaded 113 achievements in 13 categories.
[20:45:59] [Server thread/INFO]: [AdvancedAchievements] 42 disabled categories: [Treasures, Fertilising, HoePlowings, PlayerCommands, EffectsHeld, LavaBuckets, DistancePig, MusicDiscs, Eggs, Beds, Brewing, DistanceHorse, DistanceGliding, Smelting, PetMasterReceive, Deaths, PetMasterGive, Breaks, Shear, Taming, Trades, JobsReborn, Snowballs, Fireworks, ItemDrops, BooksEdited, Breeding, Commands, Milk, WaterBuckets, Fish, DistanceBoat, Places, AdvancementsCompleted, ItemPickups, Crafts, AnvilsUsed, Connections, DistanceMinecart, TargetsShot, DistanceLlama, RaidsWon]
[20:45:59] [Server thread/INFO]: [AdvancedAchievements] Registering event listeners...
[20:45:59] [Server thread/INFO]: [AdvancedAchievements] Initialising h2 database...
[20:46:00] [Server thread/INFO]: [AdvancedAchievements] Setting up command executor and custom tab completers...
[20:46:00] [Server thread/INFO]: [AdvancedAchievements] Launching scheduled tasks...
[20:46:00] [Server thread/INFO]: [AdvancedAchievements] Registering permissions...
[20:46:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aach [9.4]
[20:46:01] [Server thread/INFO]: [AdvancedAchievements] Plugin has finished loading and is ready to run! Took 1282ms.
[20:46:01] [Server thread/INFO]: [CompatNoCheatPlus] Enabling CompatNoCheatPlus v6.6.7-SNAPSHOT-b11
[20:46:01] [Server thread/INFO]: [CompatNoCheatPlus] Registered hook(NCPHook might get added later): Citizens2(default) / 2.2
[20:46:01] [Server thread/INFO]: [CompatNoCheatPlus] Registered hook(NCPHook might get added later): BlockBreak(default) / 1.1
[20:46:01] [Server thread/INFO]: [CompatNoCheatPlus] Registered hook(NCPHook might get added later): BlockPlace(default) / 1.0
[20:46:01] [Server thread/INFO]: [CompatNoCheatPlus] Registered hook(NCPHook might get added later): InstaBreak(default) / 1.0
[20:46:01] [Server thread/INFO]: [CompatNoCheatPlus] Registered hook(NCPHook might get added later): EntityDamageByEntity(default) / 0.0
[20:46:01] [Server thread/INFO]: [CompatNoCheatPlus] Registered hook(NCPHook might get added later): Interact(default) / 1.0
[20:46:01] [Server thread/INFO]: [CompatNoCheatPlus] CompatNoCheatPlus v6.6.7-SNAPSHOT-b11 is enabled. Some hooks might get registered with NoCheatPlus later on.
[20:46:01] [Server thread/INFO]: [BeastLib] Enabling BeastLib v1.6.1
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-text-minimessage
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-key
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library examination-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library examination-string
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library annotations
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library slf4j-reload4j
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library slf4j-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library reload4j
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library log4j-core
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library log4j-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library disruptor
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library disruptor
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library slf4j-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jctools-core
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jackson-core
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jackson-databind
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jackson-annotations
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jackson-dataformat-yaml
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library snakeyaml
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jackson-dataformat-xml
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jackson-module-jaxb-annotations
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library stax2-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library woodstox-core
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jansi
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library javax.mail
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library activation
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library javax.persistence
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library kafka-clients
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library lz4
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library snappy-java
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jeromq
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library commons-compress
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library commons-csv
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library jcommander
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library log4j-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library boosted-yaml
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library triumph-gui
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-key
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library examination-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library examination-string
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library annotations
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-text-serializer-legacy
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-text-serializer-gson
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-text-serializer-json
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library option
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library gson
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library auto-service-annotations
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-platform-bukkit
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-platform-api
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-text-serializer-bungeecord
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-nbt
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-text-serializer-gson-legacy-impl
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-platform-facet
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library adventure-platform-viaversion
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library mongo-java-driver
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library mariadb-java-client
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library HikariCP
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library XSeries
[20:46:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.11! Trying to find NMS support
[20:46:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R7' loaded!
[20:46:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'BeastLib' to create a bStats instance!
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library mysql-connector-j
[20:46:01] [Server thread/INFO]: [BeastLib] Loading library quartz
[20:46:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beastlib [1.0]
[20:46:01] [Server thread/INFO]: [zAuctionHouse] Enabling zAuctionHouse v4.0.0.0
[20:46:02] [Server thread/INFO]: [zAuctionHouse] System locale detected: el-GR
[20:46:02] [Server thread/INFO]: [zAuctionHouse]   - Language code: el
[20:46:02] [Server thread/INFO]: [zAuctionHouse]   - Country code: GR
[20:46:02] [Server thread/INFO]: [zAuctionHouse] Using system language: el
[20:46:02] [Server thread/WARN]: [CurrenciesAPI] The framework is not up to date, the latest version is 1.0.13
[20:46:02] [Server thread/INFO]: [zAuctionHouse] Economy 'vault' loaded successfully!
[20:46:02] [Server thread/INFO]: [zAuctionHouse] Loaded 8 categories
[20:46:02] [Server thread/INFO]: [zAuctionHouse] The database connection is valid !
[20:46:02] [Server thread/INFO]: [zAuctionHouse] Registered migration provider: zAuctionHouse V3 (zauctionhousev3)
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\patterns\back.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\patterns\decoration.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\patterns\pagination.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\admin\admin-expired-items.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\admin\admin-history-main.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\admin\admin-logs.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\admin\admin-purchased-items.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\admin\admin-selling-items.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\admin\admin-transactions.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\auction.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\categories.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\confirms\purchase-confirm.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\confirms\purchase-inventory-confirm.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\confirms\remove-confirm.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\confirms\remove-inventory-confirm.yml loaded successfully !
[20:46:02] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\expired-items.yml loaded successfully !
[20:46:03] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\history.yml loaded successfully !
[20:46:03] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\purchased-items.yml loaded successfully !
[20:46:03] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\sell-inventory.yml loaded successfully !
[20:46:03] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\selling-items.yml loaded successfully !
[20:46:03] [Server thread/INFO]: [zMenu v1.1.1.2] plugins\zAuctionHouse\inventories\shulker-content.yml loaded successfully !
[20:46:03] [Server thread/INFO]: [zAuctionHouse] Loaded 1 players successfully
[20:46:03] [Server thread/INFO]: [zAuctionHouse] Loaded 1 items successfully (1 total)
[20:46:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [4.0.0.0]
[20:46:03] [Server thread/INFO]: [zAuctionHouse] zAuctionHouse has just been loaded successfully!
[20:46:03] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v7.0
[20:46:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[20:46:03] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[20:46:03] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[20:46:04] [Server thread/INFO]: [VotingPlugin] Loaded 2 VoteStreak definitions.
[20:46:04] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 7.0
[20:46:04] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from PlanetMinecraft.com, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[20:46:04] [Server thread/INFO]: [VoteParty] Enabling VoteParty v2.39
[20:46:04] [Server thread/INFO]: [VoteParty] [ACF] Enabled Asynchronous Tab Completion Support!
[20:46:04] [Server thread/INFO]: 
 _  _  ____
/ )( \(  _ \
\ \/ / ) __/ VoteParty v2.39
 \__/ (__)   Server Version: 1.21.11-127-bd74bf6 (MC: 1.21.11)

[20:46:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voteparty [2.0]
[20:46:05] [Server thread/INFO]: [TradeMe] Enabling TradeMe v6.2.2.9
[20:46:05] [Server thread/INFO]: [TradeMe] Version 6.2.2.9 has been enabled
[20:46:05] [Server thread/INFO]: [TradeMe] Vault plugin was found!
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [TradeMe] Could not determine sound by craftsound{holder=reference{resourcekey[minecraft name
[20:46:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: trademe [6.2.2.9]
[20:46:05] [Server thread/INFO]: [TradeMe] PlaceholderAPI hooked.
[20:46:05] [Server thread/INFO]: [TradeMe] 0 trade logs preloaded
[20:46:05] [Server thread/INFO]: [TradeMe]  Connected to sqlite
[20:46:05] [Server thread/INFO]: [TheGlow] Enabling TheGlow v1.2.5-STABLE
[20:46:05] [Server thread/INFO]: [TheGlow] Registering files...
[20:46:05] [Server thread/INFO]: [TheGlow] Reloading dynamic commands...
[20:46:05] [Server thread/INFO]: [TheGlow] No previously registered commands found.
[20:46:05] [Server thread/INFO]: [TheGlow] Registering command: glow, aliases: [gw]
[20:46:05] [Server thread/INFO]: [TheGlow] Registering main command: theglow, aliases: [jglow]
[20:46:05] [Server thread/INFO]: [TheGlow] Registering Actions...
[20:46:05] [Server thread/INFO]: [TheGlow] Integrations loaded: TAB=true, LibsDisguises=false, GSit=false
[20:46:05] [Server thread/INFO]: [TheGlow] Registering Hooks...
[20:46:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: theglow [1.2.5-STABLE]
[20:46:05] [Server thread/INFO]: [TheGlow] Hooked onto PlaceholderAPI
[20:46:05] [Server thread/INFO]: [TheGlow] Registering Metrics...
[20:46:05] [Server thread/INFO]: [xshyo.us.theglow.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[20:46:05] [Server thread/INFO]: [xshyo.us.theglow.libs.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@6df2f1d6
[20:46:05] [Server thread/INFO]: [xshyo.us.theglow.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[20:46:05] [Server thread/INFO]: [TheGlow] Connected to SQLite database correctly.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: aqua.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: black.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: blue.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_aqua.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_blue.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_gray.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_green.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_purple.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_red.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: gold.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: gray.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: green.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: light_purple.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: red.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: white.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: yellow.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: christmas.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: halloween.
[20:46:05] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: rainbow.
[20:46:05] [Server thread/INFO]: [TheGlow] Server version: 1.21.11-127-bd74bf6 (MC: 1.21.11) 1.21.11-R0.1-SNAPSHOT
[20:46:05] [Server thread/INFO]: [TheGlow] Done and enabled in 273,04ms
[20:46:05] [Server thread/INFO]: [ServerListPlus] Enabling ServerListPlus v3.5.1-SNAPSHOT
[20:46:06] [Server thread/INFO]: [ServerListPlus] [Core] Reloading configuration...
[20:46:06] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: ServerStatusConf
[20:46:06] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: PluginConf
[20:46:06] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: BukkitConf
[20:46:06] [Server thread/INFO]: [ServerListPlus] ProtocolLib is no longer required (and used) by default when using Paper. If this causes compatibility issues with other plugins, try setting ProtocolLib: ENABLE
[20:46:06] [Server thread/INFO]: [ServerListPlus] [Core] Reloading saved player identities...
[20:46:06] [Server thread/INFO]: [ServerListPlus] Successfully loaded!
[20:46:06] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.5.1-SNAPSHOT enabled.
[20:46:06] [Server thread/INFO]: [PlayerSkillsReborn] Enabling PlayerSkillsReborn v1.7.12*
[20:46:06] [Server thread/INFO]: [PlayerSkillsReborn] Successfully hooked into Citizens.
[20:46:06] [Server thread/INFO]: [PlayerSkillsReborn] HolographicDisplays not found. Holograms will not be available.
[20:46:06] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.5
[20:46:06] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.5*-=-=-=-=-=-=-=-=-=-*
[20:46:06] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[20:46:06] [Server thread/INFO]: | Command file(s) found : 10
[20:46:06] [Server thread/INFO]: = Itemset: loaded enderdungeon
[20:46:06] [Server thread/INFO]: | Config : Ready.
[20:46:06] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[20:46:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[20:46:06] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[20:46:06] [Server thread/INFO]: | Custom commands loaded : 138
[20:46:06] [Server thread/INFO]: | 1 mycmd regions loaded.
[20:46:06] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[20:46:06] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[20:46:06] [Server thread/INFO]: [KillerMoney] Enabling KillerMoney v4.6.0
[20:46:06] [Server thread/INFO]: [GroupManager] Enabling GroupManager v3.2 (Phoenix)
[20:46:06] [Server thread/INFO]: [GroupManager] OfflinePlayers cached ( 3 ).
[20:46:06] [Server thread/INFO]: [GroupManager] World Found: world
[20:46:06] [Server thread/INFO]: [GroupManager] Superperms support enabled.
[20:46:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: groupmanager [1.0.0]
[20:46:06] [Server thread/INFO]: [GroupManager] Add-ons: PlaceholderAPI v2.12.2
[20:46:06] [Server thread/INFO]: [GroupManager] Scheduled Data Saving is set for every 10 minutes!
[20:46:06] [Server thread/INFO]: [GroupManager] Backups will be retained for 24 hours!
[20:46:06] [Server thread/INFO]: [GroupManager] DataSource - YAML
[20:46:06] [Server thread/INFO]: [GroupManager] version 3.2 (Phoenix) is enabled!
[20:46:06] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[20:46:06] [Server thread/INFO]: [Vault][Permission] GroupManager hooked.
[20:46:06] [Server thread/INFO]: [Vault] [Vault][Chat] GroupManager - Chat hooked.
[20:46:06] [Server thread/INFO]: [GodEmpireRPGItems] Enabling GodEmpireRPGItems v251121-1639-SNAPSHOT
[20:46:06] [Server thread/INFO]: [GodEmpireRankup] Enabling GodEmpireRankup v1.0
[20:46:06] [Server thread/INFO]: [GodEmpireCommandSigns] Enabling GodEmpireCommandSigns v1
[20:46:06] [Server thread/INFO]: [GodEmpireCombatLog] Enabling GodEmpireCombatLog v1.0
[20:46:06] [Server thread/INFO]: [GodEmpireAchievements] Enabling GodEmpireAchievements v1.0
[20:46:06] [Server thread/INFO]: [GHolo] Enabling GHolo v2.3.2
[20:46:06] [Server thread/INFO]: [GHolo] The plugin was successfully enabled.
[20:46:06] [Server thread/INFO]: [GHolo] Link with PlaceholderAPI successful!
[20:46:06] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.9.5-SNAPSHOT
[20:46:08] [Server thread/INFO]: [FlyPvP-RocketBoots] Enabling FlyPvP-RocketBoots v1.0
[20:46:08] [Server thread/INFO]: [FlyPvP-RocketBoots] RocketBoots v1.0 enabled!
[20:46:08] [Server thread/INFO]: [FlightEffects] Enabling FlightEffects v1.3-GodEmpire
[20:46:08] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.2
[20:46:08] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[20:46:08] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.2
[20:46:08] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[20:46:08] [Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.14.2
[20:46:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazyenvoys [1.14.2]
[20:46:09] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v5.0.0
[20:46:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [5.0.0]
[20:46:09] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.17.1-SNAPSHOT-Updated-b268
[20:46:09] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.13-1.21 / Bukkit-API
[20:46:09] [Server thread/INFO]: [NoCheatPlus] Applied block patches for multi client protocol support: water_lily, farmland, grass_path, honey_block, shulker_box
[20:46:09] [Server thread/INFO]: [NoCheatPlus] Update block-info: Block shape patch for multi client protocol support.
[20:46:10] [Server thread/INFO]: [NoCheatPlus] Adding packet level hooks for ProtocolLib (MC 1.21.11)...
[20:46:10] [Server thread/INFO]: [NoCheatPlus] Confirm teleport packet available (via name): TELEPORT_ACCEPT[class=ServerboundAcceptTeleportationPacket, id=0]
[20:46:10] [Server thread/INFO]: [NoCheatPlus] Available (and activated) packet level hooks: UseEntityAdapter | MovingFlying | OutgoingPosition | KeepAliveAdapter | SoundDistance | UseItemAdapter | VelocityAdapter | EntityActionAdapter | InputsAdapter
[20:46:10] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal, FastConsume, PacketFrequency and InstantBow on Minecraft 1.9 and later.
[20:46:10] [Server thread/INFO]: [NoCheatPlus] Version 3.17.1-SNAPSHOT-Updated-b268 is enabled.
[20:46:10] [Server thread/INFO]: [CompatNoCheatPlus] [CompatNoCheatPlus] Added 1 registered hooks to NoCheatPlus.
[20:46:10] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[20:46:10] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[20:46:10] [Server thread/INFO]: [ClearLag] Loading modules...
[20:46:10] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (Index 3 out of bounds for length 3)
[20:46:10] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[20:46:10] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[20:46:10] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[20:46:10] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[20:46:10] [Server thread/INFO]: [BuycraftX] Validating your server key...
[20:46:11] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[20:46:11] [Server thread/INFO]: [BeastWithdraw] Enabling BeastWithdraw v2.5.4
[20:46:11] [Server thread/INFO]: [GodEmpireWithdraw] /XpBottle command and aliases [xpb, beastxpb, bottle] are registered.
[20:46:11] [Server thread/INFO]: [GodEmpireWithdraw] /CashNote command and aliases [cashnote, withdraw, moneywithdraw, moneynote] are registered.
[20:46:12] [Server thread/INFO]: [BeastWithdraw] Version 2.5.4 : has been enabled!
[20:46:12] [Server thread/INFO]: [AlphaChest] Enabling AlphaChest v1.17.0
[20:46:12] [Server thread/INFO]: [AlphaChest] loaded 4 chests
[20:46:12] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.10.1
[20:46:12] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[20:46:12] [Server thread/INFO]: [ajLeaderboards] Loaded 3 boards
[20:46:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.10.1]
[20:46:12] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[20:46:12] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 by ajgeiss0702 enabled!
[20:46:12] [Server thread/INFO]: [AfkPool] Enabling AfkPool v2.1.0
[20:46:12] [Server thread/INFO]: [AfkPool] AfkPool Version 2.1.0 enabled.
[20:46:12] [Server thread/INFO]: [spark] Starting background profiler...
[20:46:12] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[20:46:13] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[20:46:13] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[20:46:13] [Server thread/INFO]: [Geyser-Spigot] 
[20:46:13] [Server thread/INFO]: [Geyser-Spigot] Φόρτωση Geyser έκδοσης 2.9.5-b1107 (git-master-cc7ae04)
[20:46:13] [Server thread/INFO]: [Geyser-Spigot] 
[20:46:13] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[20:46:14] [pool-72-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.10.1)
[20:46:16] [GeyserServer-4-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 19132
[20:46:16] [Server thread/INFO]: [Geyser-Spigot] Έγινε (3,148 s)! Εκτελέστε βοήθεια /geyser για βοήθεια!
[20:46:17] [Server thread/INFO]: Running delayed init tasks
[20:46:17] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[20:46:17] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[20:46:17] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[20:46:17] [Craft Scheduler Thread - 19 - NoCheatPlus/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[20:46:17] [Craft Scheduler Thread - 19 - NoCheatPlus/INFO]: [NoCheatPlus] Added hook: ViolationFrequency(NCP) [1.1].
[20:46:17] [Craft Scheduler Thread - 19 - NoCheatPlus/INFO]: [NoCheatPlus] Added hook: Citizens2(cncp) [2.0].
[20:46:17] [Craft Scheduler Thread - 30 - Vault/INFO]: [Vault] Checking for Updates ... 
[20:46:17] [Craft Scheduler Thread - 16 - VoteParty/INFO]: [VoteParty] Version is up to date
[20:46:17] [Craft Scheduler Thread - 26 - AfkPool/INFO]: [AfkPool] There is not a new AfkPool update available, you are on the latest version (2.1.0).
[20:46:17] [Craft Scheduler Thread - 9 - CMILib/INFO]: New version of CMILib was detected. Please update it (1.5.8.8 -> 1.5.9.0)
[20:46:17] [Server thread/INFO]: [NoCheatPlus] Post-enable running...
[20:46:17] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
[20:46:17] [Server thread/INFO]: [NoCheatPlus] Post-enable finished.
[20:46:17] [Craft Scheduler Thread - 28 - SirBlobmanCore/INFO]: [SirBlobman Core]  
[20:46:17] [Craft Scheduler Thread - 28 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] A possible update was found for plugin 'SirBlobmanCore'.
[20:46:17] [Craft Scheduler Thread - 28 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Current Version: 2.3.0
[20:46:17] [Craft Scheduler Thread - 28 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] New Version: 2.9.8.504
[20:46:17] [Craft Scheduler Thread - 28 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
[20:46:17] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[20:46:17] [Craft Scheduler Thread - 29 - GroupManager/INFO]: [GroupManager] No new version available
[20:46:17] [Craft Scheduler Thread - 30 - Vault/INFO]: [Vault] No new version available
[20:46:17] [Craft Scheduler Thread - 8 - zMenu/INFO]: [zMenu v1.1.1.2] No update available.
[20:46:18] [Craft Scheduler Thread - 21 - BeastWithdraw/INFO]: [BeastWithdraw] There is a new update available.
[20:46:18] [Server thread/INFO]: [Citizens] Loaded 8 NPCs.
[20:46:18] [Server thread/INFO]: [GroupManager] Bukkit Permissions Updated!
[20:46:18] [Server thread/INFO]: Done (74.286s)! For help, type "help"
[20:46:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.2]
[20:46:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[20:46:18] [Server thread/INFO]: 2 placeholder hook(s) registered!
[20:46:19] [Craft Scheduler Thread - 7 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:46:19] [Craft Scheduler Thread - 7 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:46:23] [Craft Scheduler Thread - 7 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[20:46:23] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[20:46:23] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[20:46:23] [Craft Scheduler Thread - 19 - VotifierPlus/INFO]: [VotifierPlus] VotifierPlus is up to date! Version: 1.4.3
[20:46:28] [Craft Scheduler Thread - 20 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 7.0
[20:46:29] [User Authenticator #0/INFO]: [GroupManager] Async Player Login event refresh data... 
[20:46:29] [User Authenticator #0/INFO]: [GroupManager] Async Player Login event finshed. 
[20:46:29] [User Authenticator #0/INFO]: UUID of player KAS10_ is 40d39499-35d6-4775-bf5b-56ebfbd0f55b
[20:46:29] [Server thread/INFO]: [HorriblePlayerLoginEventHack] You have plugins listening to the PlayerLoginEvent, this will cause re-configuration APIs to be unavailable: [NoCheatPlus, Essentials, GroupManager, ProtocolLib, WorldGuard]
[20:46:30] [Server thread/INFO]: [VotingPlugin] Login: KAS10_ (40d39499-35d6-4775-bf5b-56ebfbd0f55b)
[20:46:30] [Server thread/INFO]: KAS10_ joined the game
[20:46:30] [Server thread/INFO]: KAS10_[/127.0.0.1:52029] logged in with entity id 67 at ([world]59.71543175776094, 159.65832408246294, -694.3752515333399)
[20:46:35] [Async Chat Thread - #0/INFO]: <[Owner]KAS10_> asd
[20:46:37] [Server thread/INFO]: KAS10_ issued server command: /pl
[20:46:52] [Server thread/INFO]: KAS10_ issued server command: /stop
[20:46:52] [Server thread/INFO]: [KAS10_: Stopping the server]
[20:46:52] [Server thread/INFO]: Stopping server
[20:46:52] [Server thread/INFO]: [AfkPool] Disabling AfkPool v2.1.0
[20:46:52] [Server thread/INFO]: [AfkPool] AfkPool Disabled
[20:46:52] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.10.1
[20:46:52] [pool-79-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[20:46:52] [pool-79-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[20:46:52] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[20:46:52] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[20:46:52] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 disabled.
[20:46:52] [Server thread/INFO]: [AlphaChest] Disabling AlphaChest v1.17.0
[20:46:52] [Server thread/INFO]: [AlphaChest] saved 4 chests
[20:46:52] [Server thread/INFO]: [BeastWithdraw] Disabling BeastWithdraw v2.5.4
[20:46:52] [Server thread/INFO]: [BuycraftX] Disabling BuycraftX v12.0.8
[20:46:52] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.2.2
[20:46:52] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[20:46:52] [Server thread/INFO]: [NoCheatPlus] Disabling NoCheatPlus v3.17.1-SNAPSHOT-Updated-b268
[20:46:52] [Server thread/INFO]: [CompatNoCheatPlus] [CompatNoCheatPlus] Removed 1 registered hooks from NoCheatPlus.
[20:46:52] [Server thread/INFO]: [NoCheatPlus] Removed hook: Citizens2(cncp) [2.0].
[20:46:52] [Server thread/INFO]: [NoCheatPlus] Removed hook: ViolationFrequency(NCP) [1.1].
[20:46:52] [Server thread/INFO]: [NoCheatPlus] Removed hook: AllViolations(NCP) [1.0].
[20:46:52] [Server thread/INFO]: [NoCheatPlus] Version 3.17.1-SNAPSHOT-Updated-b268 is disabled.
[20:46:52] [Server thread/INFO]: [CrazyCrates] Disabling CrazyCrates v5.0.0
[20:46:52] [Server thread/INFO]: [CrazyEnvoys] Disabling CrazyEnvoys v1.14.2
[20:46:52] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.21.2
[20:46:52] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.2
[20:46:52] [Server thread/INFO]: [FlightEffects] Disabling FlightEffects v1.3-GodEmpire
[20:46:52] [Server thread/INFO]: [FlyPvP-RocketBoots] Disabling FlyPvP-RocketBoots v1.0
[20:46:52] [Server thread/INFO]: [FlyPvP-RocketBoots] RocketBoots v1.0 disabled!
[20:46:52] [Server thread/INFO]: [Geyser-Spigot] Disabling Geyser-Spigot v2.9.5-SNAPSHOT
[20:46:52] [Server thread/INFO]: [Geyser-Spigot] Shutting down Geyser.
[20:46:52] [Server thread/INFO]: [Geyser-Spigot] Geyser τερματισμός με επιτυχία.
[20:46:52] [Server thread/INFO]: [GHolo] Disabling GHolo v2.3.2
[20:46:52] [Server thread/INFO]: [GHolo] The plugin was successfully disabled.
[20:46:52] [Server thread/INFO]: [GodEmpireAchievements] Disabling GodEmpireAchievements v1.0
[20:46:53] [Server thread/INFO]: [GodEmpireCombatLog] Disabling GodEmpireCombatLog v1.0
[20:46:53] [Server thread/INFO]: [GodEmpireCommandSigns] Disabling GodEmpireCommandSigns v1
[20:46:53] [Server thread/INFO]: [GodEmpireRankup] Disabling GodEmpireRankup v1.0
[20:46:53] [Server thread/INFO]: [GodEmpireRPGItems] Disabling GodEmpireRPGItems v251121-1639-SNAPSHOT
[20:46:53] [Server thread/INFO]: [GroupManager] Disabling GroupManager v3.2 (Phoenix)
[20:46:53] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[20:46:53] [Server thread/INFO]: [Vault][Permission] GroupManager un-hooked.
[20:46:53] [Server thread/INFO]: [Vault] [Vault][Chat] GroupManager - Chat un-hooked.
[20:46:53] [Server thread/WARN]: [GroupManager] Scheduled Data Saving is Disabled!
[20:46:53] [Server thread/INFO]: [GroupManager] version 3.2 (Phoenix) is disabled!
[20:46:53] [Server thread/INFO]: [KillerMoney] Disabling KillerMoney v4.6.0
[20:46:53] [Server thread/INFO]: [MyCommand] Disabling MyCommand v5.7.5
[20:46:53] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.5*-=-=-=-=-=-=-=-=-=-*
[20:46:53] [Server thread/INFO]: | Tasks : Stopped all tasks.
[20:46:53] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*    Bye!   *-=-=-=-=-=-=-=-=-=-=-*
[20:46:53] [Server thread/INFO]: [PlayerSkillsReborn] Disabling PlayerSkillsReborn v1.7.12
[20:46:53] [Server thread/INFO]: [ServerListPlus] Disabling ServerListPlus v3.5.1-SNAPSHOT
[20:46:53] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.5.1-SNAPSHOT disabled.
[20:46:53] [Server thread/INFO]: [TheGlow] Disabling TheGlow v1.2.5-STABLE
[20:46:53] [Server thread/INFO]: [TradeMe] Disabling TradeMe v6.2.2.9
[20:46:53] [Server thread/INFO]: [TradeMe] 6.2.2.9 disabled
[20:46:53] [Server thread/INFO]: [VoteParty] Disabling VoteParty v2.39
[20:46:53] [Server thread/INFO]: [VotingPlugin] Disabling VotingPlugin v7.0
[20:46:53] [Server thread/INFO]: [VotingPlugin] Allowing background tasks to finish, this could take up to 5 seconds
[20:46:54] [Server thread/INFO]: [zAuctionHouse] Disabling zAuctionHouse v4.0.0.0
[20:46:54] [Server thread/INFO]: [BeastLib] Disabling BeastLib v1.6.1
[20:46:54] [Server thread/INFO]: [CompatNoCheatPlus] Disabling CompatNoCheatPlus v6.6.7-SNAPSHOT-b11
[20:46:54] [Server thread/INFO]: [CompatNoCheatPlus] [CompatNoCheatPlus] Removed 0 registered hooks from NoCheatPlus.
[20:46:54] [Server thread/INFO]: [AdvancedAchievements] Disabling AdvancedAchievements v9.4
[20:46:54] [Server thread/INFO]: [AdvancedAchievements] Remaining requests sent to the database, plugin successfully disabled.
[20:46:54] [Server thread/INFO]: [CombatLogX] Disabling CombatLogX v10.4.2.4
[20:46:54] [Server thread/INFO]: [CombatLogX] CombatLogX is now disabled.
[20:46:54] [Server thread/INFO]: [TAB] Disabling TAB v5.5.0
[20:46:54] [Server thread/INFO]: [TAB] Disabled in 10ms
[20:46:54] [Server thread/INFO]: [CMILib] Disabling CMILib v1.5.8.8
[20:46:54] [Server thread/INFO]: [VotifierPlus] Disabling VotifierPlus v1.4.3
[20:46:54] [Server thread/INFO]: [VotifierPlus] Votifier disabled.
[20:46:54] [Votifier I/O/WARN]: [VotifierPlus] Votifier socket closed.
[20:46:54] [Server thread/INFO]: [zMenu] Disabling zMenu v1.1.1.2
[20:46:54] [Server thread/INFO]: [zMenu v1.1.1.2] === DISABLE START ===
[20:46:54] [Server thread/INFO]: [zMenu v1.1.1.2] === DISABLE DONE (2ms) ===
[20:46:54] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.41-SNAPSHOT (build 4138)
[20:46:54] [Server thread/WARN]: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register Spawned{true} while not enabled
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.registerEvents(PaperEventManager.java:80)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.registerEvents(PaperPluginManagerImpl.java:136)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.registerEvents(SimplePluginManager.java:683)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.addTrait(AbstractNPC.java:106)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:222)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:98)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.deregister(CitizensNPCRegistry.java:102)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.destroy(AbstractNPC.java:151)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.destroy(CitizensNPC.java:126)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$SingleEntityHologramRenderer.destroy(HologramTrait.java:864)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$TextDisplayRenderer.destroy(HologramTrait.java:999)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$HologramLine.removeNPC(HologramTrait.java:559)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait.onDespawn(HologramTrait.java:279)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.trait.Trait.onDespawn(Trait.java:96)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.lambda$despawn$0(CitizensNPC.java:112)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.trait.TraitLookup$ArrayTraitLookup.forEach(TraitLookup.java:58)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:111)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:133)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:198)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.onDisable(Citizens.java:388)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:285)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:242)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:166)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[20:46:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:612)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1020)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:908)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1371)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[20:46:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:46:54] [Server thread/WARN]: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register Spawned{true} while not enabled
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.registerEvents(PaperEventManager.java:80)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.registerEvents(PaperPluginManagerImpl.java:136)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.registerEvents(SimplePluginManager.java:683)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.addTrait(AbstractNPC.java:106)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:222)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:98)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.deregister(CitizensNPCRegistry.java:102)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.destroy(AbstractNPC.java:151)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.destroy(CitizensNPC.java:126)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$SingleEntityHologramRenderer.destroy(HologramTrait.java:864)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$TextDisplayRenderer.destroy(HologramTrait.java:999)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$HologramLine.removeNPC(HologramTrait.java:559)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait.onDespawn(HologramTrait.java:279)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.trait.Trait.onDespawn(Trait.java:96)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.lambda$despawn$0(CitizensNPC.java:112)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.trait.TraitLookup$ArrayTraitLookup.forEach(TraitLookup.java:58)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:111)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:133)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:198)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.onDisable(Citizens.java:388)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:285)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:242)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:166)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[20:46:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:612)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1020)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:908)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1371)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[20:46:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:46:54] [Server thread/WARN]: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register Spawned{true} while not enabled
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.registerEvents(PaperEventManager.java:80)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.registerEvents(PaperPluginManagerImpl.java:136)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.registerEvents(SimplePluginManager.java:683)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.addTrait(AbstractNPC.java:106)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:222)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:98)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.deregister(CitizensNPCRegistry.java:102)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.destroy(AbstractNPC.java:151)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.destroy(CitizensNPC.java:126)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$SingleEntityHologramRenderer.destroy(HologramTrait.java:864)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$TextDisplayRenderer.destroy(HologramTrait.java:999)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$HologramLine.removeNPC(HologramTrait.java:559)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait.onDespawn(HologramTrait.java:279)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.trait.Trait.onDespawn(Trait.java:96)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.lambda$despawn$0(CitizensNPC.java:112)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.trait.TraitLookup$ArrayTraitLookup.forEach(TraitLookup.java:58)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:111)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:133)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:198)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.onDisable(Citizens.java:388)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:285)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:242)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:166)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[20:46:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:612)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1020)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:908)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1371)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[20:46:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:46:54] [Server thread/WARN]: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register Spawned{true} while not enabled
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.registerEvents(PaperEventManager.java:80)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.registerEvents(PaperPluginManagerImpl.java:136)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.registerEvents(SimplePluginManager.java:683)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.addTrait(AbstractNPC.java:106)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:222)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:98)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.deregister(CitizensNPCRegistry.java:102)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.destroy(AbstractNPC.java:151)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.destroy(CitizensNPC.java:126)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$SingleEntityHologramRenderer.destroy(HologramTrait.java:864)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$TextDisplayRenderer.destroy(HologramTrait.java:999)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait$HologramLine.removeNPC(HologramTrait.java:559)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.trait.HologramTrait.onDespawn(HologramTrait.java:279)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.trait.Trait.onDespawn(Trait.java:96)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.lambda$despawn$0(CitizensNPC.java:112)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.trait.TraitLookup$ArrayTraitLookup.forEach(TraitLookup.java:58)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:111)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:133)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:198)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.onDisable(Citizens.java:388)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:285)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:242)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:166)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[20:46:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:612)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1020)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:908)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1371)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[20:46:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:46:54] [Server thread/WARN]: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register Spawned{true} while not enabled
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.registerEvents(PaperEventManager.java:80)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.registerEvents(PaperPluginManagerImpl.java:136)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.registerEvents(SimplePluginManager.java:683)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.addTrait(AbstractNPC.java:106)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:222)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:98)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:133)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:198)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.onDisable(Citizens.java:388)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:285)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:242)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:166)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[20:46:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:612)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1020)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:908)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1371)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[20:46:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:46:54] [Server thread/WARN]: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register Spawned{true} while not enabled
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.registerEvents(PaperEventManager.java:80)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.registerEvents(PaperPluginManagerImpl.java:136)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.registerEvents(SimplePluginManager.java:683)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.addTrait(AbstractNPC.java:106)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:222)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:98)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:133)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:198)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.onDisable(Citizens.java:388)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:285)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:242)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:166)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[20:46:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:612)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1020)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:908)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1371)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[20:46:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:46:54] [Server thread/WARN]: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register Spawned{true} while not enabled
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.registerEvents(PaperEventManager.java:80)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.registerEvents(PaperPluginManagerImpl.java:136)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.registerEvents(SimplePluginManager.java:683)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.addTrait(AbstractNPC.java:106)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:222)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:98)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:133)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:198)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.onDisable(Citizens.java:388)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:285)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:242)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:166)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[20:46:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:612)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1020)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:908)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1371)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[20:46:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:46:54] [Server thread/WARN]: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register Spawned{true} while not enabled
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.registerEvents(PaperEventManager.java:80)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.registerEvents(PaperPluginManagerImpl.java:136)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.registerEvents(SimplePluginManager.java:683)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.addTrait(AbstractNPC.java:106)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:222)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:98)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:133)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:198)
[20:46:54] [Server thread/WARN]:     at Citizens-2.0.41-b4138.jar//net.citizensnpcs.Citizens.onDisable(Citizens.java:388)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:285)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:242)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:166)
[20:46:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[20:46:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[20:46:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:612)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1020)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:908)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1371)
[20:46:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[20:46:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:46:54] [Server thread/WARN]: Failed to flush log messages before plugin unload.
[20:46:54] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.2
[20:46:54] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[20:46:54] [Server thread/WARN]: Failed to flush log messages before plugin unload.
[20:46:54] [Server thread/INFO]: [SirBlobman Core] Disabling SirBlobmanCore v2.3.0
[20:46:54] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.4.1-SNAPSHOT
[20:46:54] [Server thread/INFO]: [ViaRewind] Disabling ViaRewind v4.0.15
[20:46:54] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.12.2
[20:46:54] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.15-beta-01+445a1d7
[20:46:54] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[20:46:54] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v5.8.1-SNAPSHOT
[20:46:54] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v5.8.1
[20:46:54] [Server thread/INFO]: [ViaVersion] ViaVersion has been disabled; uninjected the platform and shut down the scheduler.
[20:46:54] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.15.0+59372c5
[20:46:54] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[20:46:54] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[20:46:54] [Server thread/INFO]: Saving players
[20:46:54] [Server thread/INFO]: KAS10_ lost connection: Server closed
[20:46:54] [Server thread/INFO]: KAS10_ left the game
[20:46:54] [Server thread/INFO]: Saving worlds
[20:46:54] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[20:46:54] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[20:46:54] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[20:46:54] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Saved 710 block chunks, 710 entity chunks, 0 poi chunks in world 'world' in 0,74s
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world'
[20:46:55] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'world_nether' in 0,00s
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world_nether'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world_nether'
[20:46:55] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'world_the_end' in 0,00s
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world_the_end'
[20:46:55] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world_the_end'
[20:46:55] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[20:46:55] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[20:46:55] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[20:46:55] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[20:46:55] [Server thread/INFO]: Waiting for all RegionFile I/O tasks to complete...
[20:46:55] [Server thread/INFO]: All RegionFile I/O tasks to complete
[20:46:55] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of worker pool for up to 60s...
[20:46:55] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of I/O pool for up to 60s...