Paste #116769: Citizens / quests not working.

Date: 2023/10/25 06:40:55 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[25Oct2023 13:37:57.377] [main/INFO] [Arclight/]: 

       ___           ___     __   /\
      /   | ________/ (_)__ / /  / /
     / /| |/ __/ __/ / / _ / _ \/__/
    / ___ / / / /_/ / / / / // / /
   /_/  |/_/  \__/_/_/\_ /_//_/ /
                     /__/     \/

    运行版本 角 / arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3
    构建日期 2023-10-22 09:57:56

[25Oct2023 13:37:57.433] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.2, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853, nogui]
[25Oct2023 13:37:57.435] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.9 by Eclipse Adoptium; OS Linux arch amd64 version 5.15.0-72-generic
[25Oct2023 13:37:57.552] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/minecraft/multicraft/servers/server1936040/default/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2396!/ Service=ModLauncher Env=SERVER
[25Oct2023 13:37:57.810] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/minecraft/multicraft/servers/server1936040/default/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.2/fmlcore-1.19.2-43.3.2.jar is missing mods.toml file
[25Oct2023 13:37:57.811] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/minecraft/multicraft/servers/server1936040/default/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.2/javafmllanguage-1.19.2-43.3.2.jar is missing mods.toml file
[25Oct2023 13:37:57.812] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/minecraft/multicraft/servers/server1936040/default/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.2/lowcodelanguage-1.19.2-43.3.2.jar is missing mods.toml file
[25Oct2023 13:37:57.813] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/minecraft/multicraft/servers/server1936040/default/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.2/mclanguage-1.19.2-43.3.2.jar is missing mods.toml file
[25Oct2023 13:37:57.880] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
[25Oct2023 13:37:58.710] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [io.izzel.arclight.common.mod.ArclightConnector]
[25Oct2023 13:37:58.786] [main/INFO] [mixin/]: Compatibility level set to JAVA_17
[25Oct2023 13:37:58.788] [main/INFO] [Arclight/]: 核心 Mixin 配置已加载
[25Oct2023 13:37:58.789] [main/INFO] [Arclight/]: 服务端优化 Mixin 配置已加载
[25Oct2023 13:37:58.794] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui]
[25Oct2023 13:38:04.392] [main/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer
[25Oct2023 13:38:06.340] [modloading-worker-0/INFO] [Arclight/]: Arclight Mod 已加载
[25Oct2023 13:38:06.361] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 43.3.2, for MC 1.19.2 with MCP 20220805.130853
[25Oct2023 13:38:06.361] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v43.3.2 Initialized
[25Oct2023 13:38:06.370] [modloading-worker-0/INFO] [Arclight/]: Arclight 事件系统已注册
[25Oct2023 13:38:06.769] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json
[25Oct2023 13:38:07.179] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: AHEAD Current: 43.3.2 Target: null
[25Oct2023 13:38:07.541] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[25Oct2023 13:38:08.191] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/minecraft/multicraft/servers/server1936040/default/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%23161!/assets/.mcassetsroot' uses unexpected schema
[25Oct2023 13:38:08.191] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/minecraft/multicraft/servers/server1936040/default/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%23161!/data/.mcassetsroot' uses unexpected schema
[25Oct2023 13:38:10.333] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes
[25Oct2023 13:38:10.754] [main/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1179 advancements
[25Oct2023 13:38:11.262] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.19.2
[25Oct2023 13:38:11.262] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties
[25Oct2023 13:38:11.262] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: SURVIVAL
[25Oct2023 13:38:11.262] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair
[25Oct2023 13:38:11.367] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on 45.159.6.92:25678
[25Oct2023 13:38:11.390] [Server thread/INFO] [net.minecraft.server.network.ServerConnectionListener/]: Using epoll channel type
[25Oct2023 13:38:11.761] [Server thread/INFO] [Minecraft/]: This server is running Arclight version arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT)
[25Oct2023 13:38:11.826] [Server thread/INFO] [Arclight/]: 正在向 Bukkit 注册 ...
[25Oct2023 13:38:12.402] [Server thread/INFO] [Arclight/]: 注册了 0 个材料,其中 0 个方块 0 个物品
[25Oct2023 13:38:12.404] [Server thread/INFO] [Arclight/]: 注册了 1 个新的药水效果
[25Oct2023 13:38:12.410] [Server thread/INFO] [Arclight/]: 注册了 39 个新的附魔
[25Oct2023 13:38:12.410] [Server thread/INFO] [Arclight/]: 注册了 0 个新的生物类型
[25Oct2023 13:38:12.411] [Server thread/INFO] [Arclight/]: 注册了 0 个新的村民职业
[25Oct2023 13:38:12.411] [Server thread/INFO] [Arclight/]: 注册了 0 个新的生物群系
[25Oct2023 13:38:12.431] [Server thread/INFO] [STDOUT/]: Server Ping Player Sample Count: 12
[25Oct2023 13:38:12.434] [Server thread/INFO] [Minecraft/]: Using 4 threads for Netty based IO
[25Oct2023 13:38:12.435] [Server thread/INFO] [Minecraft/]: Debug logging is enabled
[25Oct2023 13:38:12.639] [Server thread/INFO] [Arclight/]: 正在加载混淆数据 ...
[25Oct2023 13:38:13.061] [Server thread/INFO] [Arclight/]: 正在加载 Plugin Patcher ...
[25Oct2023 13:38:13.300] [Server thread/ERROR] [STDERR/]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[25Oct2023 13:38:14.960] [Netty Epoll Server IO #1/INFO] [net.minecraftforge.server.ServerLifecycleHooks/SERVERHOOKS]: Disconnecting Player (server is still starting): literal{Server is still starting! Please wait before reconnecting.}
[25Oct2023 13:38:17.627] [Server thread/WARN] [Minecraft/]: Legacy plugin SetSpawn v2.3.5 does not specify an api-version.
[25Oct2023 13:38:17.771] [Server thread/WARN] [Minecraft/]: Legacy plugin NPCIntroductions v1.1 does not specify an api-version.
[25Oct2023 13:38:17.797] [Server thread/WARN] [Minecraft/]: Legacy plugin PlaceholdersInCommands v1.0.0 does not specify an api-version.
[25Oct2023 13:38:17.875] [Server thread/WARN] [Minecraft/]: Legacy plugin AutoCommandsPlus v1.2.0 does not specify an api-version.
[25Oct2023 13:38:18.818] [Server thread/INFO] [Minecraft/]: [Denizen] Loading 2 libraries... please wait
[25Oct2023 13:38:18.892] [Server thread/INFO] [Minecraft/]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1936040/default/libraries/org/mongodb/mongodb-driver-sync/4.7.0/mongodb-driver-sync-4.7.0.jar
[25Oct2023 13:38:18.893] [Server thread/INFO] [Minecraft/]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1936040/default/libraries/org/mongodb/bson/4.7.0/bson-4.7.0.jar
[25Oct2023 13:38:18.893] [Server thread/INFO] [Minecraft/]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1936040/default/libraries/org/mongodb/mongodb-driver-core/4.7.0/mongodb-driver-core-4.7.0.jar
[25Oct2023 13:38:18.893] [Server thread/INFO] [Minecraft/]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1936040/default/libraries/org/mongodb/bson-record-codec/4.7.0/bson-record-codec-4.7.0.jar
[25Oct2023 13:38:18.893] [Server thread/INFO] [Minecraft/]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1936040/default/libraries/redis/clients/jedis/3.7.0/jedis-3.7.0.jar
[25Oct2023 13:38:18.893] [Server thread/INFO] [Minecraft/]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1936040/default/libraries/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar
[25Oct2023 13:38:18.893] [Server thread/INFO] [Minecraft/]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1936040/default/libraries/org/apache/commons/commons-pool2/2.10.0/commons-pool2-2.10.0.jar
[25Oct2023 13:38:19.085] [Server thread/INFO] [LuckPerms/]: Loading LuckPerms v5.4.40
[25Oct2023 13:38:19.312] [Server thread/INFO] [PlaceholderAPI/]: Loading PlaceholderAPI v2.11.3
[25Oct2023 13:38:19.312] [Server thread/INFO] [EliteEnchantments/]: Loading EliteEnchantments v2.2.7
[25Oct2023 13:38:19.312] [Server thread/INFO] [CMILib/]: Loading CMILib v1.4.2.2
[25Oct2023 13:38:19.312] [Server thread/INFO] [AutomaticBroadcast/]: Loading AutomaticBroadcast v1.4.2
[25Oct2023 13:38:19.312] [Server thread/INFO] [SetSpawn/]: Loading SetSpawn v2.3.5
[25Oct2023 13:38:19.312] [Server thread/INFO] [Votifier/]: Loading Votifier v2.7.3
[25Oct2023 13:38:19.312] [Server thread/INFO] [ProtocolLib/]: Loading ProtocolLib v5.1.0
[25Oct2023 13:38:19.404] [Server thread/WARN] [ProtocolLib/]: Loaded class javax.annotation.Nonnull from DiscordSRV v1.26.2 which is not a depend or softdepend of this plugin.
[25Oct2023 13:38:20.197] [Server thread/INFO] [DeluxeTags/]: Loading DeluxeTags v1.8.2-Release
[25Oct2023 13:38:20.197] [Server thread/INFO] [NPCIntroductions/]: Loading NPCIntroductions v1.1
[25Oct2023 13:38:20.197] [Server thread/INFO] [CraftEnhance/]: Loading CraftEnhance v2.5.9
[25Oct2023 13:38:20.197] [Server thread/INFO] [PlaceholdersInCommands/]: Loading PlaceholdersInCommands v1.0.0
[25Oct2023 13:38:20.197] [Server thread/INFO] [EliteArmor/]: Loading EliteArmor v6.6.8
[25Oct2023 13:38:20.197] [Server thread/INFO] [Vault/]: Loading Vault v1.7.3-b131
[25Oct2023 13:38:20.198] [Server thread/INFO] [AutoCommandsPlus/]: Loading AutoCommandsPlus v1.2.0
[25Oct2023 13:38:20.198] [Server thread/INFO] [SimpleScore/]: Loading SimpleScore v3.12.2
[25Oct2023 13:38:20.199] [Server thread/INFO] [Skript/]: Loading Skript v2.7.1
[25Oct2023 13:38:20.199] [Server thread/INFO] [VaultChatFormatter/]: Loading VaultChatFormatter v1.1-SNAPSHOT
[25Oct2023 13:38:20.199] [Server thread/INFO] [HeadDatabase/]: Loading HeadDatabase v4.18.2
[25Oct2023 13:38:20.199] [Server thread/INFO] [CommandPanels/]: Loading CommandPanels v3.19.1.3
[25Oct2023 13:38:20.199] [Server thread/INFO] [Multiverse-Core/]: Loading Multiverse-Core v4.3.12
[25Oct2023 13:38:20.226] [Server thread/INFO] [FastAsyncWorldEdit/]: Loading FastAsyncWorldEdit v2.5.2;19ed349
[25Oct2023 13:38:21.001] [Server thread/WARN] [FastAsyncWorldEdit/]: Loaded class javax.annotation.Nullable from DiscordSRV v1.26.2 which is not a depend or softdepend of this plugin.
[25Oct2023 13:38:22.591] [Server thread/INFO] [com.sk89q.worldedit.extension.platform.PlatformManager/]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1fea448f]
[25Oct2023 13:38:22.591] [Server thread/INFO] [com.sk89q.worldedit.bukkit.WorldEditPlugin/]: Default configuration file written: worldedit-config.yml
[25Oct2023 13:38:22.618] [Server thread/INFO] [DiscordSRV/]: Loading DiscordSRV v1.26.2
[25Oct2023 13:38:22.618] [Server thread/INFO] [EliteBosses/]: Loading EliteBosses v1.5.5
[25Oct2023 13:38:22.618] [Server thread/INFO] [SuperbVote/]: Loading SuperbVote v0.5.5
[25Oct2023 13:38:22.618] [Server thread/INFO] [DecentHolograms/]: Loading DecentHolograms v2.8.3
[25Oct2023 13:38:22.621] [Server thread/INFO] [FastAsyncVoxelSniper/]: Loading FastAsyncVoxelSniper v3.0.0-SNAPSHOT-2
[25Oct2023 13:38:22.621] [Server thread/INFO] [EconomyShopGUI-Premium/]: Loading EconomyShopGUI-Premium v5.2.3
[25Oct2023 13:38:22.621] [Server thread/INFO] [Denizen/]: Loading Denizen v1.2.6-SNAPSHOT (build 1782-REL)
[25Oct2023 13:38:22.621] [Server thread/INFO] [InteractiveChat/]: Loading InteractiveChat v4.2.7.2
[25Oct2023 13:38:22.621] [Server thread/INFO] [InteractiveChatDiscordSRVAddon/]: Loading InteractiveChatDiscordSrvAddon v4.2.7.2
[25Oct2023 13:38:22.640] [Server thread/INFO] [DiscordSRV/]: API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[25Oct2023 13:38:22.640] [Server thread/INFO] [EverNifeCore/]: Loading EverNifeCore v2.0.3.2
[25Oct2023 13:38:22.640] [Server thread/INFO] [CMI/]: Loading CMI v9.6.7.1
[25Oct2023 13:38:22.640] [Server thread/INFO] [Citizens/]: Loading Citizens v2.0.33-SNAPSHOT (build 3229)
[25Oct2023 13:38:22.640] [Server thread/INFO] [Quests/]: Loading Quests v5.0.0-rc.1-b430
[25Oct2023 13:38:22.642] [Server thread/INFO] [LuckPerms/]: Enabling LuckPerms v5.4.40
[25Oct2023 13:38:23.769] [Server thread/INFO] [Console/]:         __    
[25Oct2023 13:38:23.770] [Server thread/INFO] [Console/]:   |    |__)   LuckPerms v5.4.40
[25Oct2023 13:38:23.770] [Server thread/INFO] [Console/]:   |___ |      Running on Bukkit - Arclight
[25Oct2023 13:38:23.770] [Server thread/INFO] [Console/]: 
[25Oct2023 13:38:23.776] [Server thread/INFO] [LuckPerms/]: Loading configuration...
[25Oct2023 13:38:24.237] [Server thread/INFO] [LuckPerms/]: Loading storage provider... [H2]
[25Oct2023 13:38:25.440] [Server thread/INFO] [LuckPerms/]: Loading internal permission managers...
[25Oct2023 13:38:25.617] [Server thread/INFO] [LuckPerms/]: Performing initial data load...
[25Oct2023 13:38:25.704] [Server thread/INFO] [LuckPerms/]: Successfully enabled. (took 3061ms)
[25Oct2023 13:38:25.705] [Server thread/INFO] [ProtocolLib/]: Enabling ProtocolLib v5.1.0
[25Oct2023 13:38:25.734] [Server thread/INFO] [Vault/]: Enabling Vault v1.7.3-b131
[25Oct2023 13:38:25.796] [Server thread/INFO] [Vault/]: [Permission] SuperPermissions loaded as backup permission system.
[25Oct2023 13:38:25.826] [Server thread/INFO] [Vault/]: Enabled Version 1.7.3-b131
[25Oct2023 13:38:25.840] [Server thread/INFO] [LuckPerms/]: Registered Vault permission & chat hook.
[25Oct2023 13:38:25.842] [Server thread/INFO] [FastAsyncWorldEdit/]: Enabling FastAsyncWorldEdit v2.5.2;19ed349
[25Oct2023 13:38:26.154] [Server thread/INFO] [com.fastasyncworldedit.core.Fawe/]: LZ4 Compression Binding loaded successfully
[25Oct2023 13:38:26.191] [Server thread/INFO] [com.fastasyncworldedit.core.Fawe/]: ZSTD Compression Binding loaded successfully
[25Oct2023 13:38:26.256] [Server thread/INFO] [com.sk89q.worldedit.extension.platform.PlatformCommandManager/]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[25Oct2023 13:38:26.607] [Server thread/INFO] [com.sk89q.wepif.PermissionsResolverManager/]: WEPIF: Updated config file
[25Oct2023 13:38:26.614] [Server thread/INFO] [com.sk89q.wepif.PermissionsResolverManager/]: WEPIF: Vault detected! Using Vault for permissions
[25Oct2023 13:38:30.716] [Server thread/INFO] [com.sk89q.worldedit.bukkit.WorldEditPlugin/]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R1.PaperweightFaweAdapter as the Bukkit adapter
[25Oct2023 13:38:31.789] [Server thread/WARN] [com.fastasyncworldedit.core.util.UpdateNotification/]: You are using a snapshot or a custom version of FAWE. This is not an official build distributed via https://www.spigotmc.org/resources/13932/
[25Oct2023 13:38:31.828] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Preparing level "OdysseySpawn"
[25Oct2023 13:38:31.839] [Server thread/INFO] [Arclight/]: 注册了 0 个新的世界类型
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: -------- World Settings For [OdysseySpawn] --------
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:38:32.064] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:38:32.065] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: -------- World Settings For [OdysseySpawn/DIM-1] --------
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:38:32.099] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: -------- World Settings For [OdysseySpawn/DIM1] --------
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:38:32.117] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:38:32.122] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:38:32.129] [Server thread/INFO] [PlaceholderAPI/]: Enabling PlaceholderAPI v2.11.3
[25Oct2023 13:38:32.403] [Netty Epoll Server IO #2/INFO] [net.minecraftforge.server.ServerLifecycleHooks/SERVERHOOKS]: Disconnecting Player (server is still starting): literal{Server is still starting! Please wait before reconnecting.}
[25Oct2023 13:38:32.404] [Server thread/INFO] [PlaceholderAPI/]: Fetching available expansion information...
[25Oct2023 13:38:32.406] [Server thread/INFO] [EliteEnchantments/]: Enabling EliteEnchantments v2.2.7
[25Oct2023 13:38:32.930] [Server thread/INFO] [CMILib/]: Enabling CMILib v1.4.2.2
[25Oct2023 13:38:33.737] [Server thread/INFO] [Console/]: Server version: v1_19_R1 - 1.19.2 - spigot
[25Oct2023 13:38:34.204] [Server thread/INFO] [Console/]: CMI hooked.
[25Oct2023 13:38:34.208] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: cmil [1.4.2.2]
[25Oct2023 13:38:34.208] [Server thread/INFO] [Console/]: PlaceholderAPI hooked.
[25Oct2023 13:38:34.263] [Server thread/INFO] [Console/]: Updated (EN) language file. Took 29ms
[25Oct2023 13:38:34.264] [Server thread/INFO] [AutomaticBroadcast/]: Enabling AutomaticBroadcast v1.4.2
[25Oct2023 13:38:34.274] [Server thread/INFO] [Console/]:    _____  _____
[25Oct2023 13:38:34.274] [Server thread/INFO] [Console/]:   |  _  || __  |  AutomaticBroadcast
[25Oct2023 13:38:34.274] [Server thread/INFO] [Console/]:   |     || __ -|    Version 1.4.2
[25Oct2023 13:38:34.274] [Server thread/INFO] [Console/]:   |__|__||_____|      by Pandaaa
[25Oct2023 13:38:34.274] [Server thread/INFO] [Console/]: 
[25Oct2023 13:38:34.275] [Server thread/INFO] [SetSpawn/]: Enabling SetSpawn v2.3.5
[25Oct2023 13:38:34.276] [Server thread/INFO] [org.minecraftlist.setspawn.UpdateCheck/]: Checking for updates for setspawn on mclist.io
[25Oct2023 13:38:34.655] [Server thread/ERROR] [Minecraft/]: Error occurred while enabling SetSpawn v2.3.5 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "com.google.gson.JsonElement.getAsString()" because the return value of "com.google.gson.JsonObject.get(String)" is null
    at org.minecraftlist.setspawn.UpdateCheck.checkUpdate(UpdateCheck.java:35) ~[?:?] {}
    at org.minecraftlist.setspawn.SetSpawnPlugin.onEnable(SetSpawnPlugin.java:24) ~[?:?] {}
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPluginMixin.java:264) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:JavaPluginMixin,pl:mixin:A,re:mixin,re:mixin}
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoaderMixin.java:342) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:JavaPluginLoaderMixin,pl:mixin:A}
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,re:mixin}
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServerMixin.java:525) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:CraftServerMixin,pl:mixin:A,re:mixin,re:mixin}
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServerMixin.java:439) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:CraftServerMixin,pl:mixin:A,re:mixin,re:mixin}
    at net.minecraft.server.MinecraftServer.handler$zba000$arclight$enablePlugins(MinecraftServerMixin.java:2194) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.m_129815_(MinecraftServerMixin.java:375) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.m_130006_(MinecraftServerMixin.java:300) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.dedicated.DedicatedServer.m_7038_(DedicatedServerMixin.java:165) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.dedicated.DedicatedServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServerMixin.java:2087) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServerMixin.java:244) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at java.lang.Thread.run(Thread.java:840) [?:?] {re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin}
