Paste #117962: Edit of paste 117959: Denizen Crash when loading an NPC inside a Chunk

Date: 2023/11/25 12:59:20 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste Edit Of Paste 117959 View Edit Report
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


[03:51:26] [main/INFO] [STDOUT/]: Update in check...
[03:51:26] [main/INFO] [STDOUT/]: If you don't want to enable update check, set check_update in mohist-config/mohist.yml to false
[03:51:27] [main/INFO] [STDOUT/]: No update found, latest version: (1.16.5-1189) current version: (1.16.5-1189)
[03:51:27] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.mohistVersion, 1189, --fml.forgeVersion, 36.2.39, --fml.mcpVersion, 20210115.111550, --fml.mcVersion, 1.16.5, --fml.forgeGroup, com.mohistmc, nogui]
[03:51:27] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher mohist-8.1.3 starting: java version 17.0.7 by Oracle Corporation
[03:51:27] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust
[03:51:27] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/D:/Minecraft%20Server/Event%201.16.5/Event%201.16.5/Server%202/libraries/org/spongepowered/mixin/0.8.4/mixin-0.8.4.jar Service=ModLauncher Env=SERVER
[03:51:28] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [mcinterface1165.mixin.MixinConnector]
[03:51:28] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmlserver' with arguments [--gameDir, ., nogui]
[03:51:28] [main/WARN] [mixin/]: Reference map 'hackforge.refmap.json' for creategears.mixins.json could not be read. If this is a development environment you can ignore this message
[03:51:28] [main/WARN] [mixin/]: Reference map 'zombieawareness.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message
[03:51:28] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/entity/player/AbstractClientPlayerEntity for invalid dist DEDICATED_SERVER
[03:51:28] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/entity/player/AbstractClientPlayerEntity (java.lang.RuntimeException: Attempted to load class net/minecraft/client/entity/player/AbstractClientPlayerEntity for invalid dist DEDICATED_SERVER)
[03:51:28] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.entity.player.AbstractClientPlayerEntity was not found moreplayermodels.mixins.json:AbstractClientPlayerEntityMixin
[03:51:28] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/ActiveRenderInfo for invalid dist DEDICATED_SERVER
[03:51:28] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/ActiveRenderInfo (java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/ActiveRenderInfo for invalid dist DEDICATED_SERVER)
[03:51:28] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.ActiveRenderInfo was not found moreplayermodels.mixins.json:ActiveRenderInfoMixin
[03:51:28] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/entity/layers/BipedArmorLayer for invalid dist DEDICATED_SERVER
[03:51:28] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/entity/layers/BipedArmorLayer (java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/entity/layers/BipedArmorLayer for invalid dist DEDICATED_SERVER)
[03:51:28] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.entity.layers.BipedArmorLayer was not found moreplayermodels.mixins.json:ArmorLayerMixin
[03:51:28] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/entity/model/BipedModel (java.lang.ClassNotFoundException: null)
[03:51:28] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.entity.model.BipedModel was not found moreplayermodels.mixins.json:BipedBodyMixin
[03:51:28] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/entity/LivingRenderer for invalid dist DEDICATED_SERVER
[03:51:28] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/entity/LivingRenderer (java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/entity/LivingRenderer for invalid dist DEDICATED_SERVER)
[03:51:28] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.entity.LivingRenderer was not found moreplayermodels.mixins.json:LivingRendererMixin
[03:51:28] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/model/ModelRenderer (java.lang.ClassNotFoundException: null)
[03:51:28] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.model.ModelRenderer was not found moreplayermodels.mixins.json:ModelRendererMixin
[03:51:28] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/particle/ParticleManager for invalid dist DEDICATED_SERVER
[03:51:28] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/particle/ParticleManager (java.lang.RuntimeException: Attempted to load class net/minecraft/client/particle/ParticleManager for invalid dist DEDICATED_SERVER)
[03:51:28] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.particle.ParticleManager was not found moreplayermodels.mixins.json:ParticleManagerMixin
[03:51:28] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/entity/PlayerRenderer for invalid dist DEDICATED_SERVER
[03:51:28] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/entity/PlayerRenderer (java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/entity/PlayerRenderer for invalid dist DEDICATED_SERVER)
[03:51:28] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.entity.PlayerRenderer was not found moreplayermodels.mixins.json:PlayerRendererMixin
[03:51:31] [main/WARN] [mixin/]: Error loading class: net/minecraft/entity/IChargeableMob (java.lang.ClassNotFoundException: null)
[03:51:31] [main/WARN] [mixin/]: Error loading class: net/minecraft/entity/IChargeableMob (java.lang.ClassNotFoundException: null)
[03:51:31] [main/WARN] [mixin/]: Error loading class: net/minecraft/entity/IChargeableMob (java.lang.ClassNotFoundException: null)
[03:51:31] [main/WARN] [mixin/]: Error loading class: net/minecraft/entity/IChargeableMob (java.lang.ClassNotFoundException: null)
[03:51:31] [main/WARN] [mixin/]: Error loading class: net/minecraft/entity/IChargeableMob (java.lang.ClassNotFoundException: null)
[03:51:31] [main/WARN] [mixin/]: @Final field field_82223_h:[I in epicfight.mixins.json:MixinWitherBoss should be final
[03:51:31] [main/WARN] [mixin/]: @Final field field_82224_i:[I in epicfight.mixins.json:MixinWitherBoss should be final
[03:51:36] [modloading-worker-0/INFO] [com.jtorleonstudios.libraryferret.LibraryFerret/]: Initialize mod Library Ferret
[03:51:36] [modloading-worker-0/INFO] [com.jtorleonstudios.libraryferret.LibraryFerret/]: Initialized mod Library Ferret
[03:51:36] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 36.2.39, for MC 1.16.5 with MCP 20210115.111550
[03:51:36] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v36.2.39 Initialized
[03:51:36] [modloading-worker-0/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Successfully initialized!
[03:51:36] [modloading-worker-0/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Server-side libs ready to use!
[03:51:36] [modloading-worker-0/INFO] [com.simibubi.create.repack.registrate.AbstractRegistrate/]: Detected new forge version, registering events reflectively.
[03:51:36] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Welcome to MTS VERSION: 22.10.0
[03:51:36] [modloading-worker-0/INFO] [com.mohistmc.MohistMC/]: EventDispatcherRegistry initialized
[03:51:37] [modloading-worker-0/INFO] [com.simibubi.create.repack.registrate.AbstractRegistrate/]: Detected new forge version, registering events reflectively.
[03:51:37] [modloading-worker-0/INFO] [FLASHLIGHT/]: Config has been initialized
[03:51:37] [modloading-worker-0/INFO] [com.simibubi.create.repack.registrate.AbstractRegistrate/]: Detected new forge version, registering events reflectively.
[03:51:37] [modloading-worker-0/INFO] [com.simibubi.create.repack.registrate.AbstractRegistrate/]: Detected new forge version, registering events reflectively.
[03:51:38] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not do model-based legacy compats on osog_city_car:azlk_2140.  Lights and treads will likely not be present on this model.
[03:51:38] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: For input string: "FFFFF_110_&Headlight_fefefe_FFFFF" under radix 16
[03:51:40] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not compile points of: /assets/osog_city_car_parts/objmodels/parts/ua_nomer.obj:Cube.002.  This is likely due to missing UV mapping on some or all faces.
[03:51:40] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not compile points of: /assets/osog_city_car_parts/objmodels/parts/ua_nomer.obj:Cube.001.  This is likely due to missing UV mapping on some or all faces.
[03:51:40] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not compile points of: /assets/osog_city_car_parts/objmodels/parts/ua_nomer.obj:Cube.  This is likely due to missing UV mapping on some or all faces.
[03:51:40] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not compile points of: /assets/osog_city_car_parts/objmodels/parts/ua_nomer.obj:Cube.002.  This is likely due to missing UV mapping on some or all faces.
[03:51:40] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not compile points of: /assets/osog_city_car_parts/objmodels/parts/ua_nomer.obj:Cube.001.  This is likely due to missing UV mapping on some or all faces.
[03:51:40] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not compile points of: /assets/osog_city_car_parts/objmodels/parts/ua_nomer.obj:Cube.  This is likely due to missing UV mapping on some or all faces.
[03:51:40] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not do model-based legacy compats on cmamilitarytransport:iav_ammo_132mm_heatfs.  Lights and treads will likely not be present on this model.
[03:51:40] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: For input string: "&flame" under radix 16
[03:51:43] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Object Object found with no faces defined at line: 24734 in: /assets/subcraftica/objmodels/vehicles/seamoth.obj
[03:51:43] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Object Object.002 found with no faces defined at line: 24737 in: /assets/subcraftica/objmodels/vehicles/seamoth.obj
[03:51:43] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Object Object.003 found with no faces defined at line: 24740 in: /assets/subcraftica/objmodels/vehicles/seamoth.obj
[03:51:44] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not parse: iv_tcp_v3_civil:trin_base_JSON.json
[03:51:44] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: java.lang.IllegalStateException: Expected a double but was NULL at line 20 column 13 path $.parts[0].pos[0]
[03:51:44] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not do model-based legacy compats on cmacitizenstransport:moskvich412.  Lights and treads will likely not be present on this model.
[03:51:44] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: For input string: "FFFFF_110_&Headlight_fefefe_FFFFF" under radix 16
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not do model-based legacy compats on cmapartsfortransport:ais2_turret.  Lights and treads will likely not be present on this model.
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: For input string: "&flame" under radix 16
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not do model-based legacy compats on cmapartsfortransport:akv-1_turret.  Lights and treads will likely not be present on this model.
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: For input string: "&flame" under radix 16
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not do model-based legacy compats on cmapartsfortransport:akv-2_turret.  Lights and treads will likely not be present on this model.
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: For input string: "&flame" under radix 16
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: Could not do model-based legacy compats on cmapartsfortransport:auweschveb_part_turret_bt6_2.  Lights and treads will likely not be present on this model.
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: For input string: "&flame" under radix 16
[03:51:46] [modloading-worker-0/ERROR] [mcinterface1165.InterfaceLoader/]: MTSERROR: ConfigSystem failed to save modified config files.  Report to the mod author!
[03:51:49] [Worker-Main-8/ERROR] [com.ferreusveritas.dynamictrees.api.resource.loading.preparation.JsonRegistryResourceLoader/]: Error whilst loading type "Family" with name "dtbop:burnt": [common_leaves] Could not find LeavesProperties for registry name 'dtbop:burnt'.
[03:51:50] [main/INFO] [magistu.siegemachines.SiegeMachines/]: HELLO from Register Block
[03:51:50] [main/INFO] [com.Imphuls3.createcafe.CreateCafe/]: HELLO from Register Block
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:53] [main/WARN] [com.yyon.grapplinghook.grapplemod/]: unable to set craftingRemainingItem for upgrade item
[03:51:54] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `otg`, expected `otg`. This could be a intended override, but in most cases indicates a broken mod.
[03:51:54] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `milk`, expected `forge`. This could be a intended override, but in most cases indicates a broken mod.
[03:51:54] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `flowing_milk`, expected `forge`. This could be a intended override, but in most cases indicates a broken mod.
[03:51:57] [modloading-worker-0/INFO] [magistu.siegemachines.SiegeMachines/]: HELLO FROM PREINIT
[03:51:57] [modloading-worker-0/INFO] [magistu.siegemachines.SiegeMachines/]: DIRT BLOCK >> minecraft:dirt
[03:51:57] [modloading-worker-0/INFO] [com.Imphuls3.createcafe.CreateCafe/]: HELLO FROM PREINIT
[03:51:57] [modloading-worker-0/INFO] [com.Imphuls3.createcafe.CreateCafe/]: DIRT BLOCK >> minecraft:dirt
[03:51:57] [modloading-worker-0/INFO] [voicechat/]: Compatibility version 17
[03:51:57] [modloading-worker-0/INFO] [FLASHLIGHT/]: Loading Simple Flashlight Port v2.0.1ported by EdeK_
[03:51:57] [modloading-worker-0/INFO] [FLASHLIGHT/]: Discord Server: https://discord.gg/tWuVFHC
[03:51:57] [modloading-worker-0/INFO] [FLASHLIGHT/]: Simple Flashlight Port loaded successfully!
[03:51:58] [modloading-worker-0/INFO] [voicechat/]: Loading plugins
[03:51:58] [modloading-worker-0/INFO] [voicechat/]: Loaded 2 plugin(s)
[03:51:58] [modloading-worker-0/INFO] [voicechat/]: Initializing plugins
[03:51:58] [modloading-worker-0/INFO] [me.haru301.simpleradio.SimpleRadio/]: INITIALIZED
[03:51:58] [modloading-worker-0/INFO] [voicechat/]: Initialized 2 plugin(s)
[03:51:58] [modloading-worker-0/INFO] [voicechat/]: Registering events for walkietalkie
[03:51:58] [modloading-worker-0/INFO] [voicechat/]: Registering events for simpleradio
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: CustomNPC Permissions available:
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.edit.blocks
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.edit.villager
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.bank
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.dialog
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.faction
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.linked
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.naturalspawn
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.playerdata
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.quest
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.recipe
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.global.transport
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.advanced
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.ai
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.clone
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.create
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.delete
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.display
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.freeze
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.gui
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.inventory
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.reset
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.npc.stats
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.scenes
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.soulstone.all
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.spawner.create
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.spawner.mob
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.tool.mounter
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.tool.nbtbook
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.tool.pather
[03:51:58] [modloading-worker-0/INFO] [noppes.npcs.CustomNpcs/]: customnpcs.tool.scripter
[03:51:58] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for mutantbeasts:creeper_minion, use EntityAttributeCreationEvent instead.
[03:51:58] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for mutantbeasts:endersoul_clone, use EntityAttributeCreationEvent instead.
[03:51:58] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for mutantbeasts:mutant_creeper, use EntityAttributeCreationEvent instead.
[03:51:58] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for mutantbeasts:mutant_enderman, use EntityAttributeCreationEvent instead.
[03:51:58] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for mutantbeasts:mutant_skeleton, use EntityAttributeCreationEvent instead.
[03:51:58] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for mutantbeasts:mutant_snow_golem, use EntityAttributeCreationEvent instead.
[03:51:58] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for mutantbeasts:mutant_zombie, use EntityAttributeCreationEvent instead.
[03:51:58] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for mutantbeasts:spider_pig, use EntityAttributeCreationEvent instead.
[03:51:58] [modloading-worker-0/INFO] [magistu.siegemachines.SiegeMachines/]: Got IMC []
[03:51:58] [modloading-worker-0/INFO] [STDOUT/]: [com.mrh0.createaddition.CreateAddition:postInit:141]: Create Crafts & Addition Initialized!
[03:52:02] [main/ERROR] [net.minecraft.world.biome.BiomeGenerationSettings/]: Feature: Not a JSON object: "minecraft:red_mushroom_swamp"; Not a JSON object: "minecraft:brown_mushroom_swamp"; Not a JSON object: "minecraft:patch_waterlilly"; Not a JSON object: "minecraft:patch_dead_bush"; Not a JSON object: "minecraft:patch_grass_normal"; Not a JSON object: "minecraft:flower_swamp"; Not a JSON object: "minecraft:swamp_tree"
[03:52:03] [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'
[03:52:03] [main/INFO] [net.minecraft.resources.SimpleReloadableResourceManager/]: Reloading ResourceManager: Default, grappling_hook_mod-1.16.5-v13.jar, Trin+Civil+Pack-1.16.5-3.20.0.jar, pamhc2trees-1.16.3-1.0.1.jar, cgm-1.2.6-1.16.5.jar, locks-1.16.5-3.0.3.jar, [1.16.5]-Medieval-Siege-Machines-v1.15.jar.jar, stealing_villagers-forge-1.16.5-1.0.0.jar, libraryferret-forge-1.16.5-4.0.0.jar, HAArmor+1.16.5-1.1.0.jar, tac-0.3.9.2-1.16.5-lesraisins.jar, UNDEADv.1.7.b.release+Biome.jar, EpicFight-16.6.4.jar, hiddennames-1.16.5-1.2.0.jar, OpenTerrainGenerator-1.16.5-0.1.10.jar, MutantBeasts-1.16.4-1.1.3.jar, sophisticatedbackpacks-1.16.5-3.15.20.755.jar, simpleplanes-1.16.5-4.6.0.jar, Immersive+Vehicles-1.16.5-22.10.0.jar, carryon-1.16.5-1.15.6.24.jar, mohist-1.16.5-1189-universal.jar, dummmmmmy-1.16.5-1.3.3.jar, deathbackup_1.16.5-1.5.jar, konkrete_forge_1.6.1_MC_1.16.2-1.16.5.jar, DynamicSurroundings-1.16.5-4.0.5.0.jar, Scary_Mobs_And_Bosses-mod-1.16.5_1.2.0.jar, sons-of-sins-1.16.5-1.0.9.jar, smoothchunk1.16.5-2.0.jar, mcw-bridges-2.0.7-mc1.16.5forge.jar, FarmersDelight-1.16.5-0.6.0.jar, MTS+Official+Pack-1.16.5-V25.jar, voicechat-forge-1.16.5-2.4.10.jar, InventoryLogger-1.16.5-1.1.4.jar, pamhc2crops-1.16.3-1.0.2.jar, CreativeCore_v2.2.1_mc1.16.5.jar, Horror+Elements+mod+1.16.5_Halloween_update.jar, EyesInTheDarkness-1.16.5-1.0.6.jar, SubCraftica_2.4_1.16.5.jar, spark-1.9.1-forge.jar, pamhc2foodextended-1.16.3-1.0.4.jar, goprone-1.16.4-1.3.5.jar, plushies-1.2-1.16.5-forge.jar, curios-forge-1.16.5-4.1.0.0.jar, itemblacklist-1.16.5-1.4.2.jar, pamhc2foodcore-1.16.3-1.0.2.jar, collective-1.16.5-5.49.jar, MorePlayerModels-1.16.5.20220731.jar, hardcore_torches_forge-1.16.5-1.2.jar, flashLight-2.0.1.jar, [1.16.5]+SecurityCraft+v1.9.6.1.jar, ParCool-1.16.5-3.0.1.0-R.jar, bettervillage-forge-1.16.5-3.1.0.jar, obfuscate-0.6.3-1.16.5.jar, CustomNPCs-1.16.5.20220515.jar, CoroUtil-1.16.5-1.2.37.jar, cfm-7.0.0pre22-1.16.3.jar, architectury-1.32.68.jar, walkietalkie-forge-1.16.5-1.2.0.jar, AI-Improvements-1.16.5-0.5.0.jar, SoL-Carrot-1.16.5-1.10.1.jar, cloth-config-4.16.91-forge.jar, NefsMedievalPub+v1.6(1.16.5).jar, C.M.A_Transport_Pack+_v.2.0-1.16.5_fix.jar, simpleradio-1.1.2.jar, DynamicTrees-1.16.5-0.10.5.jar, geckolib-forge-1.16.5-3.0.106.jar, bukkit, otg, BiomesOPlenty-1.16.5-13.1.0.488-universal.jar, Resident+Evil+84-1.16.5-2.2.jar, Clumps-6.0.0.28.jar, configured-1.5.4-1.16.5.jar, FpsReducer-forge-1.24-mc1.16.5.jar, City_Cars_IV_1.16.5_1.0.0.jar, DynamicTreesBOP-1.16.5-2.0.9.jar, ToolBelt-1.16.5-1.16.3.jar, CasinoCraft_1.16.5_v19.jar, lesraisinsadd-0.1.2.2.jar, mightyarchitect-mc1.16.3_v0.5.jar, Lucky77_1.16.5_v01.jar, createcafe-1.16.5-2.4.jar, flywheel-1.16-0.2.5.jar, create-mc1.16.5_v0.3.2g.jar, creategears-1.16.5-1.3.3.jar, createaddition-1.16.5-20220129a.jar
[03:52:04] [Worker-Main-11/INFO] [tac/]: YO_DATA_GUN
[03:52:04] [Worker-Main-14/ERROR] [net.minecraft.tags.TagCollectionReader/]: Couldnt load {0} tag {1} as it is missing following references: {2}
[03:52:04] [Worker-Main-14/ERROR] [net.minecraft.tags.TagCollectionReader/]: Couldnt load {0} tag {1} as it is missing following references: {2}
[03:52:04] [Worker-Main-14/ERROR] [net.minecraft.tags.TagCollectionReader/]: Couldnt load {0} tag {1} as it is missing following references: {2}
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thestone}.pools[1].entries[3].condition[0]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/themermaid}.pools[0].entries[1].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thebomber}.pools[0].entries[1].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/spitter}.pools[0].entries[2].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/spitter}.pools[0].entries[0].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/theflamingfungus}.pools[0].entries[1].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/therotten}.pools[0].entries[0].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/lostsoul}.pools[0].entries[0].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thepregnant}.pools[2].entries[0].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thestone}.pools[1].entries[0].condition[0]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thebladedancer}.pools[0].entries[1].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thesnatcher}.pools[0].entries[0].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thebladedancer}.pools[0].entries[4].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/zombiecow}.pools[0].entries[1].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thestone}.pools[1].entries[2].condition[0]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/the_screecher}.pools[0].entries[2].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/icychomper}.pools[0].entries[0].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/themoonflower}.pools[0].entries[2].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thegluttony}.pools[0].entries[1].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thestone}.pools[1].entries[4].condition[0]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/theheavy}.pools[0].entries[1].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/therotten}.pools[0].entries[1].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/thestone}.pools[1].entries[1].condition[0]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/the_melancholy}.pools[1].entries[0].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/theflamingfungus}.pools[0].entries[0].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {undead:entities/theflamingfungus}.pools[0].entries[2].functions[1]: Parameters [<parameter minecraft:tool>] are not provided in this context
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementManager/]: Parsing error loading custom advancement undead:hungruy: Unknown item id 'undead:glutonnybottle'
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementManager/]: Parsing error loading custom advancement re8joymod:readventure/gm79: Expected item to be an item, was unknown string 're8joymod:gm79'
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementManager/]: Parsing error loading custom advancement re8joymod:readventure/root: Expected item to be an item, was unknown string 're8joymod:umberllablock'
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/ERROR] [net.minecraft.advancements.AdvancementList/]: Couldnt load advancement {0}: {1}
[03:52:05] [Worker-Main-14/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 3,333 recipes
[03:52:05] [Worker-Main-14/ERROR] [net.minecraftforge.common.loot.LootModifierManager/]: Couldn't parse loot modifier hardcore_torches:entities/goat
com.google.gson.JsonSyntaxException: Unknown entity type 'minecraft:goat', valid types are: minecraft:area_effect_cloud, minecraft:armor_stand, minecraft:arrow, minecraft:bat, minecraft:bee, minecraft:blaze, minecraft:boat, minecraft:cat, minecraft:cave_spider, minecraft:chicken, minecraft:cod, minecraft:cow, minecraft:creeper, minecraft:dolphin, minecraft:donkey, minecraft:dragon_fireball, minecraft:drowned, minecraft:elder_guardian, minecraft:end_crystal, minecraft:ender_dragon, minecraft:enderman, minecraft:endermite, minecraft:evoker, minecraft:evoker_fangs, minecraft:experience_orb, minecraft:eye_of_ender, minecraft:falling_block, minecraft:firework_rocket, minecraft:fox, minecraft:ghast, minecraft:giant, minecraft:guardian, minecraft:hoglin, minecraft:horse, minecraft:husk, minecraft:illusioner, minecraft:iron_golem, minecraft:item, minecraft:item_frame, minecraft:fireball, minecraft:leash_knot, minecraft:lightning_bolt, minecraft:llama, minecraft:llama_spit, minecraft:magma_cube, minecraft:minecart, minecraft:chest_minecart, minecraft:command_block_minecart, minecraft:furnace_minecart, minecraft:hopper_minecart, minecraft:spawner_minecart, minecraft:tnt_minecart, minecraft:mule, minecraft:mooshroom, minecraft:ocelot, minecraft:painting, minecraft:panda, minecraft:parrot, minecraft:phantom, minecraft:pig, minecraft:piglin, minecraft:piglin_brute, minecraft:pillager, minecraft:polar_bear, minecraft:tnt, minecraft:pufferfish, minecraft:rabbit, minecraft:ravager, minecraft:salmon, minecraft:sheep, minecraft:shulker, minecraft:shulker_bullet, minecraft:silverfish, minecraft:skeleton, minecraft:skeleton_horse, minecraft:slime, minecraft:small_fireball, minecraft:snow_golem, minecraft:snowball, minecraft:spectral_arrow, minecraft:spider, minecraft:squid, minecraft:stray, minecraft:strider, minecraft:egg, minecraft:ender_pearl, minecraft:experience_bottle, minecraft:potion, minecraft:trident, minecraft:trader_llama, minecraft:tropical_fish, minecraft:turtle, minecraft:vex, minecraft:villager, minecraft:vindicator, minecraft:wandering_trader, minecraft:witch, minecraft:wither, minecraft:wither_skeleton, minecraft:wither_skull, minecraft:wolf, minecraft:zoglin, minecraft:zombie, minecraft:zombie_horse, minecraft:zombie_villager, minecraft:zombified_piglin, minecraft:player, minecraft:fishing_bobber, grapplemod:grapplehook, cgm:projectile, cgm:grenade, cgm:missile, cgm:throwable_grenade, cgm:throwable_stun_grenade, siegemachines:cannonball, siegemachines:stone, siegemachines:giant_stone, siegemachines:giant_arrow, siegemachines:mortar, siegemachines:culverin, siegemachines:trebuchet, siegemachines:catapult, siegemachines:ballista, siegemachines:battering_ram, tac:projectile, tac:grenade, tac:missile, tac:throwable_grenade, tac:throwable_stun_grenade, tac:throwable_smoke_grenade, tac:throwable_effect_grenade, tac:modified_effect_cloud, tac:rpg7_missile, lesraisinsadd:crossbow_arrow, undead:entitybulletflamer, undead:zombiecow, undead:thewolf, undead:thestone, undead:thespectre, undead:thesnatcher, undead:the_sisyphean, undead:the_screecher, undead:thescreamer, undead:therotten, undead:therod, undead:thepregnant, undead:themoonflower, undead:themermaid, undead:the_melancholy, undead:thehunter, undead:theheavy, undead:thegreed, undead:thegluttony, undead:thefungus, undead:theflamingfungus, undead:thebomber, undead:thebladedancer, undead:sucker, undead:spitter, undead:soulcrockpot, undead:oceanchomper, undead:lostsoul, undead:icychomper, undead:hell_waste, undead:fleshserpent, undead:blob, undead:entitybulletstickybomber, undead:entitybulletsoundsbomb, undead:entitybulletsoullauncher, undead:entitybulletsoulbomdsling, undead:entitybulletsnapperlauncher, undead:entitybulletdoubleshotlauncher, undead:entitybulletaci_dballprojecy, undead:test, undead:ocspit, undead:lostpot, undead:lostdot, undead:o_cspitbombsticked, epicfight:area_effect_breath, epicfight:dropped_nether_star, epicfight:wither_skeleton_minion, epicfight:wither_ghost, clumps:xp_orb_big, mutantbeasts:spider_pig, mutantbeasts:mutant_enderman, mutantbeasts:mutant_snow_golem, mutantbeasts:mutant_zombie, mutantbeasts:mutant_creeper, mutantbeasts:creeper_minion, mutantbeasts:mutant_skeleton, mutantbeasts:body_part, mutantbeasts:chemical_x, mutantbeasts:creeper_minion_egg, mutantbeasts:endersoul_clone, mutantbeasts:endersoul_fragment, mutantbeasts:mutant_arrow, mutantbeasts:skull_spirit, mutantbeasts:throwable_block, sophisticatedbackpacks:everlasting_backpack_item, simpleplanes:plane, simpleplanes:large_plane, simpleplanes:helicopter, mts:builder_existing, mts:builder_seat, re8joymod:re8dimi, re8joymod:dimi2, re8joymod:ethan, re8joymod:dund, re8joymod:dund2, re8joymod:samca, re8joymod:bela, re8joymod:cassandra, re8joymod:daniela, re8joymod:bei, re8joymod:angie, re8joymod:doll1, re8joymod:doll2, re8joymod:doll3, re8joymod:beibaby, re8joymod:frank1, re8joymod:frank2, re8joymod:frank3, re8joymod:frank4, re8joymod:lycana, re8joymod:frank5, re8joymod:frank6, re8joymod:mycete, re8joymod:mmycete, re8joymod:detonator, re8joymod:lycan, re8joymod:lycan1, re8joymod:varcolac, re8joymod:moreau, re8joymod:moreau2, re8joymod:moreau3, re8joymod:muheisen, re8joymod:heisen, re8joymod:urias, re8joymod:uriass, re8joymod:mia, re8joymod:chris, re8joymod:axeman, re8joymod:moreau4, re8joymod:mopro, re8joymod:heisencar, re8joymod:duke, re8joymod:thehag, re8joymod:miranda1, re8joymod:miranda2, re8joymod:miranda3, re8joymod:miranda4, re8joymod:rosemary, re8joymod:ada, re8joymod:obboat, re8joymod:summonfrank5, re8joymod:summondaughter, re8joymod:mospitter, re8joymod:m1897b, re8joymod:m1851b, re8joymod:gm79b, re8joymod:pipeb, re8joymod:bowa, re8joymod:sniperammo, re8joymod:rifleammo, re8joymod:ada4, re8joymod:leon, re8joymod:chief2, re8joymod:chief, re8joymod:garrador, re8joymod:grapple, re8joymod:merchant, re8joymod:ganado, re8joymod:cvg, re8joymod:plagas, re8joymod:u3, re8joymod:elg, re8joymod:plagasvillager, re8joymod:plagaszombie, re8joymod:dallago, re8joymod:plagasenderman, re8joymod:plagascreeper, re8joymod:highex, re8joymod:verdugo, re8joymod:mannequin, re8joymod:armadura, re8joymod:zealot, re8joymod:salazar, re8joymod:fallblock, re8joymod:scshake, re8joymod:plagasarmadura, re8joymod:zealota, re8joymod:krauser2, re8joymod:krauser, re8joymod:regenerator, re8joymod:regenerator2, re8joymod:hank, re8joymod:plagasc, re8joymod:evildog, re8joymod:plagasdog, re8joymod:jj, re8joymod:chief3, re8joymod:fireentity, re8joymod:soldi, re8joymod:fe, re8joymod:novi, re8joymod:saddler, re8joymod:stuff, re8joymod:ash, re8joymod:plagasm, re8joymod:salaz, re8joymod:ge, re8joymod:luis, re8joymod:saddler2, re8joymod:brute, dummmmmmy:target_dummy, dummmmmmy:dummy_number, scary_mobs_and_bosses:projectile_tridente, scary_mobs_and_bosses:projectile_arma_acido, scary_mobs_and_bosses:luna, scary_mobs_and_bosses:batmonster, scary_mobs_and_bosses:garras, scary_mobs_and_bosses:clown, scary_mobs_and_bosses:risitas, scary_mobs_and_bosses:granmano, scary_mobs_and_bosses:huerfano, scary_mobs_and_bosses:grumos, scary_mobs_and_bosses:pacienteo, scary_mobs_and_bosses:lloronaoff, scary_mobs_and_bosses:corredor, scary_mobs_and_bosses:calabazin, scary_mobs_and_bosses:devoradori, scary_mobs_and_bosses:vigilante, scary_mobs_and_bosses:cadaveres, scary_mobs_and_bosses:boss, scary_mobs_and_bosses:intruso, scary_mobs_and_bosses:pensantes, scary_mobs_and_bosses:espectador, scary_mobs_and_bosses:alce, scary_mobs_and_bosses:zomb, scary_mobs_and_bosses:enderataque, scary_mobs_and_bosses:cajap, scary_mobs_and_bosses:paya, scary_mobs_and_bosses:paciente, scary_mobs_and_bosses:quebrado, scary_mobs_and_bosses:pacat, scary_mobs_and_bosses:huerfanoata, scary_mobs_and_bosses:projectile_bola_de_grumos, scary_mobs_and_bosses:peque, scary_mobs_and_bosses:regalo, scary_mobs_and_bosses:llorona, scary_mobs_and_bosses:cala, scary_mobs_and_bosses:devorador, scary_mobs_and_bosses:bossinvo, scary_mobs_and_bosses:bossatta, scary_mobs_and_bosses:invoparti, scary_mobs_and_bosses:proteccion, sons_of_sins:wistiver, sons_of_sins:walking_bed, sons_of_sins:prowler, sons_of_sins:iron_hit, sons_of_sins:curse, sons_of_sins:bloody_driver, sons_of_sins:bloody_butcher, sons_of_sins:iron_oven, sons_of_sins:entitybulletbloody_projectile, farmersdelight:rotten_tomato, biomesoplenty:boat, horror_elements_mod:predator, eyesinthedarkness:eyes, create:super_glue, create:crafting_blueprint, create:contraption, create:stationary_contraption, create:gantry_contraption, create:potato_projectile, create:seat, securitycraft:bouncingbetty, securitycraft:imsbomb, securitycraft:securitycamera, securitycraft:sentry, securitycraft:bullet, customnpcs:npcpony, customnpcs:npccrystal, customnpcs:npcslime, customnpcs:npcdragon, customnpcs:npcgolem, customnpcs:customnpc, customnpcs:customnpc64x32, customnpcs:customnpcalex, customnpcs:customnpcclassic, customnpcs:customnpcchairmount, customnpcs:customnpcprojectile, cfm:seat, nefdecomod:chair_entity, dynamictrees:falling_tree, dynamictrees:lingering_effector, createaddition:overcharged_hammer
    at net.minecraft.advancements.criterion.EntityTypePredicate.func_217997_a(SourceFile:85) ~[?:?]
    at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?]
    at net.minecraft.advancements.criterion.EntityTypePredicate.func_209370_a(SourceFile:85) ~[?:?]
    at net.minecraft.advancements.criterion.EntityPredicate.func_192481_a(SourceFile:161) ~[?:?]
    at net.minecraft.loot.conditions.EntityHasProperty$Serializer.func_230423_a_(SourceFile:64) ~[?:?]
    at net.minecraft.loot.conditions.EntityHasProperty$Serializer.func_230423_a_(SourceFile:55) ~[?:?]
    at net.minecraft.loot.LootTypesManager$Serializer.deserialize(SourceFile:83) ~[?:?]
    at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[server-1.16.5-20210115.111550-extra.jar:?]
    at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41) ~[server-1.16.5-20210115.111550-extra.jar:?]
    at com.google.gson.internal.bind.ArrayTypeAdapter.read(ArrayTypeAdapter.java:72) ~[server-1.16.5-20210115.111550-extra.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:887) ~[server-1.16.5-20210115.111550-extra.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:952) ~[server-1.16.5-20210115.111550-extra.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:925) ~[server-1.16.5-20210115.111550-extra.jar:?]
    at net.minecraftforge.common.loot.LootModifierManager.deserializeModifier(LootModifierManager.java:115) ~[forge:?]
    at net.minecraftforge.common.loot.LootModifierManager.lambda$apply$0(LootModifierManager.java:101) ~[forge:?]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at net.minecraftforge.common.loot.LootModifierManager.apply(LootModifierManager.java:99) ~[forge:?]
    at net.minecraftforge.common.loot.LootModifierManager.func_212853_a_(LootModifierManager.java:40) ~[forge:?]
    at net.minecraft.client.resources.ReloadListener.func_215269_a(SourceFile:13) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?]
    at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219557_a(SourceFile:71) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219560_a(SourceFile:70) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
    at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?]
    at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219557_a(SourceFile:71) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219560_a(SourceFile:70) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
    at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?]
    at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219557_a(SourceFile:71) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219560_a(SourceFile:70) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
    at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?]
    at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219557_a(SourceFile:71) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219560_a(SourceFile:70) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
    at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?]
    at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219557_a(SourceFile:71) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219560_a(SourceFile:70) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
    at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?]
    at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219557_a(SourceFile:71) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219560_a(SourceFile:70) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
    at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?]
    at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219557_a(SourceFile:71) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219560_a(SourceFile:70) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
    at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?]
    at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219557_a(SourceFile:71) ~[?:?]
    at net.minecraft.resources.AsyncReloader.func_219560_a(SourceFile:70) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?]
    at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
    at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1773) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]
    at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]
    at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]
    at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]
    at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?]
