-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreenlog.0
6648 lines (6648 loc) · 155 KB
/
screenlog.0
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
[32m[10:25:24] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 37.0.68, --fml.mcVersion, 1.17.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20210706.113038]
[m[32m[10:25:24] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 9.0.7+91+master.8569cdf starting: java version 16.0.1 by Private Build
[m[32m[10:25:24] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.4 Source=union:/root/minecraft-server/libraries/org/spongepowered/mixin/0.8.4/mixin-0.8.4.jar%2318! Service=ModLauncher Env=SERVER
[m[1;31m[10:25:27] [main/ERROR] [mixin/]: Mixin config clumps.mixins.json does not specify "minVersion" property
[m[32m[10:25:27] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments []
[m[33m[10:25:28] [main/WARN] [mixin/]: Reference map 'croptopia.refmap.json' for croptopia.mixins.json could not be read. If this is a development environment you can ignore this message
[mSLF4J: No SLF4J providers were found.
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details.
[Serene Seasons Transformer]: Transforming m_47480_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)Z in net/minecraft/world/level/biome/Biome
[Serene Seasons Transformer]: Patched 1 calls
[Serene Seasons Transformer]: Transforming m_47519_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z in net/minecraft/world/level/biome/Biome
[Serene Seasons Transformer]: Successfully patched shouldSnow
[Serene Seasons Transformer]: Transforming m_46758_ (Lnet/minecraft/core/BlockPos;)Z in net/minecraft/world/level/Level
[Serene Seasons Transformer]: Successfully patched isRainingAt
[Serene Seasons Transformer]: Transforming m_8714_ (Lnet/minecraft/world/level/chunk/LevelChunk;I)V in net/minecraft/server/level/ServerLevel
[Serene Seasons Transformer]: Successfully patched tickChunk
[Serene Seasons Transformer]: Transforming m_8107_ ()V in net/minecraft/world/entity/animal/SnowGolem
[Serene Seasons Transformer]: Patched 2 calls
[Serene Seasons Transformer]: Transforming m_46758_ (Lnet/minecraft/core/BlockPos;)Z in net/minecraft/world/level/Level
[Serene Seasons Transformer]: Successfully patched isRainingAt
[Serene Seasons Transformer]: Transforming m_8714_ (Lnet/minecraft/world/level/chunk/LevelChunk;I)V in net/minecraft/server/level/ServerLevel
[Serene Seasons Transformer]: Successfully patched tickChunk
[10:25:35] [modloading-worker-2/INFO]: Here we go! Launching Dungeon Crawl 2.3.2...
[Mouse Tweaks] Disabled because not running on the client.
[10:25:35] [modloading-worker-2/INFO]: Forge mod loading, version 37.0.68, for MC 1.17.1 with MCP 20210706.113038
[10:25:35] [modloading-worker-2/INFO]: MinecraftForge v37.0.68 Initialized
[10:25:35] [modloading-worker-5/INFO]: loading json file and contents for paintings.
[10:25:35] [modloading-worker-5/INFO]: Copying Over Base Template to /paintings
[10:25:35] [modloading-worker-5/WARN]: ************************************
[10:25:35] [modloading-worker-5/WARN]: !*!*!*!*!
[10:25:35] [modloading-worker-5/ERROR]: A fatal error occurred reading the resource pack directory
[10:25:35] [modloading-worker-5/ERROR]: SKIPPING ENTIRE PROCESS
[10:25:35] [modloading-worker-5/WARN]: !*!*!*!*!
[10:25:35] [modloading-worker-5/WARN]: ************************************
[10:25:35] [modloading-worker-5/WARN]: java.nio.file.NoSuchFileException: ./resourcepacks
[10:25:35] [modloading-worker-5/INFO]: Started Reading all json files in /painting directory
[10:25:35] [modloading-worker-5/INFO]: ./paintings/paintings.json
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting abstract_blue , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting abstract_rainbow , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting abstract_red , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting abstract_sunset , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting arachnophobe , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting barn_owl , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting big_z , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting blue_bird , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting bluesclues , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting borgia , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting cane , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting cat_black , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting cat_gray , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting cat_orange , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting cat , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting colorful_squares , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting crest , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting danger_zone , 32 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting decorative_gun , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting exit_down , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting exit_up , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting exit_left , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting exit_right , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_bat , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_chicken , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_cow , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_creeper , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_dog , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_enderman , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_pig , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_pigman , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_silverfish , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_skeleton , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_squid , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting face_zombie , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting fishes , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting flowers , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting fruits , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting ghost , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting glowlamp , 32 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting glowstone_hourglass , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting iluvmc , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting link , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting mine_prosperity , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting no_trespassing_for_mobs , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting ocelot , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting penguin , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting pig_on_a_cliff , 32 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting pkmn_blue , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting pkmn_red , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting pkmn_green , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting plains_hut , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting portrait_2 , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting portrait , 32 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting prison , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting prosperity , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting rest , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting skeleton , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting sky , 32 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting skyblock , 32 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting snake , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting snow_landscape , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting subaraki , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting synth_city , 16 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting tapistry_a , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting tapistry_b , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting tapistry_purple , 16 x 32
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting torched , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting waterfall , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting whale , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting wheat_field , 32 x 16
[10:25:35] [modloading-worker-5/INFO]: Loaded json painting wolf_in_wheat , 32 x 16
[10:25:35] [modloading-worker-7/INFO]: Apple Trees Rev. Mod Loaded
[10:25:36] [modloading-worker-5/INFO]: Loaded 0 vertical slab support classes
[10:25:36] [modloading-worker-5/INFO]: Loaded 2 horizontal slab support classes
[10:25:36] [modloading-worker-5/INFO]: Loaded 0 container support classes
[10:25:36] [modloading-worker-1/INFO]: Additional Bars - Biomes o' Plenty Addon has successfully loaded!
[10:25:38] [main/INFO]: HELLO from Register Block
[10:25:39] [main/INFO]: AppleTreesRev: Blocks Registered.
[10:25:40] [main/INFO]: Potentially Dangerous alternative prefix `minecraft` for name `lantern`, expected `additionallanterns`. This could be a intended override, but in most cases indicates a broken mod.
[10:25:40] [main/INFO]: Armor Items registered.
[10:25:40] [main/INFO]: AppleTreesRev: Items Registered.
[10:25:40] [main/INFO]: AppleTreesRev: Global Loot Modifiers Registered.
[10:25:41] [main/INFO]: AppleTreesRev: Biomes Registered.
[10:25:41] [main/WARN]: Configuration file /root/minecraft-server/config/appletreesrev-common.toml is not correct. Correcting
[10:25:41] [main/WARN]: Incorrect key Apple Tree Generation.Locations was corrected from [sunflower_plains, flower_forest, forest, dark_forest, wooded_mountains] to its default, [sunflower_plains, flower_forest, forest, dark_forest, wooded_mountains].
[10:25:41] [main/WARN]: Incorrect key Apple Tree Generation.Chances was corrected from [16, 1, 6, 7, 12] to its default, [16, 1, 6, 7, 12].
[10:25:41] [main/WARN]: Incorrect key Golden Tree Generation.Locations was corrected from [] to its default, [].
[10:25:41] [main/WARN]: Incorrect key Golden Tree Generation.Chances was corrected from [] to its default, [].
[10:25:41] [main/WARN]: Incorrect key Emerald Tree Generation.Locations was corrected from [] to its default, [].
[10:25:41] [main/WARN]: Incorrect key Emerald Tree Generation.Chances was corrected from [] to its default, [].
[10:25:41] [main/WARN]: Configuration file /root/minecraft-server/config/hunterillager-common.toml is not correct. Correcting
[10:25:41] [main/WARN]: Incorrect key HunterIllager's Food Whitelist was corrected from [minecraft:apple, minecraft:cooked_beef, minecraft:cooked_chicken, minectaft:cooked_mutton, minecraft:cooked_porkchop, minecraft:beef, minecraft:chicken, minectaft:mutton, minecraft:porkchop] to its default, [minecraft:apple, minecraft:cooked_beef, minecraft:cooked_chicken, minectaft:cooked_mutton, minecraft:cooked_porkchop, minecraft:beef, minecraft:chicken, minectaft:mutton, minecraft:porkchop].
[33m[10:25:41] [Thread-0/WARN] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Configuration file /root/minecraft-server/config/hunterillager-common.toml is not correct. Correcting
[m[10:25:41] [modloading-worker-2/INFO]: Common Setup
[10:25:41] [modloading-worker-3/INFO]: HELLO FROM PREINIT
[10:25:41] [modloading-worker-6/INFO]: farsight_view mod initialized
[10:25:41] [modloading-worker-3/INFO]: DIRT BLOCK >> minecraft:dirt
[10:25:41] [modloading-worker-6/INFO]: Zooming chunks initiated!
[10:25:41] [modloading-worker-6/INFO]: Shields up!
[10:25:41] [modloading-worker-2/INFO]: Whitelisted Dimensions:
[10:25:41] [modloading-worker-2/INFO]: minecraft:overworld
[10:25:41] [modloading-worker-6/INFO]: Common: World Features Subscribed
[10:25:41] [modloading-worker-6/INFO]: Common: Crafting Conditions Registered.
[32m[10:25:41] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [goblintraders] Starting version check at https://mrcrayfish.com/modupdatejson?id=goblintraders
[m[10:25:41] [main/INFO]: Registering Structure Piece Types
[10:25:41] [modloading-worker-4/INFO]: Hello world from the MDK
[10:25:41] [modloading-worker-4/INFO]: Got IMC [Hello world]
[10:25:41] [modloading-worker-6/INFO]: Applying mega torch entity block list overrides...
[10:25:41] [modloading-worker-6/INFO]: Applying dread lamp entity block list overrides...
[10:25:41] [modloading-worker-7/INFO]: Start loading plugin at mcp.mobius.waila.addons.core.CorePlugin
[10:25:41] [modloading-worker-7/INFO]: Start loading plugin at de.maxhenkel.corpse.integration.waila.PluginCorpse
[10:25:41] [modloading-worker-7/INFO]: Start loading plugin at snownee.jade.VanillaPlugin
[32m[10:25:42] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [goblintraders] Found status: BETA Current: 1.6.3 Target: 1.6.3
[m[32m[10:25:42] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [goldenhopper] Starting version check at https://mrcrayfish.com/modupdatejson?id=goldenhopper
[m[32m[10:25:43] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [goldenhopper] Found status: BETA Current: 1.2.4 Target: 1.2.4
[m[32m[10:25:43] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [mcwpaintings] Starting version check at https://raw.githubusercontent.com/sketchmacaw/macawsmods/master/paintings.json
[m[32m[10:25:43] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [mcwpaintings] Found status: UP_TO_DATE Current: 1.0.2 Target: null
[m[32m[10:25:43] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [clumps] Starting version check at https://updates.blamejared.com/get?n=clumps&gv=1.17.1
[m[32m[10:25:43] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [clumps] Found status: BETA_OUTDATED Current: 7.0.7 Target: 7.0.10
[m[32m[10:25:43] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [controlling] Starting version check at https://updates.blamejared.com/get?n=controlling&gv=1.17.1
[m[32m[10:25:43] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [controlling] Found status: BETA_OUTDATED Current: 8.0.0.2 Target: 8.0.11
[m[32m[10:25:43] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [configured] Starting version check at https://mrcrayfish.com/modupdatejson?id=configured
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [configured] Found status: BETA_OUTDATED Current: 1.2.0 Target: 1.5.0
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [guardvillagers] Starting version check at https://raw.githubusercontent.com/seymourimadeit/guardvillagers/master/update.json
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [guardvillagers] Found status: OUTDATED Current: 1.3.3 Target: 1.3.4
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [additional_lights] Starting version check at https://gist.githubusercontent.com/mgen256/59abe85e7950f2319e7538afe2f910ba/raw
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [additional_lights] Found status: UP_TO_DATE Current: 2.1.4 Target: null
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [catalogue] Starting version check at https://mrcrayfish.com/modupdatejson?id=catalogue
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [catalogue] Found status: BETA_OUTDATED Current: 1.3.0 Target: 1.5.0
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [absentbydesign] Starting version check at https://raw.githubusercontent.com/Lothrazar/AbsentByDesign/trunk/1.16/update.json
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [absentbydesign] Found status: BETA Current: 1.17.1-1.5.0 Target: null
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forgottenrecipes] Starting version check at https://raw.githubusercontent.com/Affehund/ForgottenRecipes/master/update.json
[m[33m[10:25:44] [Forge Version Check/WARN] [ne.mi.fm.VersionChecker/]: Failed to process update information
java.io.FileNotFoundException: https://raw.githubusercontent.com/Affehund/ForgottenRecipes/master/update.json
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:78) ~[?:?] {}
at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:2035) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:2030) ~[?:?] {}
at java.security.AccessController.doPrivileged(AccessController.java:554) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:2029) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1597) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1577) ~[?:?] {}
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224) ~[?:?] {}
at net.minecraftforge.fml.VersionChecker$1.openUrlStream(VersionChecker.java:151) ~[fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:169) ~[fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
at java.lang.Iterable.forEach(Iterable.java:75) [?:?] {}
at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:119) [fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
Caused by: java.io.FileNotFoundException: https://raw.githubusercontent.com/Affehund/ForgottenRecipes/master/update.json
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1981) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1577) ~[?:?] {}
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:527) ~[?:?] {}
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:308) ~[?:?] {}
at net.minecraftforge.fml.VersionChecker$1.openUrlStream(VersionChecker.java:135) ~[fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
... 3 more
[m[32m[10:25:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [morezombietypesonan] Starting version check at https://github.com/989onan/morezombietypes/blob/main/updates.json
[m[33m[10:25:45] [Forge Version Check/WARN] [ne.mi.fm.VersionChecker/]: Failed to process update information
com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 7 column 1 path $
at com.google.gson.Gson.fromJson(Gson.java:899) ~[gson-2.8.0.jar%2321!:?] {}
at com.google.gson.Gson.fromJson(Gson.java:852) ~[gson-2.8.0.jar%2321!:?] {}
at com.google.gson.Gson.fromJson(Gson.java:801) ~[gson-2.8.0.jar%2321!:?] {}
at com.google.gson.Gson.fromJson(Gson.java:773) ~[gson-2.8.0.jar%2321!:?] {}
at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:177) ~[fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
at java.lang.Iterable.forEach(Iterable.java:75) [?:?] {}
at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:119) [fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 7 column 1 path $
at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:385) ~[gson-2.8.0.jar%2321!:?] {}
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183) ~[gson-2.8.0.jar%2321!:?] {}
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.0.jar%2321!:?] {}
at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar%2321!:?] {}
... 6 more
[m[32m[10:25:45] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [corpse] Starting version check at https://maxhenkel.de/update/corpse.json
[m[32m[10:25:45] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [corpse] Found status: OUTDATED Current: 1.17.1-1.0.0 Target: 1.17.1-1.0.5
[m[32m[10:25:45] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [mousetweaks] Starting version check at http://play.sourceruns.org/yalter/MouseTweaks/update.json
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [mousetweaks] Found status: BETA Current: 2.14 Target: null
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Found status: OUTDATED Current: 37.0.68 Target: 37.1.1
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [corail_woodcutter] Starting version check at https://raw.githubusercontent.com/Corail31/trash/master/update_woodcutter.json
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [corail_woodcutter] Found status: OUTDATED Current: 2.1.1 Target: 2.1.2
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [advancednetherite] Starting version check at https://raw.githubusercontent.com/Autovw/ModUpdates/master/advancednetherite/update.json
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [advancednetherite] Found status: BETA_OUTDATED Current: 1.7.0 Target: 1.9.0
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [villagertools] Starting version check at https://raw.githubusercontent.com/Lothrazar/VillagerTools/trunk/1.16/update.json
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [villagertools] Found status: BETA Current: 1.17.1-1.0.1 Target: null
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [doubleslabs] Starting version check at https://raw.githubusercontent.com/CJMinecraft01/DoubleSlabs/1.12.x/update.json
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [doubleslabs] Found status: UP_TO_DATE Current: 4.0.0 Target: null
[m[32m[10:25:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [cfm] Starting version check at https://mrcrayfish.com/modupdatejson?id=cfm
[m[32m[10:25:47] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [cfm] Found status: BETA Current: 7.0.0-pre25 Target: 7.0.0-pre25
[m[32m[10:25:47] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [voidtotem] Starting version check at https://raw.githubusercontent.com/Affehund/VoidTotem/master/update.json
[mbiomesoplenty:withered_abyss
minecraft:ice_spikes
minecraft:giant_tree_taiga
[33m[10:25:47] [Forge Version Check/WARN] [ne.mi.fm.VersionChecker/]: Failed to process update information
java.io.FileNotFoundException: https://raw.githubusercontent.com/Affehund/VoidTotem/master/update.json
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:78) ~[?:?] {}
at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:2035) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:2030) ~[?:?] {}
at java.security.AccessController.doPrivileged(AccessController.java:554) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:2029) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1597) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1577) ~[?:?] {}
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224) ~[?:?] {}
at net.minecraftforge.fml.VersionChecker$1.openUrlStream(VersionChecker.java:151) ~[fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:169) ~[fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
at java.lang.Iterable.forEach(Iterable.java:75) [?:?] {}
at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:119) [fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
Caused by: java.io.FileNotFoundException: https://raw.githubusercontent.com/Affehund/VoidTotem/master/update.json
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1981) ~[?:?] {}
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1577) ~[?:?] {}
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:527) ~[?:?] {}
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:308) ~[?:?] {}
at net.minecraftforge.fml.VersionChecker$1.openUrlStream(VersionChecker.java:135) ~[fmlcore-1.17.1-37.0.68.jar%23107!:?] {}
... 3 more
[mminecraft:modified_gravelly_mountains
biomesoplenty:dense_woodland
biomesoplenty:prairie
biomesoplenty:tundra
minecraft:giant_spruce_taiga
appletreesrev:apple_forest
minecraft:warm_ocean
biomesoplenty:deep_bayou
biomesoplenty:flower_meadow
biomesoplenty:ominous_mire
minecraft:mushroom_fields
minecraft:end_barrens
biomesoplenty:ominous_woods
biomesoplenty:volcanic_plains
biomesoplenty:fungal_jungle
minecraft:jungle
biomesoplenty:cherry_blossom_grove
biomesoplenty:wooded_scrubland
biomesoplenty:snowy_fir_clearing
[10:25:47] [main/INFO]: WOODED_MOUNTAINS Feature Subscribed
minecraft:wooded_mountains
minecraft:deep_ocean
minecraft:snowy_taiga_mountains
biomesoplenty:mystic_grove
biomesoplenty:woodland
minecraft:desert_lakes
minecraft:nether_wastes
biomesoplenty:origin_valley
biomesoplenty:fungal_field
biomesoplenty:fir_clearing
minecraft:snowy_mountains
biomesoplenty:rainforest
biomesoplenty:seasonal_forest
biomesoplenty:meadow_forest
minecraft:modified_wooded_badlands_plateau
biomesoplenty:bayou_mangrove
biomesoplenty:burnt_forest
biomesoplenty:lush_desert
minecraft:warped_forest
biomesoplenty:rainforest_cliffs
biomesoplenty:orchard
minecraft:beach
minecraft:deep_frozen_ocean
biomesoplenty:snowy_maple_forest
biomesoplenty:dunes
biomesoplenty:erupting_inferno
biomesoplenty:glowing_grotto
minecraft:birch_forest
biomesoplenty:crystalline_chasm
biomesoplenty:mystic_plains
biomesoplenty:snowy_coniferous_forest
minecraft:jungle_hills
biomesoplenty:tropics
biomesoplenty:bamboo_blossom_grove
biomesoplenty:highland_crag
minecraft:deep_warm_ocean
minecraft:tall_birch_forest
minecraft:modified_jungle_edge
minecraft:ocean
biomesoplenty:grove_clearing
biomesoplenty:lavender_forest
minecraft:river
biomesoplenty:coniferous_lakes
minecraft:the_end
minecraft:plains
minecraft:end_midlands
biomesoplenty:coniferous_forest
biomesoplenty:dryland
biomesoplenty:grassland
biomesoplenty:wasteland
minecraft:frozen_river
minecraft:small_end_islands
biomesoplenty:meadow
minecraft:jungle_edge
minecraft:desert_hills
biomesoplenty:tall_dead_forest
biomesoplenty:cold_desert
minecraft:snowy_taiga
minecraft:taiga_mountains
biomesoplenty:rainbow_hills
minecraft:snowy_beach
minecraft:wooded_badlands_plateau
minecraft:the_void
minecraft:tall_birch_hills
minecraft:birch_forest_hills
biomesoplenty:redwood_forest_edge
minecraft:end_highlands
biomesoplenty:spider_nest
biomesoplenty:wetland_forest
minecraft:crimson_forest
biomesoplenty:jade_cliffs
biomesoplenty:dry_boneyard
biomesoplenty:scrubland
biomesoplenty:dense_marsh
minecraft:badlands_plateau
minecraft:mountain_edge
minecraft:modified_jungle
biomesoplenty:rainforest_floodplain
biomesoplenty:marsh
biomesoplenty:lavender_field
biomesoplenty:grove_lakes
minecraft:dark_forest_hills
minecraft:dripstone_caves
[10:25:47] [main/INFO]: DARK_FOREST Feature Subscribed
minecraft:dark_forest
biomesoplenty:seasonal_orchard
minecraft:bamboo_jungle
biomesoplenty:highland_moor
biomesoplenty:visceral_heap
biomesoplenty:wetland
minecraft:giant_spruce_taiga_hills
minecraft:deep_lukewarm_ocean
minecraft:gravelly_mountains
minecraft:desert
minecraft:savanna
minecraft:basalt_deltas
minecraft:wooded_hills
biomesoplenty:redwood_forest
minecraft:snowy_taiga_hills
biomesoplenty:shroomy_wetland
minecraft:swamp_hills
minecraft:giant_tree_taiga_hills
biomesoplenty:seasonal_pumpkin_patch
minecraft:bamboo_jungle_hills
minecraft:mountains
[10:25:48] [main/INFO]: SUNFLOWER_PLAINS Feature Subscribed
minecraft:sunflower_plains
[10:25:48] [main/INFO]: FLOWER_FOREST Feature Subscribed
minecraft:flower_forest
biomesoplenty:tundra_bog
minecraft:shattered_savanna_plateau
minecraft:modified_badlands_plateau
biomesoplenty:grassland_clover_patch
biomesoplenty:alps
minecraft:stone_shore
biomesoplenty:alps_foothills
minecraft:shattered_savanna
minecraft:taiga_hills
minecraft:cold_ocean
minecraft:eroded_badlands
biomesoplenty:volcano
minecraft:lukewarm_ocean
biomesoplenty:shrubland
minecraft:savanna_plateau
biomesoplenty:lush_savanna
minecraft:lush_caves
minecraft:badlands
minecraft:soul_sand_valley
minecraft:deep_cold_ocean
[10:25:48] [main/INFO]: FOREST Feature Subscribed
minecraft:forest
minecraft:swamp
minecraft:snowy_tundra
biomesoplenty:muskeg
biomesoplenty:undergrowth
biomesoplenty:grove
biomesoplenty:bayou
minecraft:frozen_ocean
biomesoplenty:highland
biomesoplenty:golden_prairie
biomesoplenty:gravel_beach
biomesoplenty:tundra_basin
biomesoplenty:tropic_beach
minecraft:mushroom_field_shore
biomesoplenty:shrubland_hills
biomesoplenty:dead_forest
biomesoplenty:redwood_hills
minecraft:taiga
[32m[10:25:48] [main/INFO] [mojang/YggdrasilAuthenticationService]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[m[10:25:48] [main/WARN]: Assets URL 'union:/root/minecraft-server/libraries/net/minecraft/server/1.17.1-20210706.113038/server-1.17.1-20210706.113038-srg.jar%23106!/assets/.mcassetsroot' uses unexpected schema
[10:25:48] [main/WARN]: Assets URL 'union:/root/minecraft-server/libraries/net/minecraft/server/1.17.1-20210706.113038/server-1.17.1-20210706.113038-srg.jar%23106!/data/.mcassetsroot' uses unexpected schema
[10:25:49] [main/WARN]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[10:25:49] [main/WARN]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[10:25:49] [main/WARN]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[10:25:49] [main/WARN]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[10:25:49] [main/WARN]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[10:25:49] [main/WARN]: Ambiguity between arguments [deathhistory, player] and [deathhistory, player_uuid] with inputs: [dd12be42-52a9-4a91-a8a1-11c01849e498]
[10:25:49] [main/INFO]: Reloading ResourceManager: Default, doubledoors_1.17.1-2.4.jar, supermartijn642configlib-1.0.9-mc1.17.jar, torchslabmod-1.17.1_v1.7.1.jar, additionallanterns-1.0.0a-mc1.17.jar, treeharvester_1.17.1-3.2.jar, jei-1.17.1-8.0.0.16.jar, Floral Enchantment-1.17.1-1.0.2.jar, goblintraders-1.6.3-1.17.1.jar, bambooeverything-1.0.1.jar, goldenhopper-1.2.4-1.17.1.jar, villagernames_1.17.1-3.3.jar, mcw-paintings-1.0.2-mc1.17.1.jar, Clumps-forge-1.17.1-7.0.7.jar, JRFTL [1.17.1]-1.2.jar, Controlling-8.0.0.2.jar, NaturesCompass-1.17.1-1.9.2-forge.jar, 1.17.1-additionalbars-2.1.0.jar, SereneSeasons-1.17.1-5.0.0.7-universal.jar, configured-1.2.0-1.17.1.jar, DungeonCrawl-1.17.1-2.3.2.jar, Bigger-Caves-1.17.1-v1.0.jar, Nimble-1.17.1-1.0.0.jar, snowundertrees-1.17.1-1.1.5.jar, guardvillagers-1.17.1.1.3.3.jar, FullTurtleArmor-1.0-FORGE-MC1.17.1.jar, azalea-FORGE-1.0.0.jar, additional_lights-1.17.1-2.1.4.jar, farsight-1.17.1-1.5.jar, catalogue-1.3.0-1.17.1.jar, dynviewdist-2.2.jar, feders_scarecrows-1.1.jar, hyperion-Beta 0.3.2.jar, restored_earth-1.17.1-1.0.0.jar, cloth-config-5.0.38-forge.jar, absentbydesign-1.17.1-1.5.0.jar, forgottenrecipes-forge-1.17.1-1.0.3.jar, morezombietypesonan-1.0.0.jar, corpse-1.17.1-1.0.1.jar, glumbis-1.1.1.jar, logprot-1.4-1.17.1.jar, cleancut-mc1.17.1-3.0-forge.jar, torchmaster-3.0.1-beta.jar, morevillagers-FORGE-1.17.1-2.1.0.jar, AmbientSounds_v4.0.1_mc1.17.1.jar, MouseTweaks-2.14-mc1.17.1.jar, BiomesOPlenty-1.17.1-14.0.0.38-universal.jar, Jade-1.17.1-3.1.5.jar, forge-1.17.1-37.0.68-universal.jar, Waddles-1.17.1-0.8.16.jar, CreativeCore_v2.2.2_mc1.17.1.jar, supermartijn642corelib-1.0.12-mc1.17.jar, packedup-1.0.24-mc1.17.jar, volcanic_caverns-1.17.1-1.0.0.jar, ceilingtorch-1.17.1-v1.13.2.jar, spark-forge.jar, paintings-1.17.1-8.0.0.1.jar, corail_woodcutter-1.17.1-2.1.1.jar, Croptopia-1.17-FORGE-1.6.2.jar, collective-1.17.1-2.64.jar, AppleTreesRev-Forge-1.17.1-v2.4.jar, advancednetherite-1.7.0-1.17.1.jar, Snow_Pig-1.17.1-1.0.0.jar, sit-1.17.1-v1.3.1.jar, villagertools-1.17.1-1.0.1.jar, DoubleSlabs-1.17-4.0.0.jar, elevatorid-1.17.1-1.8.1.jar, Blocks + 1.17.1 - 1.1.jar, HunterIllager-1.17.1-2.4.0.jar, cfm-7.0.0pre25-1.17.1.jar, biomeinfo-1.17.1-v1.3.1.jar, cherishedworlds-forge-1.17.1-5.1.1.0.jar, Boiled Axolotl Mod v1 - 1.17.1.jar, Aquaculture-1.17.1-2.2.2.jar, TacticalFishing-1.17.1-v1.0.2.jar, enchantwithmob-1.17.1-2.4.0.jar, camping_craze_1.17.1-1.0.0.1.jar, additionalbarsbop-2.1.0.jar, GameMenuModOption-1.17.1-Forge-1.9.jar, voidtotem-forge-1.17.1-1.0.0.jar, geckolib-1.17.1-3.0.2.jar, xptome-1.17.1-v2.1.3.jar, BetterAdvancements-1.17.1-0.1.2.116.jar
[10:25:52] [Worker-Main-12/ERROR]: Parsing error loading recipe blocksplus:stripped_mushroom_hyphae
com.google.gson.JsonSyntaxException: Unknown item 'blocksplus:stripped_mushroom_stem'
at net.minecraft.world.item.crafting.ShapedRecipe.m_151280_(ShapedRecipe.java:276) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?]
at net.minecraft.world.item.crafting.ShapedRecipe.m_151278_(ShapedRecipe.java:275) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.item.crafting.Ingredient.m_43919_(Ingredient.java:208) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at net.minecraft.world.item.crafting.Ingredient.m_43917_(Ingredient.java:183) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.item.crafting.ShapedRecipe.m_44210_(ShapedRecipe.java:262) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.item.crafting.ShapedRecipe$Serializer.m_6729_(ShapedRecipe.java:289) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.item.crafting.ShapedRecipe$Serializer.m_6729_(ShapedRecipe.java:285) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.item.crafting.RecipeManager.m_44045_(RecipeManager.java:143) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.item.crafting.RecipeManager.m_5787_(RecipeManager.java:59) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.item.crafting.RecipeManager.m_5787_(RecipeManager.java:36) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10789_(SourceFile:13) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:722) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:722) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2143) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance$1.m_10855_(SourceFile:53) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance$1.m_6769_(SourceFile:50) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1146) [?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) [?:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1769) [?:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1756) [?:?]
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:295) [?:?]
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1016) [?:?]
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1665) [?:?]
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1598) [?:?]
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183) [?:?]
[10:25:53] [Worker-Main-12/INFO]: Loaded 10 recipes
[10:25:53] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/bastion_treasure
[10:25:53] [Worker-Main-12/ERROR]: Couldn't parse loot table snowpig:entities/mod_integration/frozen_ham_loot
com.google.gson.JsonSyntaxException: Unknown item tag 'farmersdelight:tools/knives'
at net.minecraft.advancements.critereon.ItemPredicate.m_45053_(ItemPredicate.java:143) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.tags.TagContainer.m_144458_(TagContainer.java:43) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.advancements.critereon.ItemPredicate.m_45051_(ItemPredicate.java:142) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.advancements.critereon.EntityEquipmentPredicate.m_32195_(SourceFile:76) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.advancements.critereon.EntityPredicate.m_36614_(SourceFile:194) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.predicates.LootItemEntityPropertyCondition$Serializer.m_7561_(SourceFile:64) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.predicates.LootItemEntityPropertyCondition$Serializer.m_7561_(SourceFile:55) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.GsonAdapterFactory$JsonAdapter.deserialize(SourceFile:102) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.ArrayTypeAdapter.read(ArrayTypeAdapter.java:72) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:952) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[gson-2.8.0.jar%2321!:?]
at net.minecraft.util.GsonHelper.m_13808_(SourceFile:440) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.GsonHelper.m_13845_(SourceFile:456) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.entries.LootPoolEntryContainer$Serializer.m_7561_(SourceFile:85) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.entries.LootPoolEntryContainer$Serializer.m_7561_(SourceFile:74) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.GsonAdapterFactory$JsonAdapter.deserialize(SourceFile:102) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.ArrayTypeAdapter.read(ArrayTypeAdapter.java:72) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:952) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[gson-2.8.0.jar%2321!:?]
at net.minecraft.util.GsonHelper.m_13808_(SourceFile:440) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.GsonHelper.m_13836_(SourceFile:448) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootPool$Serializer.deserialize(LootPool.java:195) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootPool$Serializer.deserialize(LootPool.java:192) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.ArrayTypeAdapter.read(ArrayTypeAdapter.java:72) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:952) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[gson-2.8.0.jar%2321!:?]
at net.minecraft.util.GsonHelper.m_13808_(SourceFile:440) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.GsonHelper.m_13845_(SourceFile:456) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootTable$Serializer.deserialize(LootTable.java:255) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootTable$Serializer.deserialize(LootTable.java:252) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:952) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:925) ~[gson-2.8.0.jar%2321!:?]
at net.minecraftforge.common.ForgeHooks.loadLootTable(ForgeHooks.java:803) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at net.minecraft.world.level.storage.loot.LootTables.lambda$apply$0(LootTables.java:41) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.HashMap.forEach(HashMap.java:1425) ~[?:?]
at net.minecraft.world.level.storage.loot.LootTables.m_5787_(LootTables.java:39) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootTables.m_5787_(LootTables.java:17) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10789_(SourceFile:13) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:722) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:722) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:722) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2143) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance$1.m_10855_(SourceFile:53) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance$1.m_6769_(SourceFile:50) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1146) [?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) [?:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1769) [?:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1756) [?:?]
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:295) [?:?]
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1016) [?:?]
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1665) [?:?]
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1598) [?:?]
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183) [?:?]
[10:25:54] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/bastion_hoglin_stable
[10:25:54] [Worker-Main-12/ERROR]: Couldn't parse loot table blocksplus:blocks/stripped_mushroom_stem
com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'blocksplus:stripped_mushroom_stem'
at net.minecraft.util.GsonHelper.m_13866_(SourceFile:127) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?]
at net.minecraft.util.GsonHelper.m_13874_(SourceFile:127) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.GsonHelper.m_13909_(SourceFile:135) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.entries.LootItem$Serializer.m_7267_(SourceFile:55) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.entries.LootItem$Serializer.m_7267_(SourceFile:40) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.entries.LootPoolSingletonContainer$Serializer.m_5921_(SourceFile:151) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.entries.LootPoolSingletonContainer$Serializer.m_5921_(SourceFile:129) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.entries.LootPoolEntryContainer$Serializer.m_7561_(SourceFile:86) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.entries.LootPoolEntryContainer$Serializer.m_7561_(SourceFile:74) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.GsonAdapterFactory$JsonAdapter.deserialize(SourceFile:102) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.ArrayTypeAdapter.read(ArrayTypeAdapter.java:72) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:952) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[gson-2.8.0.jar%2321!:?]
at net.minecraft.util.GsonHelper.m_13808_(SourceFile:440) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.GsonHelper.m_13836_(SourceFile:448) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootPool$Serializer.deserialize(LootPool.java:195) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootPool$Serializer.deserialize(LootPool.java:192) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.ArrayTypeAdapter.read(ArrayTypeAdapter.java:72) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:952) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[gson-2.8.0.jar%2321!:?]
at net.minecraft.util.GsonHelper.m_13808_(SourceFile:440) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.GsonHelper.m_13845_(SourceFile:456) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootTable$Serializer.deserialize(LootTable.java:255) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootTable$Serializer.deserialize(LootTable.java:252) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:952) ~[gson-2.8.0.jar%2321!:?]
at com.google.gson.Gson.fromJson(Gson.java:925) ~[gson-2.8.0.jar%2321!:?]
at net.minecraftforge.common.ForgeHooks.loadLootTable(ForgeHooks.java:803) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at net.minecraft.world.level.storage.loot.LootTables.lambda$apply$0(LootTables.java:41) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.HashMap.forEach(HashMap.java:1425) ~[?:?]
at net.minecraft.world.level.storage.loot.LootTables.m_5787_(LootTables.java:39) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.world.level.storage.loot.LootTables.m_5787_(LootTables.java:17) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10789_(SourceFile:13) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:722) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:722) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:722) ~[?:?]
at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SourceFile:71) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SourceFile:70) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:568) ~[?:?]
at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:710) ~[?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) ~[?:?]
at java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2143) ~[?:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance$1.m_10855_(SourceFile:53) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.packs.resources.SimpleReloadInstance$1.m_6769_(SourceFile:50) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1146) [?:?]
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506) [?:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1769) [?:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1756) [?:?]
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:295) [?:?]
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1016) [?:?]
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1665) [?:?]
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1598) [?:?]
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183) [?:?]
[10:25:54] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/jungle_temple
[10:25:54] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/simple_dungeon
[10:25:55] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/stronghold_crossing
[10:25:55] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/abandoned_mineshaft
[10:25:55] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/stronghold_corridor
[10:25:55] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/desert_pyramid
[10:25:55] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/bastion_bridge
[10:25:56] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/bastion_other
[10:25:56] [Worker-Main-12/INFO]: Event Fired - Modded Table: minecraft:chests/woodland_mansion
[10:25:56] [Worker-Main-12/INFO]: Loaded 2379 advancements
[10:25:56] [Worker-Main-12/INFO]: Loading data...
[10:25:57] [Worker-Main-12/INFO]: Done.
minecraft:badlands
minecraft:badlands_plateau
minecraft:bamboo_jungle
minecraft:bamboo_jungle_hills
minecraft:beach
minecraft:birch_forest
minecraft:birch_forest_hills
minecraft:cold_ocean
[10:26:00] [main/INFO]: DARK_FOREST Feature Subscribed
minecraft:dark_forest
minecraft:dark_forest_hills
minecraft:deep_cold_ocean
minecraft:deep_frozen_ocean
minecraft:deep_lukewarm_ocean
minecraft:deep_ocean
minecraft:deep_warm_ocean
minecraft:desert
minecraft:desert_hills
minecraft:desert_lakes
minecraft:eroded_badlands
[10:26:00] [main/INFO]: FLOWER_FOREST Feature Subscribed
minecraft:flower_forest
[10:26:00] [main/INFO]: FOREST Feature Subscribed
minecraft:forest
minecraft:frozen_ocean
minecraft:frozen_river
minecraft:giant_spruce_taiga
minecraft:giant_spruce_taiga_hills
minecraft:giant_tree_taiga
minecraft:giant_tree_taiga_hills
minecraft:gravelly_mountains
minecraft:ice_spikes
minecraft:jungle
minecraft:jungle_edge
minecraft:jungle_hills
minecraft:lukewarm_ocean
minecraft:modified_badlands_plateau
minecraft:modified_gravelly_mountains
minecraft:modified_jungle
minecraft:modified_jungle_edge
minecraft:modified_wooded_badlands_plateau
minecraft:mountain_edge
minecraft:mountains
minecraft:mushroom_field_shore
minecraft:mushroom_fields
minecraft:ocean
minecraft:plains
minecraft:river
minecraft:savanna
minecraft:savanna_plateau
minecraft:shattered_savanna
minecraft:shattered_savanna_plateau
minecraft:snowy_beach
minecraft:snowy_mountains
minecraft:snowy_taiga
minecraft:snowy_taiga_hills
minecraft:snowy_taiga_mountains
minecraft:snowy_tundra
minecraft:stone_shore
[10:26:00] [main/INFO]: SUNFLOWER_PLAINS Feature Subscribed
minecraft:sunflower_plains
minecraft:swamp
minecraft:swamp_hills
minecraft:taiga
minecraft:taiga_hills
minecraft:taiga_mountains
minecraft:tall_birch_forest
minecraft:tall_birch_hills
minecraft:warm_ocean
minecraft:wooded_badlands_plateau
minecraft:wooded_hills
[10:26:00] [main/INFO]: WOODED_MOUNTAINS Feature Subscribed
minecraft:wooded_mountains
[10:26:01] [main/INFO]: Injecting existing registry data into this CLIENT instance
[10:26:04] [Server thread/INFO]: Starting minecraft server version 1.17.1
[10:26:04] [Server thread/INFO]: Loading properties
[10:26:04] [Server thread/INFO]: Default game type: SURVIVAL
[10:26:04] [Server thread/INFO]: Generating keypair
[?1h=[?2004h> [10:26:04] [Server thread/INFO]: Starting Minecraft server on *:25565
[10:26:04] [Server thread/INFO]: Using epoll channel type
[10:26:04] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[10:26:04] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[10:26:04] [Server thread/WARN]: 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.
[10:26:04] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[10:26:04] [Server thread/INFO]: Preparing level "biomesoplenty"
[10:26:04] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:26:05] [Worker-Main-14/INFO]: Preparing spawn area: 0%
[10:26:05] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[10:26:05] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[10:26:06] [Worker-Main-12/INFO]: Preparing spawn area: 0%
[10:26:06] [Netty Epoll Server IO #1/INFO]: Disconnecting Player (server is still starting): Server is still starting! Please wait before reconnecting.
[10:26:06] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[10:26:07] [Netty Epoll Server IO #2/INFO]: Disconnecting Player (server is still starting): Server is still starting! Please wait before reconnecting.
[10:26:07] [Worker-Main-9/INFO]: Preparing spawn area: 0%
[10:26:07] [Netty Epoll Server IO #3/INFO]: Disconnecting Player (server is still starting): Server is still starting! Please wait before reconnecting.
[10:26:07] [Worker-Main-8/INFO]: Preparing spawn area: 3%
[10:26:08] [Netty Epoll Server IO #4/INFO]: Disconnecting Player (server is still starting): Server is still starting! Please wait before reconnecting.
[10:26:08] [Netty Epoll Server IO #5/INFO]: Disconnecting Player (server is still starting): Server is still starting! Please wait before reconnecting.
[10:26:10] [Worker-Main-10/INFO]: Preparing spawn area: 5%
[10:26:10] [Worker-Main-10/INFO]: Preparing spawn area: 5%
[10:26:10] [Worker-Main-10/INFO]: Preparing spawn area: 5%
[10:26:10] [Worker-Main-10/INFO]: Preparing spawn area: 5%
[10:26:10] [Worker-Main-10/INFO]: Preparing spawn area: 5%
[10:26:10] [Worker-Main-14/INFO]: Preparing spawn area: 24%
[10:26:11] [Worker-Main-13/INFO]: Preparing spawn area: 66%
[10:26:12] [Server thread/INFO]: Time elapsed: 7395 ms
[10:26:12] [Server thread/INFO]: Done (7.694s)! For help, type "help"
[10:26:12] [Server thread/INFO]: HELLO from server starting
[10:26:12] [Server thread/INFO]: 419 woodcutting recipes loaded
[10:26:25] [Server thread/INFO]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@43494433
[10:26:25] [Server thread/INFO]: Seenve[/5.129.83.73:55442] logged in with entity id 236 at (-75.30880468802843, 65.0, -63.30000001192093)
[10:26:25] [Server thread/INFO]: Seenve joined the game
[10:26:25] [Server thread/INFO]: Syncing config to Seenve (b11829a6-48c3-3c27-af2b-802788ecdd0f)
[10:26:42] [Server thread/INFO]: Mean tick: 18ms increasing chunk view distance to: 6
[10:27:12] [Server thread/INFO]: Mean tick: 13ms increasing chunk view distance to: 7
[10:27:42] [Server thread/INFO]: Mean tick: 12ms increasing chunk view distance to: 8
[10:28:12] [Server thread/INFO]: Mean tick: 11ms increasing chunk view distance to: 9
[10:28:13] [Server thread/INFO]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@48badebb
[10:28:13] [Server thread/INFO]: flameforever[/86.110.30.119:51965] logged in with entity id 441 at (-76.69999998807907, 65.0, -78.30000001192093)
[10:28:13] [Server thread/INFO]: flameforever joined the game
[10:28:13] [Server thread/INFO]: Syncing config to flameforever (0842b8fc-72e8-36f8-9adf-4ea08b3be6cb)
[10:28:42] [Server thread/INFO]: Mean tick: 13ms increasing chunk view distance to: 10
[10:29:12] [Server thread/INFO]: Mean tick: 13ms increasing chunk view distance to: 11
Clicked
Clicked
[10:29:33] [Server thread/INFO]: Seenve lost connection: Disconnected
[10:29:33] [Server thread/INFO]: Seenve left the game
[10:29:42] [Server thread/INFO]: Mean tick: 15ms increasing chunk view distance to: 12
[10:30:12] [Server thread/INFO]: Mean tick: 16ms increasing chunk view distance to: 13
[10:30:42] [Server thread/INFO]: Mean tick: 15ms increasing chunk view distance to: 14
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
[10:31:13] [Server thread/INFO]: Mean tick: 16ms increasing chunk view distance to: 15
[10:31:13] [Server thread/FATAL]: Error executing task on Server
java.lang.NullPointerException: Cannot invoke "java.util.function.Supplier.get()" because "this.lazyParentSupplier" is null
at net.minecraftforge.common.capabilities.CapabilityProvider.getCapabilities(CapabilityProvider.java:93) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at net.minecraftforge.common.capabilities.CapabilityProvider.getCapability(CapabilityProvider.java:188) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at net.minecraftforge.common.capabilities.ICapabilityProvider.getCapability(ICapabilityProvider.java:48) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at com.teammetallurgy.aquaculture.inventory.container.slot.SlotFishingRod.m_6654_(SlotFishingRod.java:28) ~[Aquaculture-1.17.1-2.2.2.jar%2332!:1.17.1-2.2.2]
at com.teammetallurgy.aquaculture.inventory.container.slot.SlotFishingRod.<init>(SlotFishingRod.java:17) ~[Aquaculture-1.17.1-2.2.2.jar%2332!:1.17.1-2.2.2]
at com.teammetallurgy.aquaculture.inventory.container.TackleBoxContainer.lambda$new$0(TackleBoxContainer.java:42) ~[Aquaculture-1.17.1-2.2.2.jar%2332!:1.17.1-2.2.2]
at net.minecraftforge.common.util.LazyOptional.ifPresent(LazyOptional.java:163) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at com.teammetallurgy.aquaculture.inventory.container.TackleBoxContainer.<init>(TackleBoxContainer.java:41) ~[Aquaculture-1.17.1-2.2.2.jar%2332!:1.17.1-2.2.2]
at com.teammetallurgy.aquaculture.block.tileentity.TackleBoxTileEntity.m_7208_(TackleBoxTileEntity.java:63) ~[Aquaculture-1.17.1-2.2.2.jar%2332!:1.17.1-2.2.2]
at net.minecraftforge.fmllegacy.network.NetworkHooks.openGui(NetworkHooks.java:226) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at net.minecraftforge.fmllegacy.network.NetworkHooks.openGui(NetworkHooks.java:192) ~[forge-1.17.1-37.0.68-universal.jar%23110!:?]
at com.teammetallurgy.aquaculture.block.TackleBoxBlock.m_6227_(TackleBoxBlock.java:103) ~[Aquaculture-1.17.1-2.2.2.jar%2332!:1.17.1-2.2.2]
at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.m_60664_(BlockBehaviour.java:653) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.level.ServerPlayerGameMode.m_7179_(ServerPlayerGameMode.java:335) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.network.ServerGamePacketListenerImpl.m_6371_(ServerGamePacketListenerImpl.java:971) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.m_5797_(SourceFile:30) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.m_5797_(SourceFile:8) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.network.protocol.PacketUtils.m_131356_(SourceFile:21) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.TickTask.run(SourceFile:18) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.thread.BlockableEventLoop.m_6367_(SourceFile:151) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(SourceFile:23) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.MinecraftServer.m_6367_(MinecraftServer.java:775) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.MinecraftServer.m_6367_(MinecraftServer.java:162) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.thread.BlockableEventLoop.m_7245_(SourceFile:125) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.MinecraftServer.m_129961_(MinecraftServer.java:758) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.MinecraftServer.m_7245_(MinecraftServer.java:752) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.util.thread.BlockableEventLoop.m_18699_(SourceFile:110) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.MinecraftServer.m_130012_(MinecraftServer.java:737) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:687) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at net.minecraft.server.MinecraftServer.m_177918_(MinecraftServer.java:258) ~[server-1.17.1-20210706.113038-srg.jar%23106!:?]
at java.lang.Thread.run(Thread.java:831) [?:?]
[10:31:42] [Server thread/INFO]: Mean tick: 18ms increasing chunk view distance to: 16
[10:32:12] [Server thread/INFO]: Mean tick: 17ms increasing chunk view distance to: 17
[10:32:42] [Server thread/INFO]: Mean tick: 21ms increasing chunk view distance to: 18
[10:32:51] [Server thread/INFO]: flameforever has made the advancement [Cover Me with Diamonds]
[10:33:12] [Server thread/INFO]: Mean tick: 21ms increasing chunk view distance to: 19
[10:33:42] [Server thread/INFO]: Mean tick: 24ms increasing chunk view distance to: 20
[10:34:55] [Server thread/INFO]: flameforever lost connection: Disconnected
[10:34:55] [Server thread/INFO]: flameforever left the game
[10:42:39] [Server thread/INFO]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@5ac43e5d
[10:42:39] [Server thread/INFO]: flameforever[/86.110.30.119:56654] logged in with entity id 2471 at (-73.85427783500381, 71.0, -72.78358860781293)
[10:42:39] [Server thread/INFO]: flameforever joined the game
[10:42:39] [Server thread/INFO]: Syncing config to flameforever (0842b8fc-72e8-36f8-9adf-4ea08b3be6cb)
Clicked
Clicked
[10:43:35] [Server thread/INFO]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@73723758
[10:43:35] [Server thread/INFO]: shadyysssss[/217.10.41.19:49583] logged in with entity id 3129 at (-1010.0828246149229, 62.49416756436517, -1826.2064034999066)
[10:43:35] [Server thread/INFO]: shadyysssss joined the game
[10:43:35] [Server thread/INFO]: Syncing config to shadyysssss (4a268843-5c89-393d-af21-8d7f07b9ceaa)
[10:43:57] [Server thread/INFO]: <flameforever> ???
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
[10:44:38] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2013ms or 40 ticks behind
[10:44:54] [Server thread/INFO]: <shadyysssss> xaero-waypoint:?????????:?:-1007:63:-1832:8:false:0:Internal-overworld-waypoints
[10:45:15] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2017ms or 40 ticks behind
[10:45:16] [Server thread/INFO]: Mean tick: 51ms decreasing chunk view distance to: 19
Clicked
[10:45:35] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2010ms or 40 ticks behind
Clicked
Clicked
[10:45:49] [Server thread/INFO]: Mean tick: 52ms decreasing chunk view distance to: 18
Clicked
Clicked
[10:45:53] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2357ms or 47 ticks behind
Clicked
[10:46:23] [Server thread/INFO]: Mean tick: 49ms decreasing chunk view distance to: 17
[10:46:23] [Server thread/WARN]: flameforever moved too quickly! -4.628786609264921,-1.1212968405392019,-9.003494672303646
[10:46:23] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2617ms or 52 ticks behind
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
Clicked
[10:51:15] [Server thread/INFO]: <flameforever> xaero-waypoint:?????? ???:?:-68:80:-75:13:false:0:Internal-overworld-waypoints
[10:51:28] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 4798ms or 95 ticks behind
[10:51:57] [Server thread/INFO]: Mean tick: 50ms decreasing chunk view distance to: 16
[10:52:27] [Server thread/INFO]: Mean tick: 41ms increasing chunk view distance to: 17
[10:53:05] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2001ms or 40 ticks behind
[10:53:46] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2010ms or 40 ticks behind
[10:54:03] [Server thread/INFO]: Mean tick: 50ms decreasing chunk view distance to: 16
[10:54:04] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2014ms or 40 ticks behind
[10:55:11] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2046ms or 40 ticks behind
[10:56:47] [Server thread/INFO]: Mean tick: 49ms decreasing chunk view distance to: 15
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.3804223519882726,0.0,10.307682297768338
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.4336538727015977,0.0,10.70412234172693
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.486888461771514,0.0,11.100562177311758
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.5401258123622483,0.0,11.497001825360257
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.593365648321651,0.0,11.893441304626094
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.6466077211127867,0.0,12.289880631987558
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.6998518070524824,0.0,12.686319822635141
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.7530977048259047,0.0,13.082758890240143
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.8063452332494307,0.0,13.479197847106775
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.859594229258164,0.0,13.875636704308931
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.9128445460935382,0.0,14.272075471813082
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -1.966096051672821,0.0,14.668514158589005
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.0193486271216443,0.0,15.064952772709603
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.072602165452963,0.0,15.461391321440374
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.125856570378346,0.0,15.857829811320244
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.1791117552386368,0.0,16.254268248234325
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.232367642040117,0.0,16.650706637479175
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.2856241605888954,0.0,17.047144983821795
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.3388812477101055,0.0,17.443583291552386
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.392138846546459,0.0,17.840021564532094
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.4453969059263727,0.0,18.2364598062361
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.4986553797955366,0.0,18.632898019791924
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.551914226705094,0.0,19.029336208014342
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.605173409350982,0.0,19.425774373436752
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.658432894159432,0.0,19.822212518339143
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.7116926509143013,0.0,20.21865064477356
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.764952652421016,0.0,20.615088754586736
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.818212874204164,0.0,21.01152684944077
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.871473294236239,0.0,21.407964930831668
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.924733892692302,0.0,21.804403000105708
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -2.9779946517298868,0.0,22.200841058474566
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.0312555552909544,0.0,22.597279107028726
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.0845165889231794,0.0,22.99371714674976
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.1377777396194233,0.0,23.3901551785209
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.191038995673125,0.0,23.78659320313716
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.244300346548698,0.0,24.183031221313968
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.2975617827637507,0.0,24.579469233695363
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.350823295784494,0.0,24.975907240860806
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.4040848779304724,0.0,25.372345243331893
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.457346522289072,0.0,25.76878324157815
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.5106082226388935,0.0,26.165221236022035
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.5638699733808608,0.0,26.56165922704372
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.617131769475918,0.0,26.958097214985514
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.669701084701046,0.0,27.354622096276785
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.720326899365091,0.0,27.751357008428386
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.7680136958374533,0.0,28.14836201066612
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.8119824674884057,0.0,28.545652703845462
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.8516387298091104,0.0,28.94321422793371
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.8865432504101136,0.0,29.341011862988353
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.9163892246886007,0.0,29.73899897561307
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.940977699236555,0.0,30.137122740256473
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.9601991655320035,0.0,30.535328260200345
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.9740207448710407,0.0,30.93356174745827
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.9824707898187626,0.0,31.331772438460234
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.985628828106428,0.0,31.729914083475705
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.9836088922893396,0.0,32.12794494598961
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.976559763354544,0.0,32.52582916932215
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.964649974019949,0.0,32.92353587199591
[10:56:47] [Server thread/WARN]: Boat (vehicle of shadyysssss) moved too quickly! -3.948065738565674,0.0,33.32103951820761