[25Oct2023 13:38:34.657] [Server thread/INFO] [Votifier/]: Enabling Votifier v2.7.3
[25Oct2023 13:38:34.662] [Server thread/INFO] [Votifier/]: Loaded token for website: default
[25Oct2023 13:38:34.718] [Server thread/INFO] [Votifier/]: Using epoll transport to accept votes.
[25Oct2023 13:38:34.792] [Server thread/INFO] [Votifier/]: Method none selected for vote forwarding: Votes will not be received from a forwarder.
[25Oct2023 13:38:34.793] [Server thread/INFO] [DeluxeTags/]: Enabling DeluxeTags v1.8.2-Release
[25Oct2023 13:38:34.797] [Votifier epoll boss/ERROR] [Votifier/]: Votifier was not able to bind to /45.159.6.92:8192
com.vexsoftware.votifier.io.netty.channel.unix.Errors$NativeIoException: bind(..) failed: Address already in use
[25Oct2023 13:38:34.800] [Server thread/INFO] [DeluxeTags/]: Using standard hex colors format: #aaFF00
[25Oct2023 13:38:34.800] [Server thread/INFO] [DeluxeTags/]: 1 tag loaded
[25Oct2023 13:38:34.830] [Server thread/INFO] [DeluxeTags/]: Loading DeluxeTags messages.yml
[25Oct2023 13:38:34.833] [Server thread/INFO] [DeluxeTags/]: PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[25Oct2023 13:38:34.833] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: deluxetags [1.8.2-Release]
[25Oct2023 13:38:34.834] [Server thread/INFO] [DeluxeTags/]: ----------------------------
[25Oct2023 13:38:34.834] [Server thread/INFO] [DeluxeTags/]:      DeluxeTags Updater
[25Oct2023 13:38:34.834] [Server thread/INFO] [DeluxeTags/]:  
[25Oct2023 13:38:34.834] [Server thread/INFO] [DeluxeTags/]: You are running 1.8.2-Release
[25Oct2023 13:38:34.834] [Server thread/INFO] [DeluxeTags/]: The latest version
[25Oct2023 13:38:34.834] [Server thread/INFO] [DeluxeTags/]: of DeluxeTags!
[25Oct2023 13:38:34.834] [Server thread/INFO] [DeluxeTags/]:  
[25Oct2023 13:38:34.834] [Server thread/INFO] [DeluxeTags/]: ----------------------------
[25Oct2023 13:38:34.835] [Server thread/INFO] [NPCIntroductions/]: Enabling NPCIntroductions v1.1
[25Oct2023 13:38:34.837] [Server thread/WARN] [NPCIntroductions/]: Loaded class net.citizensnpcs.api.event.NPCRightClickEvent from Citizens v2.0.33-SNAPSHOT (build 3229) which is not a depend or softdepend of this plugin.
[25Oct2023 13:38:34.839] [Server thread/INFO] [CraftEnhance/]: Enabling CraftEnhance v2.5.9
[25Oct2023 13:38:34.843] [Server thread/INFO] [CraftEnhance/]: Now starting MenuApi. Any errors will be shown below.
[25Oct2023 13:38:34.849] [Server thread/INFO] [NBTAPI/]: [NBTAPI] NMS support 'MC1_19_R1' loaded!
[25Oct2023 13:38:34.849] [Server thread/INFO] [NBTAPI/]: [NBTAPI] Found Gson: class com.google.gson.Gson
[25Oct2023 13:38:34.924] [Thread-10/WARN] [NBTAPI/]: [NBTAPI] The NBT-API located at 'package craftenhance.libs.menulib.dependencies.nbt.nbtapi' seems to be outdated!
[25Oct2023 13:38:34.924] [Thread-10/WARN] [NBTAPI/]: [NBTAPI] Current Version: '2.11.2' Newest Version: 2.12.0'
[25Oct2023 13:38:34.924] [Thread-10/WARN] [NBTAPI/]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[25Oct2023 13:38:34.961] [Server thread/INFO] [Console/]: [CraftEnhance] CraftEnhance is managed and developed by DutchJelly.
[25Oct2023 13:38:34.961] [Server thread/INFO] [Console/]: [CraftEnhance] If you find a bug in the plugin, please report it to https://github.com/DutchJelly/CraftEnhance/issues.
[25Oct2023 13:38:34.961] [Server thread/INFO] [Console/]: [CraftEnhance] Running a version check to check that the server is compatible with game version 1.9, 1.10, 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, 1.20.
[25Oct2023 13:38:34.961] [Server thread/INFO] [Console/]: [CraftEnhance] The correct version is installed.
[25Oct2023 13:38:34.965] [Server thread/INFO] [PlaceholdersInCommands/]: Enabling PlaceholdersInCommands v1.0.0
[25Oct2023 13:38:34.966] [Server thread/INFO] [EliteArmor/]: Enabling EliteArmor v6.6.8
[25Oct2023 13:38:35.335] [Server thread/INFO] [AutoCommandsPlus/]: Enabling AutoCommandsPlus v1.2.0
[25Oct2023 13:38:35.339] [Server thread/INFO] [AutoCommandsPlus/]: Plugin has been enabled.
[25Oct2023 13:38:35.340] [Server thread/INFO] [SimpleScore/]: Enabling SimpleScore v3.12.2
[25Oct2023 13:38:36.035] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: SimpleScore [3.12.2]
[25Oct2023 13:38:36.046] [Server thread/INFO] [Skript/]: Enabling Skript v2.7.1
[25Oct2023 13:38:37.029] [ForkJoinPool.commonPool-worker-2/INFO] [Console/]: [Skript] You're currently running the latest stable version of Skript.
[25Oct2023 13:38:39.531] [Server thread/INFO] [Console/]: [Skript] Loaded 150510 aliases in 3284ms
[25Oct2023 13:38:40.010] [Server thread/INFO] [Console/]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[25Oct2023 13:38:40.014] [Server thread/INFO] [VaultChatFormatter/]: Enabling VaultChatFormatter v1.1-SNAPSHOT
[25Oct2023 13:38:40.015] [Server thread/INFO] [VaultChatFormatter/]: New Vault Chat implementation registered: LuckPerms
[25Oct2023 13:38:40.017] [Server thread/INFO] [HeadDatabase/]: Enabling HeadDatabase v4.18.2
[25Oct2023 13:38:40.277] [Server thread/INFO] [HeadDatabase/]: Using default "en_US.lang" created by Arcaniax
[25Oct2023 13:38:40.301] [Server thread/WARN] [HeadDatabase/]: Economy was not loaded, some features will be disabled!
[25Oct2023 13:38:40.302] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: hdb [4.18.2]
[25Oct2023 13:38:40.308] [Server thread/INFO] [CommandPanels/]: Enabling CommandPanels v3.19.1.3
[25Oct2023 13:38:40.308] [Server thread/INFO] [Minecraft/]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.3 Plugin Loading...
[25Oct2023 13:38:40.328] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: commandpanels [1.0.0]
[25Oct2023 13:38:40.349] [Server thread/INFO] [Minecraft/]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.3 Plugin Loaded!
[25Oct2023 13:38:40.349] [Server thread/INFO] [Multiverse-Core/]: Enabling Multiverse-Core v4.3.12
[25Oct2023 13:38:40.356] [Server thread/WARN] [Multiverse-Core/]: "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[25Oct2023 13:38:40.357] [Server thread/INFO] [Minecraft/]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[25Oct2023 13:38:40.472] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arclight_1_20_2530647/DIM-1
[25Oct2023 13:38:40.472] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[25Oct2023 13:38:40.472] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arclight_1_20_2530512
[25Oct2023 13:38:40.472] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[25Oct2023 13:38:40.472] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arclight_1_20_2530512/DIM-1
[25Oct2023 13:38:40.472] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[25Oct2023 13:38:40.560] [Server thread/ERROR] [net.minecraft.world.level.storage.LevelStorageSource/]: WorldGenSettings: Can't load registry with this ops
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: -------- World Settings For [arclight_1_19_3_2530666/DIM-1] --------
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:38:40.567] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:38:40.568] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:38:40.569] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:arclight_1_19_3_2530666/dim-1
[25Oct2023 13:38:41.999] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:42.003] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:42.004] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:42.070] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:42.570] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 9%
[25Oct2023 13:38:43.071] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 69%
[25Oct2023 13:38:43.303] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 2734 ms
[25Oct2023 13:38:43.451] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arclight_1_20_2530647/DIM1
[25Oct2023 13:38:43.451] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[25Oct2023 13:38:43.451] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arclight_1_20_2530512/DIM1
[25Oct2023 13:38:43.451] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[25Oct2023 13:38:43.521] [Server thread/ERROR] [net.minecraft.world.level.storage.LevelStorageSource/]: WorldGenSettings: Can't load registry with this ops
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: -------- World Settings For [arclight_1_19_3_2530666/DIM1] --------
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:38:43.528] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:38:43.530] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:arclight_1_19_3_2530666/dim1
[25Oct2023 13:38:46.170] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:46.170] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:46.171] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:46.171] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:46.171] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:46.172] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:46.531] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 26%
[25Oct2023 13:38:46.917] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 3387 ms
[25Oct2023 13:38:46.986] [Server thread/ERROR] [net.minecraft.world.level.storage.LevelStorageSource/]: WorldGenSettings: Can't load registry with this ops
[25Oct2023 13:38:46.990] [Server thread/INFO] [Minecraft/]: -------- World Settings For [Main/DIM-1] --------
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:38:46.991] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:38:46.993] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:main/dim-1
[25Oct2023 13:38:48.044] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:48.044] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:48.045] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:48.494] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 50%
[25Oct2023 13:38:48.750] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 1757 ms
[25Oct2023 13:38:48.821] [Server thread/ERROR] [net.minecraft.world.level.storage.LevelStorageSource/]: WorldGenSettings: Can't load registry with this ops
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: -------- World Settings For [arclight_1_20_2530647] --------
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:38:48.854] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:38:48.855] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:arclight_1_20_2530647
[25Oct2023 13:38:55.338] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.374] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.379] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.383] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.384] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.388] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.389] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.437] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.438] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.444] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.445] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.445] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.445] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.446] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:55.856] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 1%
[25Oct2023 13:38:56.380] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 12%
[25Oct2023 13:38:56.857] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 45%
[25Oct2023 13:38:57.356] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 8501 ms
[25Oct2023 13:38:57.466] [Server thread/ERROR] [net.minecraft.world.level.storage.LevelStorageSource/]: WorldGenSettings: Can't load registry with this ops
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: -------- World Settings For [arclight_1_19_3_2530666] --------
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:38:57.493] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:38:57.495] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:arclight_1_19_3_2530666
[25Oct2023 13:38:58.680] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:58.683] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:58.685] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:58.997] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:38:59.720] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:39:00.024] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:39:00.496] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 60%
[25Oct2023 13:39:00.667] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 3172 ms
[25Oct2023 13:39:00.757] [Server thread/ERROR] [net.minecraft.world.level.storage.LevelStorageSource/]: WorldGenSettings: Can't load registry with this ops
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: -------- World Settings For [Main] --------
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:39:00.782] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:39:00.783] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:39:00.783] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:39:00.783] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:39:00.783] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:39:00.783] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:39:00.783] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:39:00.784] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:main
[25Oct2023 13:39:01.662] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:39:01.665] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:39:01.786] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:39:02.508] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 30%
[25Oct2023 13:39:02.785] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 97%
[25Oct2023 13:39:02.797] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 2013 ms
[25Oct2023 13:39:02.858] [Server thread/ERROR] [net.minecraft.world.level.storage.LevelStorageSource/]: WorldGenSettings: Can't load registry with this ops
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: -------- World Settings For [Main/DIM1] --------
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: 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
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: View Distance: 10
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
[25Oct2023 13:39:02.861] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
[25Oct2023 13:39:02.863] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:main/dim1
[25Oct2023 13:39:03.344] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:39:03.364] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[25Oct2023 13:39:03.864] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 56%
[25Oct2023 13:39:04.124] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 1261 ms
[25Oct2023 13:39:04.134] [Server thread/INFO] [Minecraft/]: [Multiverse-Core] 10 - World(s) loaded.
[25Oct2023 13:39:04.152] [Server thread/WARN] [Minecraft/]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[25Oct2023 13:39:04.160] [Server thread/INFO] [Minecraft/]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[25Oct2023 13:39:04.167] [Server thread/INFO] [DiscordSRV/]: Enabling DiscordSRV v1.26.2
[25Oct2023 13:39:04.177] [Server thread/INFO] [EliteBosses/]: Enabling EliteBosses v1.5.5
[25Oct2023 13:39:04.249] [DiscordSRV - Initialization/ERROR] [DiscordSRV/]: No bot token has been set in the config; a bot token is required to connect to Discord.
[25Oct2023 13:39:04.419] [Server thread/INFO] [NBTAPI/]: [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[25Oct2023 13:39:04.419] [Server thread/INFO] [NBTAPI/]: [NBTAPI] NMS support 'MC1_19_R1' loaded!
[25Oct2023 13:39:04.420] [Server thread/INFO] [NBTAPI/]: [NBTAPI] Using the plugin 'EliteBosses' to create a bStats instance!
[25Oct2023 13:39:04.423] [Server thread/INFO] [Console/]: EliteBosses: Factions Support Success
[25Oct2023 13:39:04.424] [Server thread/INFO] [Console/]: EliteBosses: Factions Support Disabled
[25Oct2023 13:39:04.424] [Server thread/INFO] [Console/]: EliteBosses: Skyblock Support Failed
[25Oct2023 13:39:04.425] [Server thread/WARN] [EliteBosses/]: Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.3 which is not a depend or softdepend of this plugin.
[25Oct2023 13:39:04.425] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: elitebosses [1.0.0]
[25Oct2023 13:39:04.563] [Server thread/INFO] [SuperbVote/]: Enabling SuperbVote v0.5.5
[25Oct2023 13:39:04.595] [Server thread/INFO] [SuperbVote/]: Using clip's PlaceholderAPI to provide extra placeholders.
[25Oct2023 13:39:04.597] [Server thread/INFO] [DecentHolograms/]: Enabling DecentHolograms v2.8.3
[25Oct2023 13:39:04.636] [Server thread/INFO] [Minecraft/]: [DecentHolograms] Using ProtocolLib for packet listening.
[25Oct2023 13:39:04.674] [Server thread/INFO] [FastAsyncVoxelSniper/]: Enabling FastAsyncVoxelSniper v3.0.0-SNAPSHOT-2
[25Oct2023 13:39:04.701] [pool-14-thread-1/INFO] [DiscordSRV/]: DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[25Oct2023 13:39:04.937] [Server thread/WARN] [com.thevoxelbox.voxelsniper.brush.type.AbstractBrush/]: Invalid or missing 'Side' Enum property 'default-side' value for 'Sign Overwrite' brush! Setting up the default one...
[25Oct2023 13:39:05.516] [Server thread/WARN] [com.thevoxelbox.voxelsniper.brush.type.AbstractBrush/]: Invalid or missing 'Side' Enum property 'default-side' value for 'Sign Overwrite' brush! Setting up the default one...
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]: ====================================================
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  FastAsyncVoxelSniper works better if you use Paper 
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  as your server software. 
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:   
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  Paper offers significant performance improvements,
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  bug fixes, security enhancements and optional
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  features for server owners to enhance their server.
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:   
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  Paper includes Timings v2, which is significantly
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  better at diagnosing lag problems over v1.
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:   
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  All of your plugins should still work, and the
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  Paper community will gladly help you fix any issues.
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:   
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]:  Join the Paper Community @ https://papermc.io
[25Oct2023 13:39:05.928] [Server thread/INFO] [FastAsyncVoxelSniper/]: ====================================================
[25Oct2023 13:39:05.930] [Server thread/INFO] [EconomyShopGUI-Premium/]: Enabling EconomyShopGUI-Premium v5.2.3
[25Oct2023 13:39:06.175] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[25Oct2023 13:39:06.212] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [INFO]: Completed loading 18 section configs from /sections/
[25Oct2023 13:39:06.357] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [INFO]: Completed loading 18 shop configs from /shops/
[25Oct2023 13:39:06.357] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [INFO]: Updating Shop settings...
[25Oct2023 13:39:06.372] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.19.2...
[25Oct2023 13:39:06.377] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [WARN]: Failed to load default economy provider with reason 'No supported economy provider for Vault detected, please install a plugin such as Essentials', trying to automatically find supported economy provider
[25Oct2023 13:39:06.377] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [INFO]: Detected Vault, initializing...
[25Oct2023 13:39:06.377] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [ERROR]: ===================================================
[25Oct2023 13:39:06.377] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [ERROR]:  
[25Oct2023 13:39:06.377] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [ERROR]: Failed to automatically load an available economy provider, this plugin requires one, disabling...
[25Oct2023 13:39:06.377] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [ERROR]: See a list of available economy providers on our wiki here: https://wiki.gpplugins.com/economyshopgui/file-configuration/config.yml#economy-provider
[25Oct2023 13:39:06.377] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [ERROR]:  
[25Oct2023 13:39:06.377] [Server thread/INFO] [Console/]: [EconomyShopGUI-Premium] [ERROR]: ===================================================
[25Oct2023 13:39:06.377] [Server thread/INFO] [EconomyShopGUI-Premium/]: Disabling EconomyShopGUI-Premium v5.2.3
[25Oct2023 13:39:06.388] [Server thread/INFO] [Denizen/]: Enabling Denizen v1.2.6-SNAPSHOT (build 1782-REL)
[25Oct2023 13:39:06.429] [Server thread/INFO] [Console/]: +> [DenizenCore] Initializing Denizen Core v1.90.2-SNAPSHOT (Build 1294), impl for Spigot v1.2.6-SNAPSHOT (build 1782-REL) 
[25Oct2023 13:39:06.873] [Server thread/INFO] [Console/]: +> [Denizen] Running on java version: 17.0.9 
[25Oct2023 13:39:06.873] [Server thread/INFO] [Console/]: +> [Denizen] Running on fully supported Java 17. 
[25Oct2023 13:39:06.919] [Server thread/ERROR] [Minecraft/]: Error occurred while enabling Denizen v1.2.6-SNAPSHOT (build 1782-REL) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_19_R2/inventory/CraftInventoryCustom
    at com.denizenscript.denizen.nms.v1_19.Handler.<clinit>(Handler.java:232) ~[?:?] {}
    at java.lang.Class.forName0(Native Method) ~[?:?] {re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin}
    at java.lang.Class.forName(Class.java:467) ~[?:?] {re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin}
    at io.izzel.arclight.common.mod.util.remapper.generated.ArclightReflectionHandler_29.redirectClassForName(ArclightReflectionHandler.java:234) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {}
    at io.izzel.arclight.common.mod.util.remapper.generated.ArclightReflectionHandler_29.redirectClassForName(ArclightReflectionHandler.java:227) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {}
    at com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:55) ~[?:?] {}
    at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:156) ~[?:?] {}
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPluginMixin.java:264) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:JavaPluginMixin,pl:mixin:A,re:mixin,re:mixin,re:mixin}
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoaderMixin.java:342) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:JavaPluginLoaderMixin,pl:mixin:A}
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,re:mixin}
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServerMixin.java:525) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:CraftServerMixin,pl:mixin:A,re:mixin,re:mixin}
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServerMixin.java:439) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:CraftServerMixin,pl:mixin:A,re:mixin,re:mixin}
    at net.minecraft.server.MinecraftServer.handler$zba000$arclight$enablePlugins(MinecraftServerMixin.java:2194) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.m_129815_(MinecraftServerMixin.java:375) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.m_130006_(MinecraftServerMixin.java:300) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.dedicated.DedicatedServer.m_7038_(DedicatedServerMixin.java:165) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.dedicated.DedicatedServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServerMixin.java:2087) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServerMixin.java:244) ~[server-1.19.2-20220805.130853-srg.jar%23161!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.arclight.core.json:server.MinecraftServerMixin,pl:mixin:A,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}
    at java.lang.Thread.run(Thread.java:840) [?:?] {re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin}
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_19_R2.inventory.CraftInventoryCustom
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoaderMixin.java:147) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:PluginClassLoaderMixin,pl:mixin:A,re:mixin}
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoaderMixin.java:99) ~[arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3.jar%23159!/:arclight-1.19.2-1.0.3-SNAPSHOT-65c506b3] {re:mixin,re:classloading,pl:mixin:APP:mixins.arclight.bukkit.json:PluginClassLoaderMixin,pl:mixin:A,re:mixin}
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin,re:mixin}
    ... 19 more