[03:52:05] [Worker-Main-14/ERROR] [com.ferreusveritas.dynamictrees.api.resource.loading.preparation.JsonRegistryResourceLoader/]: Error whilst loading type "Family" with name "dtbop:burnt": [common_leaves] Could not find LeavesProperties for registry name 'dtbop:burnt'.
[03:52:05] [Worker-Main-14/WARN] [com.ferreusveritas.dynamictrees.api.resource.loading.preparation.JsonRegistryResourceLoader/]: Warning whilst loading type "Species" with name "dtbop:short_jungle": [features] Gen Feature couldn't be found from input "null".
[03:52:09] [main/INFO] [STDOUT/]: [tschipp.carryon.common.handler.ListHandler:initConfigLists:282]: [dynamictrees:wart_blocks, create:non_movable, minecraft:soul_fire_base_blocks, forge:glass_panes/magenta, securitycraft:reinforced/oak_logs, farmersdelight:unaffected_by_rich_soil, otg:stained_clay, forge:storage_blocks/netherite, securitycraft:reinforced/wool, forge:glass_panes/white, biomesoplenty:hellbark_logs, forge:gravel, forge:glass_panes/cyan, otg:sandstone, biomesoplenty:magic_logs, forge:glass_panes/light_gray, minecraft:wool, securitycraft:reinforced/sand, forge:glass/colorless, forge:glass_panes/light_blue, minecraft:beehives, minecraft:ice, forge:ores/zinc, forge:ores/netherite_scrap, minecraft:dragon_immune, minecraft:crops, farmersdelight:heat_sources, forge:stained_glass, re8joymod:portal_frame_blocks, forge:glass/pink, forge:chests, forge:storage_blocks/emerald, forge:ores/redstone, otg:red_sandstone, mutantbeasts:endersoul_hand_holdable, minecraft:warped_stems, forge:glass/red, forge:storage_blocks/iron, create:seats, securitycraft:reinforced/cobblestone, forge:glass_panes/brown, forge:glass_panes/green, carryon:block_blacklist, create:wrench_pickup, minecraft:prevent_mob_spawning_inside, minecraft:climbable, forge:chests/trapped, forge:fence_gates, minecraft:dark_oak_logs, farmersdelight:compost_activators, mcwbridges:rope_bridges, minecraft:coral_plants, farmersdelight:tray_heat_sources, forge:glass_panes, minecraft:non_flammable_wood, forge:sandstone, otg:log, forge:storage_blocks/copper, forge:glass_panes/colorless, securitycraft:reinforced/ice, otg:air, securitycraft:reinforced/crimson_stems, create:safe_nbt, dynamictrees:branches, minecraft:fences, minecraft:saplings, forge:storage_blocks/lapis, forge:ores/copper, minecraft:mineable/pickaxe, minecraft:beds, forge:ores/diamond, mcwbridges:bamboo_stairs, minecraft:unstable_bottom_center, simpleplanes:plane_materials, minecraft:doors, cfm:fence_gates/picket, mcwbridges:wooden_piers, minecraft:enderman_holdable, minecraft:banners, minecraft:infiniburn_overworld, minecraft:flower_pots, minecraft:wooden_fences, minecraft:wall_post_override, forge:obsidian, forge:enderman_place_on_blacklist, biomesoplenty:mahogany_logs, securitycraft:reinforced/stone, forge:glass/white, dynamictrees:branches_that_burn, forge:glass_panes/red, minecraft:signs, farmersdelight:mushroom_colony_growable_on, biomesoplenty:willow_logs, minecraft:wither_summon_base_blocks, forge:glass/magenta, mcwbridges:stone_piers, forge:ores/coal, minecraft:hoglin_repellents, minecraft:fire, simpleplanes:fireproof_materials, cfm:fence_gates/upgraded, minecraft:base_stone_nether, minecraft:wall_signs, securitycraft:reinforced/dark_oak_logs, create:fan_transparent, carryon:block_whitelist, securitycraft:reinforced/wooden_stairs, forge:sand/colorless, securitycraft:reinforced/warped_stems, minecraft:trapdoors, forge:glass/cyan, otg:dirt, forge:glass, minecraft:soul_speed_blocks, securitycraft:reinforced/nylium, mcwbridges:log_stairs, securitycraft:reinforced/wooden_slabs, minecraft:leaves, tconstruct:slimy_logs, minecraft:walls, minecraft:coral_blocks, otg:concrete, forge:storage_blocks/brass, forge:glass/green, forge:glass_panes/gray, minecraft:wither_immune, minecraft:acacia_logs, otg:quartz_block, re8joymod:humus_sand, forge:stained_glass_panes, minecraft:underwater_bonemeals, mcwbridges:rope_stairs, securitycraft:secret_standing_signs, forge:storage_blocks/zinc, forge:sand/red, minecraft:impermeable, minecraft:sand, forge:end_stones, forge:glass/brown, biomesoplenty:fir_logs, create:sails, minecraft:logs_that_burn, forge:wg_stone, forge:fences/wooden, sereneseasons:summer_crops, forge:glass/gray, minecraft:campfires, forge:storage_blocks, minecraft:infiniburn_nether, forge:glass_panes/orange, forge:glass/light_gray, forge:ores/quartz, minecraft:wooden_slabs, forge:glass/blue, securitycraft:reinforced/logs, create:toolboxes, minecraft:small_flowers, minecraft:wooden_trapdoors, minecraft:portal_frame_blocks, create:valve_handles, mcwbridges:rail_bridges, cfm:fences/upgraded, forge:storage_blocks/coal, forge:glass_panes/black, forge:glass/light_blue, cfm:fences/picket, securitycraft:reinforced/dirt, farmersdelight:wild_crops, forge:storage_blocks/redstone, sereneseasons:winter_crops, forge:glass_panes/blue, minecraft:stairs, sereneseasons:unbreakable_infertile_crops, minecraft:logs, forge:plushie, securitycraft:reinforced/planks, forge:stone, minecraft:valid_spawn, dynamictrees:foliage, minecraft:mushroom_grow_block, mcwbridges:bamboo_bridges, minecraft:wooden_doors, minecraft:standing_signs, minecraft:infiniburn_end, dynamictrees:stripped_branches, otg:stone, securitycraft:reinforced/end_stones, forge:glass_panes/yellow, sereneseasons:autumn_crops, forge:glass/purple, minecraft:crimson_stems, securitycraft:reinforced/stairs, biomesoplenty:cherry_logs, minecraft:wart_blocks, farmersdelight:heat_conductors, minecraft:beacon_base_blocks, securitycraft:secret_wall_signs, minecraft:shulker_boxes, dynamictrees:stripped_branches_that_burn, securitycraft:secret_signs, minecraft:anvil, otg:red_flower, minecraft:birch_logs, forge:sand, minecraft:wall_corals, securitycraft:reinforced/jungle_logs, create:fan_heaters, otg:long_grass, forge:glass_panes/purple, forge:glass/yellow, re8joymod:gra, mcwbridges:stone_bridges, dynamictrees:saplings, minecraft:oak_logs, forge:ores/gold, forge:barrels, minecraft:piglin_repellents, forge:ores/lapis, biomesoplenty:palm_logs, forge:glass/black, biomesoplenty:dead_logs, minecraft:portals, securitycraft:reinforced/slabs, securitycraft:reinforced/spruce_logs, forge:dirt, minecraft:bamboo_plantable_on, forge:fences/nether_brick, dynamictrees:leaves, forge:glass/lime, forge:chests/wooden, forge:ores/iron, minecraft:pressure_plates, create:windowable, minecraft:jungle_logs, hardcore_torches:free_torch_light_blocks, cfm:fences/hedge, dynamictrees:fungus_caps, forge:chests/ender, minecraft:wooden_stairs, minecraft:spruce_logs, securitycraft:reinforced/stone_bricks, minecraft:base_stone_overworld, minecraft:carpets, minecraft:wooden_buttons, biomesoplenty:umbran_logs, mcwbridges:bamboo_piers, forge:fence_gates/wooden, minecraft:stone_bricks, forge:storage_blocks/quartz, minecraft:mineable/axe, securitycraft:reinforced/birch_logs, forge:glass/orange, forge:glass_panes/lime, create:windmill_sails, otg:prismarine, securitycraft:reinforced/terracotta, sereneseasons:spring_crops, dynamictrees:fungus_branches, minecraft:slabs, dynamictrees:stripped_fungus_branches, minecraft:guarded_by_piglins, forge:ores/emerald, minecraft:corals, minecraft:buttons, minecraft:flowers, re8joymod:ebony_logs, mcwbridges:stone_stairs, minecraft:planks, forge:cobblestone, minecraft:rails, securitycraft:reinforced/buttons, forge:barrels/wooden, securitycraft:reinforced/acacia_logs, minecraft:strider_warm_blocks, forge:storage_blocks/gold, minecraft:fence_gates, mcwbridges:log_bridges, forge:ores, minecraft:bee_growables, minecraft:wooden_pressure_plates, mutantbeasts:mutant_enderman_holdable, create:brittle, minecraft:tall_flowers, biomesoplenty:redwood_logs, biomesoplenty:jacaranda_logs, forge:fences, minecraft:stone_pressure_plates, forge:storage_blocks/diamond, minecraft:nylium, minecraft:gold_ores, forge:glass_panes/pink, forge:netherrack, securitycraft:reinforced/carpets, securitycraft:reinforced/pressure_plates]
[03:52:09] [main/INFO] [STDOUT/]: [tschipp.carryon.common.handler.ListHandler:initConfigLists:282]: [dynamictrees:wart_blocks, create:non_movable, minecraft:soul_fire_base_blocks, forge:glass_panes/magenta, securitycraft:reinforced/oak_logs, farmersdelight:unaffected_by_rich_soil, otg:stained_clay, forge:storage_blocks/netherite, securitycraft:reinforced/wool, forge:glass_panes/white, biomesoplenty:hellbark_logs, forge:gravel, forge:glass_panes/cyan, otg:sandstone, biomesoplenty:magic_logs, forge:glass_panes/light_gray, minecraft:wool, securitycraft:reinforced/sand, forge:glass/colorless, forge:glass_panes/light_blue, minecraft:beehives, minecraft:ice, forge:ores/zinc, forge:ores/netherite_scrap, minecraft:dragon_immune, minecraft:crops, farmersdelight:heat_sources, forge:stained_glass, re8joymod:portal_frame_blocks, forge:glass/pink, forge:chests, forge:storage_blocks/emerald, forge:ores/redstone, otg:red_sandstone, mutantbeasts:endersoul_hand_holdable, minecraft:warped_stems, forge:glass/red, forge:storage_blocks/iron, create:seats, securitycraft:reinforced/cobblestone, forge:glass_panes/brown, forge:glass_panes/green, carryon:block_blacklist, create:wrench_pickup, minecraft:prevent_mob_spawning_inside, minecraft:climbable, forge:chests/trapped, forge:fence_gates, minecraft:dark_oak_logs, farmersdelight:compost_activators, mcwbridges:rope_bridges, minecraft:coral_plants, farmersdelight:tray_heat_sources, forge:glass_panes, minecraft:non_flammable_wood, forge:sandstone, otg:log, forge:storage_blocks/copper, forge:glass_panes/colorless, securitycraft:reinforced/ice, otg:air, securitycraft:reinforced/crimson_stems, create:safe_nbt, dynamictrees:branches, minecraft:fences, minecraft:saplings, forge:storage_blocks/lapis, forge:ores/copper, minecraft:mineable/pickaxe, minecraft:beds, forge:ores/diamond, mcwbridges:bamboo_stairs, minecraft:unstable_bottom_center, simpleplanes:plane_materials, minecraft:doors, cfm:fence_gates/picket, mcwbridges:wooden_piers, minecraft:enderman_holdable, minecraft:banners, minecraft:infiniburn_overworld, minecraft:flower_pots, minecraft:wooden_fences, minecraft:wall_post_override, forge:obsidian, forge:enderman_place_on_blacklist, biomesoplenty:mahogany_logs, securitycraft:reinforced/stone, forge:glass/white, dynamictrees:branches_that_burn, forge:glass_panes/red, minecraft:signs, farmersdelight:mushroom_colony_growable_on, biomesoplenty:willow_logs, minecraft:wither_summon_base_blocks, forge:glass/magenta, mcwbridges:stone_piers, forge:ores/coal, minecraft:hoglin_repellents, minecraft:fire, simpleplanes:fireproof_materials, cfm:fence_gates/upgraded, minecraft:base_stone_nether, minecraft:wall_signs, securitycraft:reinforced/dark_oak_logs, create:fan_transparent, carryon:block_whitelist, securitycraft:reinforced/wooden_stairs, forge:sand/colorless, securitycraft:reinforced/warped_stems, minecraft:trapdoors, forge:glass/cyan, otg:dirt, forge:glass, minecraft:soul_speed_blocks, securitycraft:reinforced/nylium, mcwbridges:log_stairs, securitycraft:reinforced/wooden_slabs, minecraft:leaves, tconstruct:slimy_logs, minecraft:walls, minecraft:coral_blocks, otg:concrete, forge:storage_blocks/brass, forge:glass/green, forge:glass_panes/gray, minecraft:wither_immune, minecraft:acacia_logs, otg:quartz_block, re8joymod:humus_sand, forge:stained_glass_panes, minecraft:underwater_bonemeals, mcwbridges:rope_stairs, securitycraft:secret_standing_signs, forge:storage_blocks/zinc, forge:sand/red, minecraft:impermeable, minecraft:sand, forge:end_stones, forge:glass/brown, biomesoplenty:fir_logs, create:sails, minecraft:logs_that_burn, forge:wg_stone, forge:fences/wooden, sereneseasons:summer_crops, forge:glass/gray, minecraft:campfires, forge:storage_blocks, minecraft:infiniburn_nether, forge:glass_panes/orange, forge:glass/light_gray, forge:ores/quartz, minecraft:wooden_slabs, forge:glass/blue, securitycraft:reinforced/logs, create:toolboxes, minecraft:small_flowers, minecraft:wooden_trapdoors, minecraft:portal_frame_blocks, create:valve_handles, mcwbridges:rail_bridges, cfm:fences/upgraded, forge:storage_blocks/coal, forge:glass_panes/black, forge:glass/light_blue, cfm:fences/picket, securitycraft:reinforced/dirt, farmersdelight:wild_crops, forge:storage_blocks/redstone, sereneseasons:winter_crops, forge:glass_panes/blue, minecraft:stairs, sereneseasons:unbreakable_infertile_crops, minecraft:logs, forge:plushie, securitycraft:reinforced/planks, forge:stone, minecraft:valid_spawn, dynamictrees:foliage, minecraft:mushroom_grow_block, mcwbridges:bamboo_bridges, minecraft:wooden_doors, minecraft:standing_signs, minecraft:infiniburn_end, dynamictrees:stripped_branches, otg:stone, securitycraft:reinforced/end_stones, forge:glass_panes/yellow, sereneseasons:autumn_crops, forge:glass/purple, minecraft:crimson_stems, securitycraft:reinforced/stairs, biomesoplenty:cherry_logs, minecraft:wart_blocks, farmersdelight:heat_conductors, minecraft:beacon_base_blocks, securitycraft:secret_wall_signs, minecraft:shulker_boxes, dynamictrees:stripped_branches_that_burn, securitycraft:secret_signs, minecraft:anvil, otg:red_flower, minecraft:birch_logs, forge:sand, minecraft:wall_corals, securitycraft:reinforced/jungle_logs, create:fan_heaters, otg:long_grass, forge:glass_panes/purple, forge:glass/yellow, re8joymod:gra, mcwbridges:stone_bridges, dynamictrees:saplings, minecraft:oak_logs, forge:ores/gold, forge:barrels, minecraft:piglin_repellents, forge:ores/lapis, biomesoplenty:palm_logs, forge:glass/black, biomesoplenty:dead_logs, minecraft:portals, securitycraft:reinforced/slabs, securitycraft:reinforced/spruce_logs, forge:dirt, minecraft:bamboo_plantable_on, forge:fences/nether_brick, dynamictrees:leaves, forge:glass/lime, forge:chests/wooden, forge:ores/iron, minecraft:pressure_plates, create:windowable, minecraft:jungle_logs, hardcore_torches:free_torch_light_blocks, cfm:fences/hedge, dynamictrees:fungus_caps, forge:chests/ender, minecraft:wooden_stairs, minecraft:spruce_logs, securitycraft:reinforced/stone_bricks, minecraft:base_stone_overworld, minecraft:carpets, minecraft:wooden_buttons, biomesoplenty:umbran_logs, mcwbridges:bamboo_piers, forge:fence_gates/wooden, minecraft:stone_bricks, forge:storage_blocks/quartz, minecraft:mineable/axe, securitycraft:reinforced/birch_logs, forge:glass/orange, forge:glass_panes/lime, create:windmill_sails, otg:prismarine, securitycraft:reinforced/terracotta, sereneseasons:spring_crops, dynamictrees:fungus_branches, minecraft:slabs, dynamictrees:stripped_fungus_branches, minecraft:guarded_by_piglins, forge:ores/emerald, minecraft:corals, minecraft:buttons, minecraft:flowers, re8joymod:ebony_logs, mcwbridges:stone_stairs, minecraft:planks, forge:cobblestone, minecraft:rails, securitycraft:reinforced/buttons, forge:barrels/wooden, securitycraft:reinforced/acacia_logs, minecraft:strider_warm_blocks, forge:storage_blocks/gold, minecraft:fence_gates, mcwbridges:log_bridges, forge:ores, minecraft:bee_growables, minecraft:wooden_pressure_plates, mutantbeasts:mutant_enderman_holdable, create:brittle, minecraft:tall_flowers, biomesoplenty:redwood_logs, biomesoplenty:jacaranda_logs, forge:fences, minecraft:stone_pressure_plates, forge:storage_blocks/diamond, minecraft:nylium, minecraft:gold_ores, forge:glass_panes/pink, forge:netherrack, securitycraft:reinforced/carpets, securitycraft:reinforced/pressure_plates]
[03:52:12] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.16.5
[03:52:12] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties
[03:52:12] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: SURVIVAL
[03:52:12] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair
[03:52:12] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on *:25,565
[03:52:12] [Server thread/INFO] [net.minecraft.network.NetworkSystem/]: Using default channel type
[03:52:12] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[03:52:12] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: The server will make no attempt to authenticate usernames. Beware.
[03:52:12] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[03:52:12] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: To change this, set "online-mode" to "true" in the server.properties file.
[03:52:12] [Server thread/INFO] [Minecraft/]: This server is running Mohist version 1.16.5-1189 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT, Forge version 36.2.39)
[03:52:13] [Server thread/INFO] [Minecraft/]: Debug logging is enabled
[03:52:13] [Server thread/INFO] [/]: Server Ping Player Sample Count: 12
[03:52:13] [Server thread/INFO] [Minecraft/]: Using 4 threads for Netty based IO
[03:52:13] [Server thread/INFO] [/]: Loaded inheritance map of 2322 classes
[03:52:14] [Server thread/ERROR] [Minecraft/]: Could not load 'plugins\CMIEInjector1.0.2.3.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown dependency Vault. Please download and install Vault to run this plugin.
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:268) ~[forge:?]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:389) ~[forge:7e29f765-296df566-9fb885e8]
    at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:218) ~[?:?]
    at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:768) ~[?:?]
    at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[03:52:14] [Server thread/INFO] [net.Zrips.CMILib.CMILib/]: [CMILib] Loading CMILib v1.3.1.2