[25Oct2023 13:39:06.922] [Server thread/INFO] [InteractiveChat/]: Enabling InteractiveChat v4.2.7.2
[25Oct2023 13:39:07.260] [Server thread/INFO] [Console/]: [InteractiveChat] Opened Sqlite database successfully
[25Oct2023 13:39:07.457] [Server thread/INFO] [Console/]: [InteractiveChat] InteractiveChat has hooked into CMI!
[25Oct2023 13:39:07.457] [Server thread/INFO] [Console/]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[25Oct2023 13:39:07.463] [Server thread/INFO] [DiscordSRV/]: API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[25Oct2023 13:39:07.463] [Server thread/INFO] [Console/]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[25Oct2023 13:39:07.511] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: interactivechat [4.2.7.2]
[25Oct2023 13:39:07.511] [Server thread/INFO] [Console/]: [InteractiveChat] InteractiveChat has been Enabled!
[25Oct2023 13:39:07.517] [Server thread/INFO] [InteractiveChatDiscordSRVAddon/]: Enabling InteractiveChatDiscordSrvAddon v4.2.7.2
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[25Oct2023 13:39:08.116] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[25Oct2023 13:39:08.216] [Server thread/INFO] [Console/]: [InteractiveChat] Loading languages...
[25Oct2023 13:39:08.232] [Server thread/INFO] [DiscordSRV/]: API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[25Oct2023 13:39:08.234] [Server thread/INFO] [DiscordSRV/]: API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[25Oct2023 13:39:08.255] [Server thread/INFO] [DiscordSRV/]: API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[25Oct2023 13:39:08.266] [Server thread/INFO] [DiscordSRV/]: API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[25Oct2023 13:39:08.299] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[25Oct2023 13:39:08.311] [Server thread/INFO] [EverNifeCore/]: Enabling EverNifeCore v2.0.3.2
[25Oct2023 13:39:08.311] [Server thread/INFO] [EverNifeCore/]: [Info] Starting EverNifeCore
[25Oct2023 13:39:08.313] [Server thread/INFO] [EverNifeCore/]: [Info] Server Minecraft Version v1_19_R1 !
[25Oct2023 13:39:08.313] [Server thread/INFO] [EverNifeCore/]: [Info] Loading up Configurations...
[25Oct2023 13:39:08.490] [Server thread/INFO] [EverNifeCore/]: Finished Loading PlayerData of 1 players! (0.004 seconds)
[25Oct2023 13:39:08.490] [Server thread/INFO] [EverNifeCore/]: [Info] Loading up Cooldown System!
[25Oct2023 13:39:08.490] [Server thread/INFO] [EverNifeCore/]: [Info] Registering Commands!
[25Oct2023 13:39:08.533] [Server thread/WARN] [EverNifeCore/]: Removing existent command [biomeinfo] from Plugin: FastAsyncWorldEdit!
[25Oct2023 13:39:08.540] [Server thread/INFO] [EverNifeCore/]: [Info] Hooking into Vault (Economy)
[25Oct2023 13:39:08.541] [Server thread/WARN] [EverNifeCore/]: [Warning] Vault seems to be present but there is no Economic plugin present!
[25Oct2023 13:39:08.541] [Server thread/WARN] [EverNifeCore/]: [Warning] You might want to take a look at: https://www.spigotmc.org/resources/finaleconomy.97740/
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]: java.lang.NullPointerException: Cannot invoke "org.bukkit.plugin.RegisteredServiceProvider.getProvider()" because "rsp" is null
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at br.com.finalcraft.evernifecore.integration.VaultIntegration.setupEconomy(VaultIntegration.java:29)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at br.com.finalcraft.evernifecore.integration.VaultIntegration.initialize(VaultIntegration.java:19)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at br.com.finalcraft.evernifecore.EverNifeCore.onEnable(EverNifeCore.java:94)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPluginMixin.java:264)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoaderMixin.java:342)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServerMixin.java:525)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServerMixin.java:439)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.handler$zba000$arclight$enablePlugins(MinecraftServerMixin.java:2194)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.m_129815_(MinecraftServerMixin.java:375)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.m_130006_(MinecraftServerMixin.java:300)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/net.minecraft.server.dedicated.DedicatedServer.m_7038_(DedicatedServerMixin.java:165)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.m_130011_(MinecraftServerMixin.java:2087)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.m_206580_(MinecraftServerMixin.java:244)
[25Oct2023 13:39:08.541] [Server thread/ERROR] [STDERR/]:     at java.base/java.lang.Thread.run(Thread.java:840)
[25Oct2023 13:39:08.541] [Server thread/INFO] [EverNifeCore/]: [Info] Registering Listeners
[25Oct2023 13:39:08.542] [Server thread/INFO] [EverNifeCore/]: [ECListener] Registering Listener [br.com.finalcraft.evernifecore.listeners.PlayerLoginListener]
[25Oct2023 13:39:08.544] [Server thread/INFO] [EverNifeCore/]: [ECListener] Registering Listener [br.com.finalcraft.evernifecore.listeners.PlayerInteractListener]
[25Oct2023 13:39:08.545] [Server thread/INFO] [EverNifeCore/]: [ECListener] Registering Listener [br.com.finalcraft.evernifecore.listeners.PluginListener]
[25Oct2023 13:39:08.555] [Server thread/INFO] [EverNifeCore/]: [ECListener] Registering Listener [br.com.finalcraft.evernifecore.listeners.PlayerLoginListener$VanillaLogin]
[25Oct2023 13:39:08.574] [[SaveConfigThread]/INFO] [EverNifeCore/]: Starting Thread: [SaveConfigThread]
[25Oct2023 13:39:08.574] [Server thread/INFO] [EverNifeCore/]: [Info] EverNifeCore successfully started!
[25Oct2023 13:39:08.578] [Server thread/INFO] [CMI/]: Enabling CMI v9.6.7.1
[25Oct2023 13:39:08.581] [pool-28-thread-1/INFO] [EverNifeCore/]: [ECListener] Registering Listener [br.com.finalcraft.evernifecore.autoupdater.SpigotUpdateChecker$1]
[25Oct2023 13:39:08.582] [pool-28-thread-1/INFO] [EverNifeCore/]: 

[UpdateChecker] Update Check Completed! Found a new update for EverNifeCore! You can download it here [https://www.spigotmc.org/resources/97739/] !

[25Oct2023 13:39:08.602] [pool-28-thread-2/INFO] [EverNifeCore/]: [ECListener] Registering Listener [br.com.finalcraft.evernifecore.autoupdater.SpigotUpdateChecker$1]
[25Oct2023 13:39:08.602] [pool-28-thread-2/INFO] [EverNifeCore/]: 

[UpdateChecker] Update Check Completed! Found a new update for EverNifeCore! You can download it here [https://www.spigotmc.org/resources/97739/] !

[25Oct2023 13:39:08.816] [Server thread/INFO] [Console/]:    ______  ____    ____  _____  
[25Oct2023 13:39:08.816] [Server thread/INFO] [Console/]:  .' ___  ||_   \  /   _||_   _| 
[25Oct2023 13:39:08.816] [Server thread/INFO] [Console/]: / .'   \_|  |   \/   |    | |   
[25Oct2023 13:39:08.816] [Server thread/INFO] [Console/]: | |         | |\  /| |    | |   
[25Oct2023 13:39:08.816] [Server thread/INFO] [Console/]: \ `.___.'\ _| |_\/_| |_  _| |_  
[25Oct2023 13:39:08.816] [Server thread/INFO] [Console/]:  `.____ .'|_____||_____||_____| 
[25Oct2023 13:39:08.816] [Server thread/INFO] [Console/]: _______________________________________________________
[25Oct2023 13:39:08.874] [Server thread/INFO] [net.minecraftforge.common.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@78555112
[25Oct2023 13:39:08.908] [Server thread/INFO] [Console/]:   Vault found. (Loaded: true)
[25Oct2023 13:39:08.908] [Server thread/INFO] [Console/]:   Citizens found. (Loaded: false)
[25Oct2023 13:39:08.948] [Server thread/INFO] [Console/]:   59 Enabled and 0 Disabled modules
[25Oct2023 13:39:08.952] [Server thread/INFO] [Console/]:   Votifier found. (Loaded: true)
[25Oct2023 13:39:09.042] [Server thread/INFO] [Console/]:   ProtocolLib found. (Loaded: true)
[25Oct2023 13:39:09.045] [Server thread/INFO] [Console/]:   Permission plugin: LuckPerms5.4.40
[25Oct2023 13:39:09.069] [Server thread/INFO] [Console/]:   Initialized Cipher256 AES
[25Oct2023 13:39:09.298] [Server thread/INFO] [Console/]:   Loaded (61) regular alias into memory. Took 31ms
[25Oct2023 13:39:09.302] [Server thread/INFO] [Console/]:   Loaded (1) custom text's into memory. Took 1ms
[25Oct2023 13:39:09.330] [Server thread/INFO] [Console/]:   (RandomTeleportation) Can't find world with (Halloween Skyblock Hub v2) name
[25Oct2023 13:39:09.330] [Server thread/INFO] [Console/]:   (RandomTeleportation) Can't find world with (Halloween Skyblock Hub v2/DIM1) name
[25Oct2023 13:39:09.330] [Server thread/INFO] [Console/]:   (RandomTeleportation) Can't find world with (Halloween Skyblock Hub v2/DIM-1) name
[25Oct2023 13:39:09.344] [Server thread/INFO] [Console/]:   3.36.0 data base type detected
[25Oct2023 13:39:09.420] [Server thread/INFO] [Console/]:   Started SqLite data base. Took 82ms
[25Oct2023 13:39:09.431] [Server thread/INFO] [Console/]: [CMI] Vault was found but economy engine is missing. Use one from list provided in https://dev.bukkit.org/bukkit-plugins/vault/
[25Oct2023 13:39:09.431] [Server thread/INFO] [Console/]: [CMI] Alternatively you can enable CMI economy in config.yml file
[25Oct2023 13:39:09.431] [Server thread/INFO] [Console/]:   Vault was found but not economy plugin, you will have limited economy support
[25Oct2023 13:39:09.516] [Server thread/INFO] [Console/]:   Loaded (5) warning categories into memory. Took 1ms
[25Oct2023 13:39:09.516] [Server thread/INFO] [Console/]:   Loaded (3) warning commands into memory. Took 0ms
[25Oct2023 13:39:09.554] [Server thread/INFO] [Console/]:   Loaded (142) custom mob heads into memory. Took 9ms
[25Oct2023 13:39:09.560] [Server thread/INFO] [Console/]:   Loaded (0) cooldowns into memory. Took 20ms
[25Oct2023 13:39:09.627] [Server thread/INFO] [Console/]:   Initializing BungeeCord
[25Oct2023 13:39:09.632] [Server thread/INFO] [Console/]:   Loaded (5) kits into memory. Took 3ms
[25Oct2023 13:39:09.639] [Server thread/INFO] [Console/]:   Loaded (7) ranks into memory. Took 7ms
[25Oct2023 13:39:09.645] [Server thread/INFO] [Console/]:   Loaded (1) saved items into memory. Took 5ms
[25Oct2023 13:39:09.646] [Server thread/INFO] [Console/]:   Loaded (8) playtime rewards into memory. Took 1ms
[25Oct2023 13:39:09.658] [Server thread/INFO] [Console/]:   Loaded (1) player data into memory. Took 11ms
[25Oct2023 13:39:09.658] [Server thread/INFO] [Console/]:   Loaded (0) playtime records into memory. Took 0ms
[25Oct2023 13:39:09.658] [Server thread/INFO] [Console/]:   Loaded (0) playtime reward records into memory. Took 0ms
[25Oct2023 13:39:09.659] [Server thread/INFO] [Console/]:   Loaded (0) custom alias into memory. Took 0ms
[25Oct2023 13:39:09.733] [Server thread/INFO] [Console/]:   Registered events. Took 69ms
[25Oct2023 13:39:09.738] [Server thread/INFO] [Console/]:   Loaded (0) event action commands into memory. Took 2ms
[25Oct2023 13:39:09.817] [Server thread/INFO] [Console/]:   Loaded (EN) language file into memory. Took 79ms
[25Oct2023 13:39:09.931] [Server thread/WARN] [CMILib/]: Loaded class com.Zrips.CMI.Containers.Snd from CMI v9.6.7.1 which is not a depend or softdepend of this plugin.
[25Oct2023 13:39:09.932] [Server thread/INFO] [Console/]:   Loaded (245) worth values into memory. Took 115ms
[25Oct2023 13:39:09.947] [Server thread/INFO] [Console/]:   VaultPermissions found. (Loaded: true)
[25Oct2023 13:39:09.948] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: cmi [9.6.7.1]
[25Oct2023 13:39:09.948] [Server thread/INFO] [Console/]:   PlaceholderAPI hooked.
[25Oct2023 13:39:09.948] [Server thread/INFO] [Console/]:   PlaceholderAPI found. (Loaded: true)
[25Oct2023 13:39:09.948] [Server thread/INFO] [Console/]:   Starting world timer.
[25Oct2023 13:39:09.948] [Server thread/INFO] [Console/]:   Initializing world manager.
[25Oct2023 13:39:09.957] [Server thread/INFO] [Console/]:   Loaded (4) schedules into memory. Took 4ms
[25Oct2023 13:39:09.960] [Server thread/INFO] [Console/]:   Loaded GeoIP
[25Oct2023 13:39:09.960] [Server thread/INFO] [Console/]:   Loaded (0) skin cache entries into memory. Took 0ms
[25Oct2023 13:39:09.984] [Server thread/INFO] [Console/]:   Loaded (7) custom recipes into memory. Took 21ms
[25Oct2023 13:39:09.985] [Server thread/INFO] [Console/]:   Loaded (0) ArmorStand templates into memory. Took 1ms
[25Oct2023 13:39:09.985] [Server thread/INFO] [Console/]:   Version 9.6.7.1 has been enabled
[25Oct2023 13:39:09.985] [Server thread/INFO] [Console/]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[25Oct2023 13:39:09.992] [Server thread/INFO] [Citizens/]: Enabling Citizens v2.0.33-SNAPSHOT (build 3229)
[25Oct2023 13:39:10.218] [Server thread/INFO] [Citizens/]: Loading external libraries
[25Oct2023 13:39:10.486] [Server thread/ERROR] [Minecraft/]: [Citizens] v2.0.33-SNAPSHOT (build 3229) is not compatible with Minecraft vv1_19_R1 - try upgrading Minecraft or Citizens. Disabling...
[25Oct2023 13:39:10.487] [Server thread/INFO] [Citizens/]: Disabling Citizens v2.0.33-SNAPSHOT (build 3229)
[25Oct2023 13:39:10.492] [Server thread/INFO] [Quests/]: Enabling Quests v5.0.0-rc.1-b430
[25Oct2023 13:39:10.519] [Server thread/WARN] [Minecraft/]: [LocaleLib] assets/minecraft/lang/ could not be found!
[25Oct2023 13:39:10.519] [Server thread/WARN] [Minecraft/]: [LocaleLib] Locale asset could not be loaded!
[25Oct2023 13:39:10.577] [Server thread/INFO] [Quests/]: Loaded language en-US. Translations via Crowdin
[25Oct2023 13:39:10.578] [Server thread/WARN] [Quests/]: Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[25Oct2023 13:39:10.581] [Server thread/WARN] [Quests/]: Economy provider not found.
[25Oct2023 13:39:10.584] [Server thread/INFO] [Quests/]: Loading storage implementation: YAML
[25Oct2023 13:39:10.599] [Server thread/WARN] [Quests/]: Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[25Oct2023 13:39:10.705] [Server thread/INFO] [Minecraft/]: Server permissions file permissions.yml is empty, ignoring it
[25Oct2023 13:39:10.780] [Server thread/INFO] [PlaceholderAPI/]: Placeholder expansion registration initializing...
[25Oct2023 13:39:10.782] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld
[25Oct2023 13:39:11.279] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 100%
[25Oct2023 13:39:11.283] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 100%
[25Oct2023 13:39:11.284] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 501 ms
[25Oct2023 13:39:11.284] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Done (39.495s)! For help, type "help"
[25Oct2023 13:39:11.295] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler
[25Oct2023 13:39:11.295] [Server thread/INFO] [Arclight/]: Forwarding forge permission[forge:default_handler] to bukkit
[25Oct2023 13:39:11.375] [Server thread/INFO] [Console/]: [Skript] Loading variables...
[25Oct2023 13:39:11.383] [Server thread/INFO] [Console/]: [Skript] Loaded 0 variables in 0.0 seconds
[25Oct2023 13:39:11.389] [Server thread/INFO] [Console/]: [Skript] All scripts loaded without errors.
[25Oct2023 13:39:11.389] [Server thread/INFO] [Console/]: [Skript]     No scripts were found, maybe you should write some ;)
[25Oct2023 13:39:11.389] [Server thread/INFO] [Console/]: [Skript] Finished loading.
[25Oct2023 13:39:11.400] [Craft Scheduler Thread - 5/WARN] [SimpleScore/]: New version (v3.12.3) available, download at:
[25Oct2023 13:39:11.400] [Craft Scheduler Thread - 5/WARN] [SimpleScore/]: https://www.spigotmc.org/resources/23243/
[25Oct2023 13:39:11.735] [Craft Scheduler Thread - 4/INFO] [Console/]: [CraftEnhance] There's a new version (2.4.4) of the plugin available on https://www.spigotmc.org/resources/1-9-1-19-custom-recipes-and-crafting-craftenhance.65058/ or https://dev.bukkit.org/projects/craftenhance/files.
[25Oct2023 13:39:11.735] [Craft Scheduler Thread - 3/INFO] [Console/]: [NPCIntroductions] You are using the latest version.
[25Oct2023 13:39:11.736] [Server thread/INFO] [DiscordSRV/]: Disabling DiscordSRV v1.26.2
[25Oct2023 13:39:11.749] [Craft Scheduler Thread - 7/INFO] [Console/]: [InteractiveChat] Loading languages...
[25Oct2023 13:39:11.754] [Server thread/WARN] [PlaceholderAPI/]: Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.40 which is not a depend or softdepend of this plugin.
[25Oct2023 13:39:11.758] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: luckperms [5.4-R2]
[25Oct2023 13:39:11.759] [Server thread/WARN] [PlaceholderAPI/]: Loaded class io.minimum.minecraft.superbvote.SuperbVote from SuperbVote v0.5.5 which is not a depend or softdepend of this plugin.
[25Oct2023 13:39:11.759] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered expansion: superbvote [1.3.1]
[25Oct2023 13:39:11.760] [Server thread/INFO] [Console/]: 2 placeholder hook(s) registered!
[25Oct2023 13:39:11.762] [Server thread/INFO] [Console/]: [CMI] DiscordSRV found. (Loaded: false)
[25Oct2023 13:39:11.763] [Server thread/INFO] [PlaceholderAPI/]: An update for PlaceholderAPI (v2.11.4) is available at:
[25Oct2023 13:39:11.763] [Server thread/INFO] [PlaceholderAPI/]: https://www.spigotmc.org/resources/placeholderapi.6245/
[25Oct2023 13:39:11.765] [Craft Scheduler Thread - 1/INFO] [Quests/]: Update to 5.0.0-rc.1: https://github.com/PikaMug/Quests
[25Oct2023 13:39:11.822] [Craft Scheduler Thread - 3/INFO] [com.thevoxelbox.voxelsniper.VoxelSniperPlugin/]: You are using a snapshot release or a custom version. This is not a stable release found on https://dev.bukkit.org/projects/favs/.
[25Oct2023 13:39:11.823] [Craft Scheduler Thread - 6/INFO] [Console/]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[25Oct2023 13:39:11.824] [Craft Scheduler Thread - 8/INFO] [Vault/]: Checking for Updates ... 
[25Oct2023 13:39:11.829] [Craft Scheduler Thread - 8/INFO] [Vault/]: No new version available
[25Oct2023 13:39:12.262] [Server thread/WARN] [Quests/]: Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[25Oct2023 13:39:12.268] [Server thread/WARN] [Quests/]: Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[25Oct2023 13:39:12.270] [Server thread/WARN] [Quests/]: Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[25Oct2023 13:39:12.270] [Server thread/WARN] [Quests/]: Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[25Oct2023 13:39:12.271] [Server thread/INFO] [Quests/]: Loaded 4 Quest(s), 7 Action(s), 1 Condition(s) and 811 Phrase(s)
[25Oct2023 13:39:12.271] [Server thread/WARN] [Quests/]: Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[25Oct2023 13:39:12.466] [Server thread/INFO] [NBTAPI/]: [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[25Oct2023 13:39:12.466] [Server thread/INFO] [NBTAPI/]: [NBTAPI] NMS support 'MC1_19_R1' loaded!
[25Oct2023 13:39:12.466] [Server thread/INFO] [NBTAPI/]: [NBTAPI] Found Gson: class com.google.gson.Gson
[25Oct2023 13:39:12.469] [Server thread/INFO] [Console/]: EliteArmor: Loaded og-phantom.yml successfully!
[25Oct2023 13:39:12.469] [Server thread/INFO] [Console/]: EliteArmor: Loaded dragon.yml successfully!
[25Oct2023 13:39:12.470] [Server thread/INFO] [Console/]: EliteArmor: Loaded engineer.yml successfully!
[25Oct2023 13:39:12.470] [Server thread/INFO] [Console/]: EliteArmor: Loaded yeti.yml successfully!
[25Oct2023 13:39:12.471] [Server thread/INFO] [Console/]: EliteArmor: Loaded rift.yml successfully!
[25Oct2023 13:39:12.471] [Server thread/INFO] [Console/]: EliteArmor: Loaded phantom.yml successfully!
[25Oct2023 13:39:12.471] [Server thread/INFO] [Console/]: EliteArmor: Loaded ranger.yml successfully!
[25Oct2023 13:39:12.472] [Server thread/INFO] [Console/]: EliteArmor: Loaded yijki.yml successfully!
[25Oct2023 13:39:12.472] [Server thread/INFO] [Console/]: EliteArmor: Loaded ancient.yml successfully!
[25Oct2023 13:39:12.472] [Server thread/INFO] [Console/]: EliteArmor: Loaded koth.yml successfully!
[25Oct2023 13:39:12.473] [Server thread/INFO] [Console/]: EliteArmor: Loaded traveller.yml successfully!
[25Oct2023 13:39:12.473] [Server thread/INFO] [Console/]: EliteArmor: Loaded supreme.yml successfully!
[25Oct2023 13:39:12.473] [Server thread/INFO] [Console/]: EliteArmor: Loaded spectrum.yml successfully!
[25Oct2023 13:39:12.551] [Craft Scheduler Thread - 2/INFO] [HeadDatabase/]: Successfully loaded 57109 heads!
[25Oct2023 13:39:12.669] [Craft Scheduler Thread - 10/INFO] [Console/]: [ICDiscordSrvAddon] Checking for server resource pack...
[25Oct2023 13:39:12.727] [Craft Scheduler Thread - 10/INFO] [Console/]: [ICDiscordSrvAddon] No server resource pack found
[25Oct2023 13:39:12.728] [Craft Scheduler Thread - 10/INFO] [Console/]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[25Oct2023 13:39:12.733] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_rift.yml successfully!
[25Oct2023 13:39:12.733] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_yeti.yml successfully!
[25Oct2023 13:39:12.733] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_ranger.yml successfully!
[25Oct2023 13:39:12.734] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_yijki.yml successfully!
[25Oct2023 13:39:12.734] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_rift.yml successfully!
[25Oct2023 13:39:12.734] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_phantom.yml successfully!
[25Oct2023 13:39:12.734] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_yeti.yml successfully!
[25Oct2023 13:39:12.735] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_engineer.yml successfully!
[25Oct2023 13:39:12.735] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_rift.yml successfully!
[25Oct2023 13:39:12.735] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_phantom.yml successfully!
[25Oct2023 13:39:12.736] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_dragon.yml successfully!
[25Oct2023 13:39:12.736] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_phantom.yml successfully!
[25Oct2023 13:39:12.736] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_yeti.yml successfully!
[25Oct2023 13:39:12.736] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_dragon.yml successfully!
[25Oct2023 13:39:12.737] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_traveler.yml successfully!
[25Oct2023 13:39:12.737] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_ranger.yml successfully!
[25Oct2023 13:39:12.737] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_engineer.yml successfully!
[25Oct2023 13:39:12.738] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_yeti.yml successfully!
[25Oct2023 13:39:12.738] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_yeti.yml successfully!
[25Oct2023 13:39:12.738] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_traveler.yml successfully!
[25Oct2023 13:39:12.739] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_engineer.yml successfully!
[25Oct2023 13:39:12.739] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_yeti.yml successfully!
[25Oct2023 13:39:12.740] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_ranger.yml successfully!
[25Oct2023 13:39:12.740] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_spectrum.yml successfully!
[25Oct2023 13:39:12.740] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_engineer.yml successfully!
[25Oct2023 13:39:12.740] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_yijki.yml successfully!
[25Oct2023 13:39:12.741] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_spectrum.yml successfully!
[25Oct2023 13:39:12.741] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_engineer.yml successfully!
[25Oct2023 13:39:12.741] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_ranger.yml successfully!
[25Oct2023 13:39:12.742] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_phantom.yml successfully!
[25Oct2023 13:39:12.742] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_traveler.yml successfully!
[25Oct2023 13:39:12.742] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_supreme.yml successfully!
[25Oct2023 13:39:12.743] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_dragon.yml successfully!
[25Oct2023 13:39:12.743] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_engineer.yml successfully!
[25Oct2023 13:39:12.743] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_yijki.yml successfully!
[25Oct2023 13:39:12.744] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_phantom.yml successfully!
[25Oct2023 13:39:12.744] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon.yml successfully!
[25Oct2023 13:39:12.744] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_spectrum.yml successfully!
[25Oct2023 13:39:12.745] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_dragon.yml successfully!
[25Oct2023 13:39:12.745] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_phantom.yml successfully!
[25Oct2023 13:39:12.745] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_yijki.yml successfully!
[25Oct2023 13:39:12.745] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_yeti.yml successfully!
[25Oct2023 13:39:12.745] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_supreme.yml successfully!
[25Oct2023 13:39:12.746] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_rift.yml successfully!
[25Oct2023 13:39:12.746] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_yijki.yml successfully!
[25Oct2023 13:39:12.746] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer.yml successfully!
[25Oct2023 13:39:12.747] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_supreme.yml successfully!
[25Oct2023 13:39:12.747] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_yijki.yml successfully!
[25Oct2023 13:39:12.748] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_dragon.yml successfully!
[25Oct2023 13:39:12.748] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_rift.yml successfully!
[25Oct2023 13:39:12.748] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_dragon.yml successfully!
[25Oct2023 13:39:12.749] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_ranger.yml successfully!
[25Oct2023 13:39:12.749] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_rift.yml successfully!
[25Oct2023 13:39:12.749] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_spectrum.yml successfully!
[25Oct2023 13:39:12.750] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_engineer.yml successfully!
[25Oct2023 13:39:12.750] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_ranger.yml successfully!
[25Oct2023 13:39:12.750] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti.yml successfully!
[25Oct2023 13:39:12.751] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_yijki.yml successfully!
[25Oct2023 13:39:12.751] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_supreme.yml successfully!
[25Oct2023 13:39:12.751] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_traveler.yml successfully!
[25Oct2023 13:39:12.752] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_dragon.yml successfully!
[25Oct2023 13:39:12.752] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_dragon.yml successfully!
[25Oct2023 13:39:12.752] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_supreme.yml successfully!
[25Oct2023 13:39:12.753] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler.yml successfully!
[25Oct2023 13:39:12.753] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_yijki.yml successfully!
[25Oct2023 13:39:12.753] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_rift.yml successfully!
[25Oct2023 13:39:12.753] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_rift.yml successfully!
[25Oct2023 13:39:12.754] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_ranger.yml successfully!
[25Oct2023 13:39:12.754] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift.yml successfully!
[25Oct2023 13:39:12.754] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom.yml successfully!
[25Oct2023 13:39:12.754] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_koth.yml successfully!
[25Oct2023 13:39:12.754] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_koth.yml successfully!
[25Oct2023 13:39:12.755] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_spectrum.yml successfully!
[25Oct2023 13:39:12.755] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_yijki.yml successfully!
[25Oct2023 13:39:12.755] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger.yml successfully!
[25Oct2023 13:39:12.756] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_engineer.yml successfully!
[25Oct2023 13:39:12.756] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_ranger.yml successfully!
[25Oct2023 13:39:12.756] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki.yml successfully!
[25Oct2023 13:39:12.757] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_koth.yml successfully!
[25Oct2023 13:39:12.757] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_traveler.yml successfully!
[25Oct2023 13:39:12.757] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_engineer.yml successfully!
[25Oct2023 13:39:12.758] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_yeti.yml successfully!
[25Oct2023 13:39:12.758] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_yeti.yml successfully!
[25Oct2023 13:39:12.758] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_dragon.yml successfully!
[25Oct2023 13:39:12.759] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth.yml successfully!
[25Oct2023 13:39:12.759] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_phantom.yml successfully!
[25Oct2023 13:39:12.759] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_phantom.yml successfully!
[25Oct2023 13:39:12.759] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_traveler.yml successfully!
[25Oct2023 13:39:12.759] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_supreme.yml successfully!
[25Oct2023 13:39:12.760] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_yeti.yml successfully!
[25Oct2023 13:39:12.760] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_koth.yml successfully!
[25Oct2023 13:39:12.760] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_rift.yml successfully!
[25Oct2023 13:39:12.760] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_yeti.yml successfully!
[25Oct2023 13:39:12.761] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_traveler.yml successfully!
[25Oct2023 13:39:12.761] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_supreme.yml successfully!
[25Oct2023 13:39:12.761] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_phantom.yml successfully!
[25Oct2023 13:39:12.762] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_koth.yml successfully!
[25Oct2023 13:39:12.762] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_koth.yml successfully!
[25Oct2023 13:39:12.762] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_phantom.yml successfully!
[25Oct2023 13:39:12.762] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_spectrum.yml successfully!
[25Oct2023 13:39:12.763] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_spectrum.yml successfully!
[25Oct2023 13:39:12.763] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_koth.yml successfully!
[25Oct2023 13:39:12.763] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_spectrum.yml successfully!
[25Oct2023 13:39:12.764] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_dragon.yml successfully!
[25Oct2023 13:39:12.764] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_engineer.yml successfully!
[25Oct2023 13:39:12.764] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_spectrum.yml successfully!
[25Oct2023 13:39:12.764] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: traveler_traveler.yml successfully!
[25Oct2023 13:39:12.764] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_koth.yml successfully!
[25Oct2023 13:39:12.764] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_supreme.yml successfully!
[25Oct2023 13:39:12.765] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_traveler.yml successfully!
[25Oct2023 13:39:12.765] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_engineer.yml successfully!
[25Oct2023 13:39:12.765] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: ranger_spectrum.yml successfully!
[25Oct2023 13:39:12.765] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_rift.yml successfully!
[25Oct2023 13:39:12.765] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_supreme.yml successfully!
[25Oct2023 13:39:12.766] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_traveler.yml successfully!
[25Oct2023 13:39:12.766] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_ranger.yml successfully!
[25Oct2023 13:39:12.766] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: dragon_rift.yml successfully!
[25Oct2023 13:39:12.766] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_dragon.yml successfully!
[25Oct2023 13:39:12.766] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme.yml successfully!
[25Oct2023 13:39:12.767] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_spectrum.yml successfully!
[25Oct2023 13:39:12.767] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_supreme.yml successfully!
[25Oct2023 13:39:12.767] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_yijki.yml successfully!
[25Oct2023 13:39:12.822] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: supreme_ranger.yml successfully!
[25Oct2023 13:39:12.822] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum_yijki.yml successfully!
[25Oct2023 13:39:12.823] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yeti_supreme.yml successfully!
[25Oct2023 13:39:12.823] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: yijki_traveler.yml successfully!
[25Oct2023 13:39:12.823] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_koth.yml successfully!
[25Oct2023 13:39:12.823] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: rift_phantom.yml successfully!
[25Oct2023 13:39:12.824] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: phantom_koth.yml successfully!
[25Oct2023 13:39:12.824] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: engineer_koth.yml successfully!
[25Oct2023 13:39:12.824] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: koth_ranger.yml successfully!
[25Oct2023 13:39:12.824] [Server thread/INFO] [Console/]: EliteArmor: Loaded Modifiers: spectrum.yml successfully!
[25Oct2023 13:39:12.842] [Craft Scheduler Thread - 2/INFO] [HeadDatabase/]: Successfully loaded 18 featured tags!
[25Oct2023 13:39:13.153] [Server thread/INFO] [NBTAPI/]: [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[25Oct2023 13:39:13.153] [Server thread/INFO] [NBTAPI/]: [NBTAPI] NMS support 'MC1_19_R1' loaded!
[25Oct2023 13:39:13.155] [Server thread/INFO] [NBTAPI/]: [NBTAPI] Found Gson: class com.google.gson.Gson
[25Oct2023 13:39:13.259] [Server thread/INFO] [Console/]: EliteEnchantments: Factions Support Failed
[25Oct2023 13:39:13.259] [Server thread/INFO] [Console/]: EliteEnchantments: Skyblock Support Failed
[25Oct2023 13:39:13.261] [Server thread/WARN] [EliteEnchantments/]: Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[25Oct2023 13:39:13.268] [Server thread/INFO] [Console/]: EliteBosses: Loaded king-slime.yml successfully!
[25Oct2023 13:39:13.269] [Server thread/INFO] [Console/]: EliteBosses: Loaded brood-mother.yml successfully!
[25Oct2023 13:39:13.269] [Server thread/INFO] [Console/]: EliteBosses: Loaded treasure-goblin.yml successfully!
[25Oct2023 13:39:13.270] [Server thread/INFO] [Console/]: EliteBosses: Loaded yijki.yml successfully!
[25Oct2023 13:39:13.270] [Server thread/INFO] [Console/]: EliteBosses: Loaded Lichlord.yml successfully!
[25Oct2023 13:39:13.271] [Server thread/INFO] [Console/]: EliteBosses: Loaded undead-assassin.yml successfully!
[25Oct2023 13:39:13.271] [Server thread/INFO] [Console/]: EliteBosses: Loaded plague-bloater.yml successfully!
[25Oct2023 13:39:13.327] [Craft Scheduler Thread - 0/INFO] [Console/]: [InteractiveChat] Loaded all 1 languages!
[25Oct2023 13:39:13.390] [Craft Scheduler Thread - 10/INFO] [Console/]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[25Oct2023 13:39:13.390] [Craft Scheduler Thread - 10/INFO] [Console/]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[25Oct2023 13:39:13.390] [Craft Scheduler Thread - 10/INFO] [Console/]: [ICDiscordSrvAddon] Loading "Default" resources...
[25Oct2023 13:39:14.245] [Craft Scheduler Thread - 16/INFO] [Console/]: [InteractiveChat] Loaded all 1 languages!
[25Oct2023 13:39:17.328] [Server thread/INFO] [Console/]: [ICDiscordSrvAddon] Loaded all resources!