[03:52:14] [Server thread/INFO] [net.citizensnpcs.Citizens/]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2706)
[03:52:14] [Server thread/INFO] [com.denizenscript.denizen.Denizen/]: [Denizen] Loading Denizen v1.2.5-SNAPSHOT (build 1776-REL)
[03:52:14] [Server thread/INFO] [com.Zrips.CMI.CMI/]: [CMI] Loading CMI v9.5.0.9
[03:52:14] [Server thread/INFO] [com.rylinaux.plugman.PlugMan/]: [PlugManX] Loading PlugManX v2.3.2
[03:52:14] [Server thread/INFO] [com.rylinaux.plugman.PlugMan/]: [PlugManX] Enabling PlugManX v2.3.2
[03:52:15] [Server thread/INFO] [/]: [dynamictrees:wart_blocks, create:non_movable, minecraft:soul_fire_base_blocks, forge:glass_panes/magenta, securitycraft:reinforced/oak_logs, farmersdelight:unaffected_by_rich_soil, otg:stained_clay, forge:storage_blocks/netherite, securitycraft:reinforced/wool, forge:glass_panes/white, biomesoplenty:hellbark_logs, forge:gravel, forge:glass_panes/cyan, otg:sandstone, biomesoplenty:magic_logs, forge:glass_panes/light_gray, minecraft:wool, securitycraft:reinforced/sand, forge:glass/colorless, forge:glass_panes/light_blue, minecraft:beehives, minecraft:ice, forge:ores/zinc, forge:ores/netherite_scrap, minecraft:dragon_immune, minecraft:crops, farmersdelight:heat_sources, forge:stained_glass, re8joymod:portal_frame_blocks, forge:glass/pink, forge:chests, forge:storage_blocks/emerald, forge:ores/redstone, otg:red_sandstone, mutantbeasts:endersoul_hand_holdable, minecraft:warped_stems, forge:glass/red, forge:storage_blocks/iron, create:seats, securitycraft:reinforced/cobblestone, forge:glass_panes/brown, forge:glass_panes/green, carryon:block_blacklist, create:wrench_pickup, minecraft:prevent_mob_spawning_inside, minecraft:climbable, forge:chests/trapped, forge:fence_gates, minecraft:dark_oak_logs, farmersdelight:compost_activators, mcwbridges:rope_bridges, minecraft:coral_plants, farmersdelight:tray_heat_sources, forge:glass_panes, minecraft:non_flammable_wood, forge:sandstone, otg:log, forge:storage_blocks/copper, forge:glass_panes/colorless, securitycraft:reinforced/ice, otg:air, securitycraft:reinforced/crimson_stems, create:safe_nbt, dynamictrees:branches, minecraft:fences, minecraft:saplings, forge:storage_blocks/lapis, forge:ores/copper, minecraft:mineable/pickaxe, minecraft:beds, forge:ores/diamond, mcwbridges:bamboo_stairs, minecraft:unstable_bottom_center, simpleplanes:plane_materials, minecraft:doors, cfm:fence_gates/picket, mcwbridges:wooden_piers, minecraft:enderman_holdable, minecraft:banners, minecraft:infiniburn_overworld, minecraft:flower_pots, minecraft:wooden_fences, minecraft:wall_post_override, forge:obsidian, forge:enderman_place_on_blacklist, biomesoplenty:mahogany_logs, securitycraft:reinforced/stone, forge:glass/white, dynamictrees:branches_that_burn, forge:glass_panes/red, minecraft:signs, farmersdelight:mushroom_colony_growable_on, biomesoplenty:willow_logs, minecraft:wither_summon_base_blocks, forge:glass/magenta, mcwbridges:stone_piers, forge:ores/coal, minecraft:hoglin_repellents, minecraft:fire, simpleplanes:fireproof_materials, cfm:fence_gates/upgraded, minecraft:base_stone_nether, minecraft:wall_signs, securitycraft:reinforced/dark_oak_logs, create:fan_transparent, carryon:block_whitelist, securitycraft:reinforced/wooden_stairs, forge:sand/colorless, securitycraft:reinforced/warped_stems, minecraft:trapdoors, forge:glass/cyan, otg:dirt, forge:glass, minecraft:soul_speed_blocks, securitycraft:reinforced/nylium, mcwbridges:log_stairs, securitycraft:reinforced/wooden_slabs, minecraft:leaves, tconstruct:slimy_logs, minecraft:walls, minecraft:coral_blocks, otg:concrete, forge:storage_blocks/brass, forge:glass/green, forge:glass_panes/gray, minecraft:wither_immune, minecraft:acacia_logs, otg:quartz_block, re8joymod:humus_sand, forge:stained_glass_panes, minecraft:underwater_bonemeals, mcwbridges:rope_stairs, securitycraft:secret_standing_signs, forge:storage_blocks/zinc, forge:sand/red, minecraft:impermeable, minecraft:sand, forge:end_stones, forge:glass/brown, biomesoplenty:fir_logs, create:sails, minecraft:logs_that_burn, forge:wg_stone, forge:fences/wooden, sereneseasons:summer_crops, forge:glass/gray, minecraft:campfires, forge:storage_blocks, minecraft:infiniburn_nether, forge:glass_panes/orange, forge:glass/light_gray, forge:ores/quartz, minecraft:wooden_slabs, forge:glass/blue, securitycraft:reinforced/logs, create:toolboxes, minecraft:small_flowers, minecraft:wooden_trapdoors, minecraft:portal_frame_blocks, create:valve_handles, mcwbridges:rail_bridges, cfm:fences/upgraded, forge:storage_blocks/coal, forge:glass_panes/black, forge:glass/light_blue, cfm:fences/picket, securitycraft:reinforced/dirt, farmersdelight:wild_crops, forge:storage_blocks/redstone, sereneseasons:winter_crops, forge:glass_panes/blue, minecraft:stairs, sereneseasons:unbreakable_infertile_crops, minecraft:logs, forge:plushie, securitycraft:reinforced/planks, forge:stone, minecraft:valid_spawn, dynamictrees:foliage, minecraft:mushroom_grow_block, mcwbridges:bamboo_bridges, minecraft:wooden_doors, minecraft:standing_signs, minecraft:infiniburn_end, dynamictrees:stripped_branches, otg:stone, securitycraft:reinforced/end_stones, forge:glass_panes/yellow, sereneseasons:autumn_crops, forge:glass/purple, minecraft:crimson_stems, securitycraft:reinforced/stairs, biomesoplenty:cherry_logs, minecraft:wart_blocks, farmersdelight:heat_conductors, minecraft:beacon_base_blocks, securitycraft:secret_wall_signs, minecraft:shulker_boxes, dynamictrees:stripped_branches_that_burn, securitycraft:secret_signs, minecraft:anvil, otg:red_flower, minecraft:birch_logs, forge:sand, minecraft:wall_corals, securitycraft:reinforced/jungle_logs, create:fan_heaters, otg:long_grass, forge:glass_panes/purple, forge:glass/yellow, re8joymod:gra, mcwbridges:stone_bridges, dynamictrees:saplings, minecraft:oak_logs, forge:ores/gold, forge:barrels, minecraft:piglin_repellents, forge:ores/lapis, biomesoplenty:palm_logs, forge:glass/black, biomesoplenty:dead_logs, minecraft:portals, securitycraft:reinforced/slabs, securitycraft:reinforced/spruce_logs, forge:dirt, minecraft:bamboo_plantable_on, forge:fences/nether_brick, dynamictrees:leaves, forge:glass/lime, forge:chests/wooden, forge:ores/iron, minecraft:pressure_plates, create:windowable, minecraft:jungle_logs, hardcore_torches:free_torch_light_blocks, cfm:fences/hedge, dynamictrees:fungus_caps, forge:chests/ender, minecraft:wooden_stairs, minecraft:spruce_logs, securitycraft:reinforced/stone_bricks, minecraft:base_stone_overworld, minecraft:carpets, minecraft:wooden_buttons, biomesoplenty:umbran_logs, mcwbridges:bamboo_piers, forge:fence_gates/wooden, minecraft:stone_bricks, forge:storage_blocks/quartz, minecraft:mineable/axe, securitycraft:reinforced/birch_logs, forge:glass/orange, forge:glass_panes/lime, create:windmill_sails, otg:prismarine, securitycraft:reinforced/terracotta, sereneseasons:spring_crops, dynamictrees:fungus_branches, minecraft:slabs, dynamictrees:stripped_fungus_branches, minecraft:guarded_by_piglins, forge:ores/emerald, minecraft:corals, minecraft:buttons, minecraft:flowers, re8joymod:ebony_logs, mcwbridges:stone_stairs, minecraft:planks, forge:cobblestone, minecraft:rails, securitycraft:reinforced/buttons, forge:barrels/wooden, securitycraft:reinforced/acacia_logs, minecraft:strider_warm_blocks, forge:storage_blocks/gold, minecraft:fence_gates, mcwbridges:log_bridges, forge:ores, minecraft:bee_growables, minecraft:wooden_pressure_plates, mutantbeasts:mutant_enderman_holdable, create:brittle, minecraft:tall_flowers, biomesoplenty:redwood_logs, biomesoplenty:jacaranda_logs, forge:fences, minecraft:stone_pressure_plates, forge:storage_blocks/diamond, minecraft:nylium, minecraft:gold_ores, forge:glass_panes/pink, forge:netherrack, securitycraft:reinforced/carpets, securitycraft:reinforced/pressure_plates]
[03:52:15] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Preparing level "Demo_World_2"
[03:52:15] [Server thread/INFO] [net.Zrips.CMILib.CMILib/]: [CMILib] Enabling CMILib v1.3.1.2
[03:52:16] [Server thread/INFO] [/]: Server version: v1_16_R3 - 1.16.5 - spigot
[03:52:18] [Server thread/INFO] [/]: CMI hooked.
[03:52:18] [Server thread/INFO] [/]: Updated (EN) language file. Took 149ms
[03:52:18] [Server thread/INFO] [net.citizensnpcs.Citizens/]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2706)
[03:52:20] [Server thread/INFO] [com.denizenscript.denizen.Denizen/]: [Denizen] Enabling Denizen v1.2.5-SNAPSHOT (build 1776-REL)
[03:52:20] [Server thread/INFO] [/]: +> [DenizenCore] Initializing Denizen Core v1.90.1-SNAPSHOT (Build 1238), impl for Spigot v1.2.5-SNAPSHOT (build 1776-REL) 
[03:52:21] [Server thread/INFO] [/]: +> [Denizen] Running on java version: 17.0.7 
[03:52:21] [Server thread/INFO] [/]: +> [Denizen] Running on fully supported Java 17. 
[03:52:21] [Server thread/WARN] [com.denizenscript.denizen.Denizen/]: [Denizen] -------------------------------------
[03:52:21] [Server thread/WARN] [com.denizenscript.denizen.Denizen/]: [Denizen] This build of Denizen was built for a different Spigot revision! This may potentially cause issues. If you are experiencing trouble, update Denizen and Spigot both to latest builds! If this message appears with both Denizen and Spigot fully up-to-date, contact the Denizen team (via GitHub, Spigot, or Discord) to request an update be built.
[03:52:21] [Server thread/WARN] [com.denizenscript.denizen.Denizen/]: [Denizen] -------------------------------------
[03:52:21] [Server thread/INFO] [/]: [Denizen]+> [Denizen] +-------------------------+ 
[03:52:21] [Server thread/INFO] [/]: [Denizen]+> [Denizen]  Denizen  scriptable minecraft 
[03:52:21] [Server thread/INFO] [/]: [Denizen]+> [Denizen]  
[03:52:21] [Server thread/INFO] [/]: [Denizen]+> [Denizen] by: The DenizenScript team 
[03:52:21] [Server thread/INFO] [/]: [Denizen]+> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[03:52:21] [Server thread/INFO] [/]: [Denizen]+> [Denizen] Or learn more at: https://denizenscript.com 
[03:52:21] [Server thread/INFO] [/]: [Denizen]+> [Denizen] version: 1.2.5-SNAPSHOT (build 1776-REL) 
[03:52:21] [Server thread/INFO] [/]: [Denizen]+> [Denizen] +-------------------------+ 
[03:52:21] [Server thread/INFO] [/]: [Denizen] ERROR!
[03:52:21] [Server thread/INFO] [/]:                  Error Message: Null named player CraftOfflinePlayer[UUID=ac0f58c1-fb06-45fa-8747-ac24274879f8] - may be file corruption, or player data imported from 
[03:52:21] [Server thread/INFO] [/]:                  non-bukkit server? 
[03:52:22] [Server thread/INFO] [/]: [Denizen]+> [TriggerRegistry] Loaded 4 core triggers 
[03:52:24] [Server thread/INFO] [/]: [Denizen]+> [Denizen] Loaded 149 core commands and 28 core object types, at 3997ms from start. 
[03:52:24] [Server thread/INFO] [/]: [Denizen]+> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
[03:52:24] [Server thread/INFO] [/]: [Denizen]+> [ScriptRegistry] Loading 0 script files... 
[03:52:24] [Server thread/INFO] [/]: [Denizen]+> [Denizen] Final full init took 4110ms. 
[03:52:24] [Server thread/INFO] [com.Zrips.CMI.CMI/]: [CMI] Enabling CMI v9.5.0.9
[03:52:24] [Server thread/INFO] [/]: ????? ?????? ????
[03:52:24] [Server thread/INFO] [/]: ????? ? ?? ? ????
[03:52:24] [Server thread/INFO] [/]: ?? ?? ??????  ?? 
[03:52:24] [Server thread/INFO] [/]: ?? ?? ??????  ?? 
[03:52:24] [Server thread/INFO] [/]: ????? ?????? ????
[03:52:24] [Server thread/INFO] [/]: ????? ?????? ????
[03:52:24] [Server thread/INFO] [/]: _______________________________________________________
[03:52:24] [Server thread/INFO] [/]:   Citizens found.
[03:52:25] [Server thread/INFO] [/]:   58 Enabled and 0 Disabled modules
[03:52:25] [Server thread/INFO] [/]:   Initialized Cipher256 AES
[03:52:26] [Server thread/INFO] [/]:   Loaded (60) regular alias into memory. Took 76ms
[03:52:26] [Server thread/INFO] [/]:   Loaded (2) custom text's into memory. Took 8ms
[03:52:26] [Server thread/INFO] [/]:   3.34.0 data base type detected
[03:52:26] [Server thread/INFO] [/]:   Started SqLite data base. Took 202ms
[03:52:26] [Server thread/INFO] [/]:   Vault was not found, you will have limited economy support
[03:52:27] [Server thread/INFO] [/]:   Cant load Travel_SakuraTress hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load GachaFree hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load BlackSmith hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Bank hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ?????????????????? hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ??????????????KiKi hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Farm hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Welcome hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load food&health hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load SHOPPING hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Guide_Quest hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Freeitem1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ??????? hologram. (ResourceWorld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load eventIntro hologram. (eventworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load K1 hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ?????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load RWResetWarning hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Toprank1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ????????????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Guide_GotoQuest1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ??????????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ??????????????????????Onichan hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Top hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load TopDonate hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Furnitureshop1 hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load reward hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Shop_Normal hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ?????????????????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load WarpHarbour hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Guide_Quest_Guild hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ?Quests hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load LITTLE hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Magicshop1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Guide_OpenAudio hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ???????????? hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load FrogBank1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Ore hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ?????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load ???????????????? hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Petshop1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Warp_PlayerWarp hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Protstone1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Guide_Quest_Trade hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Medival hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load Help1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Cant load WYVERN hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:27] [Server thread/INFO] [/]:   Loaded (192) holograms into memory. Took 147ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (5) warning categories into memory. Took 3ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (3) warning commands into memory. Took 0ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (135) custom mob heads into memory. Took 18ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (0) cooldowns into memory. Took 58ms
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (world) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (world_nether) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (world_the_end) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (MainWorld) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (MainWorld_the_end) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (MainWorld_nether) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (ying_yang) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (ResourceWorld) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (HouseWorld) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (eventworld) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (houseworld) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (Parkour_piral) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (Fansion_Show) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (Muselk_Base_Upgraded) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (admin) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (Parkour_Spiral) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (PvP_Map) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (Demo_World_nether) name
[03:52:27] [Server thread/INFO] [/]:   (RandomTeleportation) Can't find world with (Demo_World_3) name
[03:52:27] [Server thread/INFO] [/]:   Initializing BungeeCord
[03:52:27] [Server thread/INFO] [/]:   Loaded (19) kits into memory. Took 56ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (7) ranks into memory. Took 35ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (4) saved items into memory. Took 4ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (8) playtime rewards into memory. Took 5ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (29) player data into memory. Took 35ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (0) playtime records into memory. Took 1ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (0) playtime reward records into memory. Took 0ms
[03:52:27] [Server thread/INFO] [/]:   Loaded (8) custom alias into memory. Took 2ms
[03:52:28] [Server thread/INFO] [/]:   Registered events. Took 190ms
[03:52:28] [Server thread/INFO] [/]:   Loaded (0) event action commands into memory. Took 4ms
[03:52:28] [Server thread/INFO] [/]:   Updated (EN) language file. Took 89ms
[03:52:28] [Server thread/WARN] [net.Zrips.CMILib.CMILib/]: [CMILib] Loaded class com.Zrips.CMI.Containers.Snd from CMI v9.5.0.9 which is not a depend, softdepend or loadbefore of this plugin.
[03:52:28] [Server thread/INFO] [/]:   Loaded (245) worth values into memory. Took 25ms
[03:52:28] [Server thread/INFO] [/]:   Loaded (199) warps into memory. Took 11ms
[03:52:28] [Server thread/INFO] [/]:   Starting world timer.
[03:52:28] [Server thread/INFO] [/]:   Initializing world manager.
[03:52:28] [Server thread/INFO] [/]:   Loaded (4) schedules into memory. Took 11ms
[03:52:28] [Server thread/INFO] [/]:   Loaded GeoIP
[03:52:28] [Server thread/INFO] [/]:   Cant load Travel_SakuraTress hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load GachaFree hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load BlackSmith hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Bank hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ?????????????????? hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ??????????????KiKi hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Farm hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Welcome hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load food&health hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load SHOPPING hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Guide_Quest hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Freeitem1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ??????? hologram. (ResourceWorld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load eventIntro hologram. (eventworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load K1 hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ?????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load RWResetWarning hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Toprank1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ????????????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Guide_GotoQuest1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ??????????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ??????????????????????Onichan hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Top hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load TopDonate hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Furnitureshop1 hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load reward hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Shop_Normal hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ?????????????????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load WarpHarbour hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Guide_Quest_Guild hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ?Quests hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load LITTLE hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Magicshop1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Guide_OpenAudio hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ???????????? hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load FrogBank1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Ore hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ?????????? hologram. (houseworld) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load ???????????????? hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Petshop1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Warp_PlayerWarp hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Protstone1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Guide_Quest_Trade hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Medival hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load Help1 hologram. (ying_yang) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Cant load WYVERN hologram. (Fansion_Show) is missing. We will try to load it later on, if that doesnt happen please report to the developer.
[03:52:28] [Server thread/INFO] [/]:   Loaded (192) holograms into memory. Took 47ms
[03:52:28] [Server thread/INFO] [/]:   Loaded (7) skin cache entries into memory. Took 1ms
[03:52:28] [Server thread/INFO] [/]:   Loaded (0) ArmorStand templates into memory. Took 1ms
[03:52:28] [Server thread/INFO] [/]:   Version 9.5.0.9 has been enabled
[03:52:28] [Server thread/INFO] [/]: ???????????????????????????????????????????????????????
[03:52:28] [Server thread/INFO] [Minecraft/]: Server permissions file permissions.yml is empty, ignoring it
[03:52:28] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld
[03:52:28] [Server thread/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0%
[03:52:28] [Netty Server IO #1/INFO] [net.minecraftforge.fml.server.ServerLifecycleHooks/SERVERHOOKS]: Disconnecting Player (server is still starting): Server is still starting! Please wait before reconnecting.
[03:52:29] [Server thread/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 39%
[03:52:30] [Server thread/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 100%
[03:52:30] [Server thread/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Time elapsed: 1,874 ms
[03:52:30] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Done (15.209s)! For help, type "help"
[03:52:30] [Server thread/INFO] [magistu.siegemachines.SiegeMachines/]: HELLO from server starting
[03:52:30] [Server thread/INFO] [/]: Performing a full config mod force sync
[03:52:30] [Server thread/INFO] [com.Imphuls3.createcafe.CreateCafe/]: HELLO from server starting
[03:52:30] [Server thread/WARN] [voicechat/]: Running in offline mode - Voice chat encryption is not secure!
[03:52:30] [Server thread/INFO] [voicechat/]: Using the Minecraft servers port as voice chat port
[03:52:30] [Server thread/WARN] [voicechat/]: Failed to dispatch event 'VoicechatServerStartedEventImpl'
java.lang.NoClassDefFoundError: com/sun/jna/Platform
    at de.maxhenkel.voicechat.plugins.impl.opus.OpusManager.useNatives(OpusManager.java:136) ~[voicechat:1.16.5-2.4.10]
    at de.maxhenkel.voicechat.plugins.impl.opus.OpusManager.createDecoder(OpusManager.java:126) ~[voicechat:1.16.5-2.4.10]
    at de.maxhenkel.voicechat.plugins.impl.VoicechatApiImpl.createDecoder(VoicechatApiImpl.java:51) ~[voicechat:1.16.5-2.4.10]
    at fr.flaton.walkietalkie.WalkieTalkieVoiceChatPlugin.onServerStarted(WalkieTalkieVoiceChatPlugin.java:45) ~[walkietalkie:?]
    at de.maxhenkel.voicechat.plugins.PluginManager.dispatchEvent(PluginManager.java:136) ~[voicechat:1.16.5-2.4.10]
    at de.maxhenkel.voicechat.plugins.PluginManager.onServerStarted(PluginManager.java:188) ~[voicechat:1.16.5-2.4.10]
    at de.maxhenkel.voicechat.voice.server.ServerVoiceEvents.serverStarting(ServerVoiceEvents.java:87) ~[voicechat:1.16.5-2.4.10]
    at de.maxhenkel.voicechat.intercompatibility.ForgeCommonCompatibilityManager.lambda$serverStarting$0(ForgeCommonCompatibilityManager.java:58) ~[voicechat:1.16.5-2.4.10]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at de.maxhenkel.voicechat.intercompatibility.ForgeCommonCompatibilityManager.serverStarting(ForgeCommonCompatibilityManager.java:58) ~[voicechat:1.16.5-2.4.10]
    at net.minecraftforge.eventbus.ASMEventHandler_1086_ForgeCommonCompatibilityManager_serverStarting_FMLServerStartedEvent.invoke(.dynamic) ~[?:?]
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:304) ~[mohist-1.16.5-122-server.jar:?]
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:284) ~[mohist-1.16.5-122-server.jar:?]
    at net.minecraftforge.fml.server.ServerLifecycleHooks.handleServerStarted(ServerLifecycleHooks.java:94) ~[forge:?]
    at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:769) ~[?:?]
    at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.sun.jna.Platform
    at java.lang.ClassLoader.findClass(ClassLoader.java:718) ~[?:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:117) ~[modlauncher-mohist-8.1.3.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 18 more
    Suppressed: java.lang.ClassNotFoundException
        at cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader.findClass(TransformingClassLoader.java:307) ~[modlauncher-mohist-8.1.3.jar:?]
        at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:160) ~[modlauncher-mohist-8.1.3.jar:?]
        at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:109) ~[modlauncher-mohist-8.1.3.jar:?]
        at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
        at de.maxhenkel.voicechat.plugins.impl.opus.OpusManager.useNatives(OpusManager.java:136) ~[voicechat:1.16.5-2.4.10]
        at de.maxhenkel.voicechat.plugins.impl.opus.OpusManager.createDecoder(OpusManager.java:126) ~[voicechat:1.16.5-2.4.10]
        at de.maxhenkel.voicechat.plugins.impl.VoicechatApiImpl.createDecoder(VoicechatApiImpl.java:51) ~[voicechat:1.16.5-2.4.10]
        at fr.flaton.walkietalkie.WalkieTalkieVoiceChatPlugin.onServerStarted(WalkieTalkieVoiceChatPlugin.java:45) ~[walkietalkie:?]
        at de.maxhenkel.voicechat.plugins.PluginManager.dispatchEvent(PluginManager.java:136) ~[voicechat:1.16.5-2.4.10]
        at de.maxhenkel.voicechat.plugins.PluginManager.onServerStarted(PluginManager.java:188) ~[voicechat:1.16.5-2.4.10]
        at de.maxhenkel.voicechat.voice.server.ServerVoiceEvents.serverStarting(ServerVoiceEvents.java:87) ~[voicechat:1.16.5-2.4.10]
        at de.maxhenkel.voicechat.intercompatibility.ForgeCommonCompatibilityManager.lambda$serverStarting$0(ForgeCommonCompatibilityManager.java:58) ~[voicechat:1.16.5-2.4.10]
        at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
        at de.maxhenkel.voicechat.intercompatibility.ForgeCommonCompatibilityManager.serverStarting(ForgeCommonCompatibilityManager.java:58) ~[voicechat:1.16.5-2.4.10]
        at net.minecraftforge.eventbus.ASMEventHandler_1086_ForgeCommonCompatibilityManager_serverStarting_FMLServerStartedEvent.invoke(.dynamic) ~[?:?]
        at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]
        at net.minecraftforge.eventbus.EventBus.post(EventBus.java:304) ~[mohist-1.16.5-122-server.jar:?]
        at net.minecraftforge.eventbus.EventBus.post(EventBus.java:284) ~[mohist-1.16.5-122-server.jar:?]
        at net.minecraftforge.fml.server.ServerLifecycleHooks.handleServerStarted(ServerLifecycleHooks.java:94) ~[forge:?]
        at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:769) ~[?:?]
        at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267) ~[?:?]
        at java.lang.Thread.run(Thread.java:833) ~[?:?]
[03:52:30] [VoiceChatServerThread/ERROR] [voicechat/]: Failed to bind to address 'systemdeveloper2.ddns.net', binding to wildcard IP instead
[03:52:30] [VoiceChatServerThread/INFO] [voicechat/]: Server started at port 25565
[03:52:30] [Craft Scheduler Thread - 1/INFO] [/]: New version of CMILib was detected. Please update it
[03:52:30] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 745.
[03:52:30] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 726.
[03:52:30] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 724.
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 585.
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 539.
[03:52:31] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 538.
[03:52:31] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 243.
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 397.
[03:52:31] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 391.
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:31] [Server thread/INFO] [tac/]: PENDING
[03:52:32] [Server thread/INFO] [tac/]: PENDING
[03:52:32] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 261.
[03:52:32] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 191.
[03:52:32] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 188.
[03:52:32] [Server thread/WARN] [/]: java.lang.NoClassDefFoundError: com/sk89q/worldguard/WorldGuard
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.getWorldGuardRegion(WanderWaypointProvider.java:288)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.onSpawn(WanderWaypointProvider.java:317)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.Waypoints.load(Waypoints.java:80)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.loadTraitFromKey(AbstractNPC.java:340)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.load(AbstractNPC.java:321)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:159)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520)
[03:52:32] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:90)
[03:52:32] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:461)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:1046)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:345)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:998)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:815)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267)
[03:52:32] [Server thread/WARN] [/]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:52:32] [Server thread/WARN] [/]: Caused by: java.lang.ClassNotFoundException: com.sk89q.worldguard.WorldGuard
[03:52:32] [Server thread/WARN] [/]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:178)
[03:52:32] [Server thread/WARN] [/]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:133)
[03:52:32] [Server thread/WARN] [/]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[03:52:32] [Server thread/WARN] [/]:     ... 16 more
[03:52:32] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 944.
[03:52:32] [Server thread/INFO] [tac/]: PENDING
[03:52:32] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 167.
[03:52:32] [Server thread/INFO] [tac/]: PENDING
[03:52:32] [Server thread/INFO] [tac/]: PENDING
[03:52:32] [Server thread/WARN] [/]: java.lang.NoClassDefFoundError: com/sk89q/worldguard/WorldGuard
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.getWorldGuardRegion(WanderWaypointProvider.java:288)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.onSpawn(WanderWaypointProvider.java:317)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.Waypoints.load(Waypoints.java:80)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.loadTraitFromKey(AbstractNPC.java:340)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.load(AbstractNPC.java:321)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:159)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[03:52:32] [Server thread/WARN] [/]:     at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520)
[03:52:32] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:90)
[03:52:32] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:461)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:1046)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:345)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:998)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:815)
[03:52:32] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267)
[03:52:32] [Server thread/WARN] [/]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:52:32] [Server thread/WARN] [/]: Caused by: java.lang.ClassNotFoundException: com.sk89q.worldguard.WorldGuard
[03:52:32] [Server thread/WARN] [/]:     ... 16 more
[03:52:32] [Server thread/INFO] [tac/]: PENDING
[03:52:32] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 63.
[03:52:32] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 33.
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 1,128.
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 1,127.
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 1,126.
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 1,125.
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait sentinel failed to load for NPC ID: 1,124.
[03:52:33] [Server thread/WARN] [/]: java.lang.NoClassDefFoundError: com/sk89q/worldguard/WorldGuard
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.getWorldGuardRegion(WanderWaypointProvider.java:288)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.onSpawn(WanderWaypointProvider.java:317)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.Waypoints.load(Waypoints.java:80)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.loadTraitFromKey(AbstractNPC.java:340)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.load(AbstractNPC.java:321)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:159)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:90)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:461)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:1046)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:345)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:998)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:815)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267)
[03:52:33] [Server thread/WARN] [/]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:52:33] [Server thread/WARN] [/]: Caused by: java.lang.ClassNotFoundException: com.sk89q.worldguard.WorldGuard
[03:52:33] [Server thread/WARN] [/]:     ... 16 more
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 1,201.
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 1,321.
[03:52:33] [Server thread/WARN] [/]: java.lang.NoClassDefFoundError: com/sk89q/worldguard/WorldGuard
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.getWorldGuardRegion(WanderWaypointProvider.java:288)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.onSpawn(WanderWaypointProvider.java:317)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.Waypoints.load(Waypoints.java:80)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.loadTraitFromKey(AbstractNPC.java:340)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.load(AbstractNPC.java:321)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:159)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:90)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:461)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:1046)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:345)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:998)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:815)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267)
[03:52:33] [Server thread/WARN] [/]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:52:33] [Server thread/WARN] [/]: Caused by: java.lang.ClassNotFoundException: com.sk89q.worldguard.WorldGuard
[03:52:33] [Server thread/WARN] [/]:     ... 16 more
[03:52:33] [Server thread/WARN] [/]: java.lang.NoClassDefFoundError: com/sk89q/worldguard/WorldGuard
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.getWorldGuardRegion(WanderWaypointProvider.java:288)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.onSpawn(WanderWaypointProvider.java:317)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.Waypoints.load(Waypoints.java:80)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.loadTraitFromKey(AbstractNPC.java:340)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.load(AbstractNPC.java:321)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:159)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:90)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:461)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:1046)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:345)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:998)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:815)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267)
[03:52:33] [Server thread/WARN] [/]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:52:33] [Server thread/WARN] [/]: Caused by: java.lang.ClassNotFoundException: com.sk89q.worldguard.WorldGuard
[03:52:33] [Server thread/WARN] [/]:     ... 16 more
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 1,320.
[03:52:33] [Server thread/WARN] [/]: java.lang.NoClassDefFoundError: com/sk89q/worldguard/WorldGuard
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.getWorldGuardRegion(WanderWaypointProvider.java:288)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.onSpawn(WanderWaypointProvider.java:317)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.Waypoints.load(Waypoints.java:80)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.loadTraitFromKey(AbstractNPC.java:340)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.load(AbstractNPC.java:321)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:159)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:90)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:461)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:1046)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:345)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:998)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:815)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267)
[03:52:33] [Server thread/WARN] [/]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:52:33] [Server thread/WARN] [/]: Caused by: java.lang.ClassNotFoundException: com.sk89q.worldguard.WorldGuard
[03:52:33] [Server thread/WARN] [/]:     ... 16 more
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/WARN] [/]: java.lang.NoClassDefFoundError: com/sk89q/worldguard/WorldGuard
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.getWorldGuardRegion(WanderWaypointProvider.java:288)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.WanderWaypointProvider.onSpawn(WanderWaypointProvider.java:317)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.trait.waypoint.Waypoints.load(Waypoints.java:80)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.loadTraitFromKey(AbstractNPC.java:340)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.AbstractNPC.load(AbstractNPC.java:321)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:159)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[03:52:33] [Server thread/WARN] [/]:     at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:520)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:90)
[03:52:33] [Server thread/WARN] [/]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:461)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:1046)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:345)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:998)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:815)
[03:52:33] [Server thread/WARN] [/]:     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:267)
[03:52:33] [Server thread/WARN] [/]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:52:33] [Server thread/WARN] [/]: Caused by: java.lang.ClassNotFoundException: com.sk89q.worldguard.WorldGuard
[03:52:33] [Server thread/WARN] [/]:     ... 16 more
[03:52:33] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 280.
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:33] [Server thread/INFO] [tac/]: PENDING
[03:52:34] [Server thread/INFO] [tac/]: PENDING
[03:52:34] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait npcdestinations failed to load for NPC ID: 1,972.
[03:52:34] [Server thread/ERROR] [Minecraft/]: [Citizens] The trait rotationtrait failed to load for NPC ID: 2,028.
[03:52:34] [Server thread/INFO] [tac/]: PENDING
[03:52:34] [Server thread/INFO] [tac/]: PENDING
[03:52:34] [Server thread/INFO] [tac/]: PENDING
[03:52:34] [Server thread/INFO] [tac/]: PENDING
[03:52:35] [Server thread/INFO] [Minecraft/]: [Citizens] Loaded 536 NPCs.
[03:52:35] [Server thread/INFO] [/]: [Denizen]+> [ScriptEvent] Processed 0 script event paths. 
[03:52:35] [Server thread/INFO] [/]: [Denizen]+> [Denizen] +-------------------------+ 
[03:52:35] [Server thread/INFO] [/]: [Denizen]+> [Denizen] Denizen fully loaded at: 2023/11/26 03:52:20 
[03:52:35] [Server thread/INFO] [tac/]: PENDING
[03:52:35] [Server thread/INFO] [tac/]: PENDING
[03:52:35] [Server thread/INFO] [tac/]: PENDING
[03:52:35] [Server thread/INFO] [tac/]: PENDING
[03:52:35] [Server thread/INFO] [tac/]: PENDING
[03:52:35] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Cant keep up! Is the server overloaded? Running {0}ms or {1} ticks behind
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:36] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/WARN] [net.minecraft.tileentity.TileEntity/]: Block entity invalid: hardcore_torches:torch_block_entity @ BlockPos{x=126, y=55, z=-645}
[03:52:37] [Server thread/WARN] [net.minecraft.tileentity.TileEntity/]: Block entity invalid: hardcore_torches:torch_block_entity @ BlockPos{x=125, y=55, z=-647}
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:37] [Server thread/INFO] [tac/]: PENDING
[03:52:40] [User Authenticator #1/INFO] [net.minecraft.network.login.ServerLoginNetHandler/]: UUID of player AI is bcf90626-6692-3b9b-b715-001507f6f4cc
[03:52:40] [Netty Server IO #3/INFO] [net.minecraftforge.fml.network.FMLHandshakeHandler/]: Client attempting to join with 87 mods : grapplemod, iv_tcp_v3, pamhc2trees, cgm, locks, jei, siegemachines, stealing_villagers, libraryferret, macrokey, accuratearmor, casinocraft, tac, lesraisinsadd, undead, totaldarkness, epicfight, clumps, configured, hiddennames, mightyarchitect, otg, mutantbeasts, lucky77, sophisticatedbackpacks, simpleplanes, mts, re8joymod, fpsreducer, carryon, forgehax, forge, dummmmmmy, konkrete, createcafe, dsurround, sndctrl, environs, mobeffects, sounddeviceoptions, scary_mobs_and_bosses, minecraft, sons_of_sins, mcwbridges, farmersdelight, mtsofficialpack, voicechat, toolbelt, citycars, biomesoplenty, pamhc2crops, creativecore, horror_elements_mod, eyesinthedarkness, subcraftica, pamhc2foodextended, goprone, plushies, flywheel, create, creategears, curios, pamhc2foodcore, moreplayermodels, hardcore_torches, flashlight, securitycraft, parcool, bettervillage, obfuscate, customnpcs, worldeditcuife3, worldedit, coroutil, cfm, architectury, walkietalkie, solcarrot, cloth-config, nefdecomod, blockyragecivil, simpleradio, dynamictrees, dtbop, playerrevive, geckolib3, createaddition
[03:52:43] [Server thread/INFO] [tac/]: PENDING
[03:52:43] [Server thread/INFO] [tac/]: PENDING
[03:52:43] [Server thread/WARN] [net.minecraft.tileentity.TileEntity/]: Block entity invalid: hardcore_torches:torch_block_entity @ BlockPos{x=128, y=55, z=-643}
[03:52:43] [Server thread/WARN] [net.minecraft.tileentity.TileEntity/]: Block entity invalid: hardcore_torches:torch_block_entity @ BlockPos{x=130, y=55, z=-646}
[03:52:45] [Server thread/INFO] [net.minecraft.server.management.PlayerList/]: AI[/127.0.0.1:61494] logged in with entity id 3,071 at (-2,013.902, 65.067, -1,297.456)
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [tac/]: PENDING
[03:52:46] [Server thread/INFO] [voicechat/]: Received secret request of AI (17)
[03:52:46] [Server thread/INFO] [voicechat/]: Sent secret to AI
[03:52:47] [Server thread/INFO] [tac/]: PENDING
[03:52:47] [Server thread/INFO] [tac/]: PENDING
[03:52:47] [Server thread/INFO] [tac/]: PENDING
[03:52:47] [Server thread/INFO] [tac/]: PENDING
[03:52:47] [Server thread/INFO] [tac/]: PENDING
[03:52:47] [Server thread/INFO] [tac/]: PENDING
[03:52:53] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: Successfully authenticated player bcf90626-6692-3b9b-b715-001507f6f4cc
[03:52:53] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: Successfully validated connection of player bcf90626-6692-3b9b-b715-001507f6f4cc
[03:52:54] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: Player AI (bcf90626-6692-3b9b-b715-001507f6f4cc) successfully connected to voice chat
[03:53:03] [Server thread/INFO] [tac/]: PENDING
[03:53:05] [Server thread/INFO] [tac/]: PENDING
[03:53:07] [Server thread/INFO] [tac/]: PENDING
[03:53:07] [Server thread/INFO] [tac/]: PENDING
[03:53:08] [Server thread/WARN] [net.minecraft.entity.EntityType/]: Skipping Entity with id 
[03:53:10] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID 8723e304-7699-4e88-91ac-e4b99966d394
[03:53:10] [Server thread/ERROR] [net.minecraft.server.MinecraftServer/]: Encountered an unexpected exception
[03:53:10] [Server thread/ERROR] [net.minecraft.server.MinecraftServer/]:     Cause of unexpected exception was
[03:53:10] [Server thread/ERROR] [net.minecraft.server.MinecraftServer/]: This crash report has been saved to: D:\Minecraft Server\Event 1.16.5\Event 1.16.5\Server 2\.\crash-reports\crash-2023-11-26_03.53.10-server.txt
[03:53:10] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server
[03:53:10] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players
[03:53:10] [Server thread/INFO] [net.minecraft.network.play.ServerPlayNetHandler/]: AI lost connection: Server System Shutdown
[03:53:10] [Server thread/INFO] [voicechat/]: Disconnecting client AI
[03:53:10] [Server thread/INFO] [com.rylinaux.plugman.PlugMan/]: [PlugManX] Disabling PlugManX v2.3.2
[03:53:10] [Server thread/INFO] [com.Zrips.CMI.CMI/]: [CMI] Disabling CMI v9.5.0.9
[03:53:10] [Server thread/INFO] [/]: [CMI] Closed db connections
[03:53:10] [Server thread/INFO] [com.denizenscript.denizen.Denizen/]: [Denizen] Disabling Denizen v1.2.5-SNAPSHOT (build 1776-REL)
[03:53:11] [Server thread/INFO] [com.denizenscript.denizen.Denizen/]: [Denizen]  v1.2.5-SNAPSHOT (build 1776-REL) disabled.
[03:53:11] [Server thread/INFO] [net.citizensnpcs.Citizens/]: [Citizens] Disabling Citizens v2.0.30-SNAPSHOT (build 2706)
[03:53:11] [Server thread/INFO] [net.Zrips.CMILib.CMILib/]: [CMILib] Disabling CMILib v1.3.1.2
[03:53:11] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds
[03:53:11] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[Demo_World]'/minecraft:overworld
[03:53:14] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (Demo_World_2): All chunks are saved
[03:53:14] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[DIM-1]'/minecraft:the_nether
[03:53:14] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[03:53:14] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[DIM1]'/minecraft:the_end
[03:53:14] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[03:53:14] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[re8_dimension]'/re8joymod:re8_dimension
[03:53:14] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (re8_dimension): All chunks are saved
[03:53:14] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (Demo_World_2): All chunks are saved
[03:53:14] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[03:53:14] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[03:53:14] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (re8_dimension): All chunks are saved