-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMC-FTB-Rev_3.4-Severe-Leak-RailCraft
5851 lines (5851 loc) · 834 KB
/
MC-FTB-Rev_3.4-Severe-Leak-RailCraft
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
2020-12-29T23:15:09.984830010Z [init] Running as uid=1000 gid=1000 with /data as 'drwxrwxr-x 19 1000 1000 4096 Dec 29 23:10 /data',
2020-12-29T23:15:10.049188176Z [init] Resolved version given LATEST into 1.16.4,
2020-12-29T23:15:10.049377993Z [init] Resolving type given FTBA,
2020-12-29T23:15:18.208257981Z [init] FTB modpack ID 35, version ID 174 is ready to go,
2020-12-29T23:15:18.264459372Z [init] server.properties already created, skipping,
2020-12-29T23:15:18.268239811Z [init] log4j2.xml already created, skipping,
2020-12-29T23:15:18.268273821Z [init] Checking for JSON files.,
2020-12-29T23:15:18.310237100Z [init] Setting initial memory to 4G and max to 10G,
2020-12-29T23:15:18.310920245Z [init] Starting the Minecraft server...,
2020-12-29T23:15:18.317803996Z OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=512M; support was removed in 8.0,
2020-12-29T23:15:20.476554484Z [23:15:20] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker,
2020-12-29T23:15:20.486335416Z [23:15:20] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker,
2020-12-29T23:15:20.486594552Z [23:15:20] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker,
2020-12-29T23:15:20.500218251Z [23:15:20] [main/INFO]: Forge Mod Loader version 14.23.5.2846 for Minecraft 1.12.2 loading,
2020-12-29T23:15:20.500473533Z [23:15:20] [main/INFO]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_275, running on Linux:amd64:4.19.0-13-amd64, installed at /usr/lib/jvm/java-8-openjdk-amd64/jre,
2020-12-29T23:15:20.939228080Z [23:15:20] [main/WARN]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed!,
2020-12-29T23:15:20.940764851Z [23:15:20] [main/WARN]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed!,
2020-12-29T23:15:20.951168128Z [23:15:20] [main/INFO]: Searching /data/./mods for mods,
2020-12-29T23:15:20.954054816Z [23:15:20] [main/INFO]: Searching /data/./mods/1.12.2 for mods,
2020-12-29T23:15:21.003269279Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in Aroma1997Core-1.12.2-2.0.0.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.011938179Z [23:15:21] [main/WARN]: The coremod aroma1997.core.coremod.CoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.044463960Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in astralsorcery-1.12.2-1.10.20.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.108971185Z [23:15:21] [main/WARN]: The coremod hellfirepvp.astralsorcery.core.AstralCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.109511687Z [23:15:21] [main/INFO]: [AstralCore] Initialized.,
2020-12-29T23:15:21.111466350Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in bedpatch-2.2-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.133509330Z [23:15:21] [main/INFO]: Loading tweaker codechicken.asm.internal.Tweaker from ChickenASM-1.12-1.0.2.7.jar,
2020-12-29T23:15:21.169135356Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in foamfix-0.10.5-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.174216496Z [23:15:21] [main/WARN]: The coremod pl.asie.foamfix.coremod.FoamFixCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.176350209Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in Forgelin-1.8.3.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.178054256Z [23:15:21] [main/WARN]: The coremod net.shadowfacts.forgelin.preloader.ForgelinPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.178154304Z [23:15:21] [main/WARN]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!,
2020-12-29T23:15:21.270096157Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.63.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.317861415Z [23:15:21] [main/WARN]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.322657423Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in Mekanism-1.12.2-9.8.3.390.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.324086810Z [23:15:21] [main/WARN]: The coremod mekanism.coremod.MekanismCoremod does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.324307732Z [23:15:21] [main/WARN]: The coremod MekanismCoremod (mekanism.coremod.MekanismCoremod) is not signed!,
2020-12-29T23:15:21.330895512Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in NotEnoughIDs-1.5.4.4.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.332013901Z [23:15:21] [main/WARN]: The coremod ru.fewizz.neid.asm.Plugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.335139343Z [23:15:21] [main/WARN]: The coremod Plugin (ru.fewizz.neid.asm.Plugin) is not signed!,
2020-12-29T23:15:21.352292699Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.12.2-1.7.5.192.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.356581443Z [23:15:21] [main/WARN]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.357082416Z [23:15:21] [main/WARN]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!,
2020-12-29T23:15:21.362364709Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in OpenModsLib-1.12.2-0.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.389545992Z [23:15:21] [main/WARN]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.400093481Z [23:15:21] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in Quark-r1.6-177.jar. This is not recommended, @Mods should be in a separate jar from the coremod.,
2020-12-29T23:15:21.401693710Z [23:15:21] [main/WARN]: The coremod Quark Plugin (vazkii.quark.base.asm.LoadingPlugin) is not signed!,
2020-12-29T23:15:21.434696955Z [23:15:21] [main/WARN]: The coremod com.therandomlabs.randompatches.core.RPCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.456182553Z [23:15:21] [main/WARN]: The coremod pl.asie.splashanimation.core.SplashAnimationCoremod does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.476902801Z [23:15:21] [main/WARN]: The coremod blusunrize.immersiveengineering.common.asm.IELoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.500918075Z [23:15:21] [main/WARN]: The coremod shetiphian.asm.TweakPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft,
2020-12-29T23:15:21.501243392Z [23:15:21] [main/WARN]: The coremod ShetiPhian-ASM (shetiphian.asm.TweakPlugin) is not signed!,
2020-12-29T23:15:21.533207832Z [23:15:21] [main/INFO]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from phosphor-forge-mc1.12.2-0.2.7-universal.jar,
2020-12-29T23:15:21.533992944Z [23:15:21] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker,
2020-12-29T23:15:21.535063154Z [23:15:21] [main/INFO]: Loading tweak class name codechicken.asm.internal.Tweaker,
2020-12-29T23:15:21.538855097Z [23:15:21] [main/INFO]: Loading tweak class name org.spongepowered.asm.launch.MixinTweaker,
2020-12-29T23:15:21.556600352Z [23:15:21] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8 Source=file:/data/./mods/phosphor-forge-mc1.12.2-0.2.7-universal.jar Service=LaunchWrapper Env=SERVER,
2020-12-29T23:15:21.587653871Z [23:15:21] [main/DEBUG]: Instantiating coremod class PhosphorFMLLoadingPlugin,
2020-12-29T23:15:21.588555701Z [23:15:21] [main/DEBUG]: The coremod me.jellysquid.mods.phosphor.core.PhosphorFMLLoadingPlugin requested minecraft version 1.12.2 and minecraft is 1.12.2. It will be loaded.,
2020-12-29T23:15:21.588768126Z [23:15:21] [main/WARN]: The coremod PhosphorFMLLoadingPlugin (me.jellysquid.mods.phosphor.core.PhosphorFMLLoadingPlugin) is not signed!,
2020-12-29T23:15:21.589016877Z [23:15:21] [main/DEBUG]: Enqueued coremod PhosphorFMLLoadingPlugin,
2020-12-29T23:15:21.599675455Z [23:15:21] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker,
2020-12-29T23:15:21.600520795Z [23:15:21] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker,
2020-12-29T23:15:21.602090073Z [23:15:21] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker,
2020-12-29T23:15:21.602273874Z [23:15:21] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:21.602567875Z [23:15:21] [main/DEBUG]: Injecting coremod FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\} class transformers,
2020-12-29T23:15:21.602784192Z [23:15:21] [main/TRACE]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer,
2020-12-29T23:15:21.646155278Z [23:15:21] [main/TRACE]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer,
2020-12-29T23:15:21.648969183Z [23:15:21] [main/TRACE]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer,
2020-12-29T23:15:21.655880144Z [23:15:21] [main/TRACE]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SoundEngineFixTransformer,
2020-12-29T23:15:21.658718951Z [23:15:21] [main/DEBUG]: Injection complete,
2020-12-29T23:15:21.659074670Z [23:15:21] [main/DEBUG]: Running coremod plugin for FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\},
2020-12-29T23:15:21.659286319Z [23:15:21] [main/DEBUG]: Running coremod plugin FMLCorePlugin,
2020-12-29T23:15:23.270394305Z [23:15:23] [main/ERROR]: FML appears to be missing any signature data. This is not a good thing,
2020-12-29T23:15:23.272107442Z [23:15:23] [main/DEBUG]: Coremod plugin class FMLCorePlugin run successfully,
2020-12-29T23:15:23.272131729Z [23:15:23] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:23.272138743Z [23:15:23] [main/DEBUG]: Injecting coremod FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\} class transformers,
2020-12-29T23:15:23.272144724Z [23:15:23] [main/DEBUG]: Injection complete,
2020-12-29T23:15:23.272150103Z [23:15:23] [main/DEBUG]: Running coremod plugin for FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\},
2020-12-29T23:15:23.272156736Z [23:15:23] [main/DEBUG]: Running coremod plugin FMLForgePlugin,
2020-12-29T23:15:23.272162058Z [23:15:23] [main/DEBUG]: Coremod plugin class FMLForgePlugin run successfully,
2020-12-29T23:15:23.272167250Z [23:15:23] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:23.272172714Z [23:15:23] [main/DEBUG]: Injecting coremod CoreMod \{aroma1997.core.coremod.CoreMod\} class transformers,
2020-12-29T23:15:23.272504704Z [23:15:23] [main/DEBUG]: Injection complete,
2020-12-29T23:15:23.272518131Z [23:15:23] [main/DEBUG]: Running coremod plugin for CoreMod \{aroma1997.core.coremod.CoreMod\},
2020-12-29T23:15:23.272870722Z [23:15:23] [main/DEBUG]: Running coremod plugin CoreMod,
2020-12-29T23:15:23.285600235Z [23:15:23] [main/INFO]: Finished data injection.,
2020-12-29T23:15:23.286009123Z [23:15:23] [main/INFO]: Finished data injection.,
2020-12-29T23:15:23.286361010Z [23:15:23] [main/DEBUG]: Coremod plugin class CoreMod run successfully,
2020-12-29T23:15:23.286614029Z [23:15:23] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:23.286913720Z [23:15:23] [main/DEBUG]: Injecting coremod ForgelinPlugin \{net.shadowfacts.forgelin.preloader.ForgelinPlugin\} class transformers,
2020-12-29T23:15:23.287165027Z [23:15:23] [main/DEBUG]: Injection complete,
2020-12-29T23:15:23.287453593Z [23:15:23] [main/DEBUG]: Running coremod plugin for ForgelinPlugin \{net.shadowfacts.forgelin.preloader.ForgelinPlugin\},
2020-12-29T23:15:23.287639764Z [23:15:23] [main/DEBUG]: Running coremod plugin ForgelinPlugin,
2020-12-29T23:15:23.294335467Z [23:15:23] [main/DEBUG]: Coremod plugin class ForgelinPlugin run successfully,
2020-12-29T23:15:23.294732368Z [23:15:23] [main/INFO]: Calling tweak class codechicken.asm.internal.Tweaker,
2020-12-29T23:15:23.295804975Z [23:15:23] [main/INFO]: [codechicken.asm.internal.Tweaker:injectIntoClassLoader:30]: false,
2020-12-29T23:15:23.296141587Z [23:15:23] [main/INFO]: Calling tweak class org.spongepowered.asm.launch.MixinTweaker,
2020-12-29T23:15:23.305025159Z [23:15:23] [main/INFO]: Initialised Mixin FML Remapper Adapter with net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper@5445f5ba,
2020-12-29T23:15:23.306480299Z [23:15:23] [main/DEBUG]: Injecting coremod PhosphorFMLLoadingPlugin \{me.jellysquid.mods.phosphor.core.PhosphorFMLLoadingPlugin\} class transformers,
2020-12-29T23:15:23.306681633Z [23:15:23] [main/DEBUG]: Injection complete,
2020-12-29T23:15:23.307001931Z [23:15:23] [main/DEBUG]: Running coremod plugin for PhosphorFMLLoadingPlugin \{me.jellysquid.mods.phosphor.core.PhosphorFMLLoadingPlugin\},
2020-12-29T23:15:23.307446714Z [23:15:23] [main/DEBUG]: Running coremod plugin PhosphorFMLLoadingPlugin,
2020-12-29T23:15:23.327436810Z [23:15:23] [main/INFO]: Compatibility level set to JAVA_8,
2020-12-29T23:15:23.328546251Z [23:15:23] [main/DEBUG]: Coremod plugin class PhosphorFMLLoadingPlugin run successfully,
2020-12-29T23:15:23.328749484Z [23:15:23] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:23.328941845Z [23:15:23] [main/DEBUG]: Injecting coremod OpenModsCorePlugin \{openmods.core.OpenModsCorePlugin\} class transformers,
2020-12-29T23:15:23.329104234Z [23:15:23] [main/TRACE]: Registering transformer openmods.core.OpenModsClassTransformer,
2020-12-29T23:15:23.402566219Z [23:15:23] [main/DEBUG]: Injection complete,
2020-12-29T23:15:23.402714037Z [23:15:23] [main/DEBUG]: Running coremod plugin for OpenModsCorePlugin \{openmods.core.OpenModsCorePlugin\},
2020-12-29T23:15:23.402857707Z [23:15:23] [main/DEBUG]: Running coremod plugin OpenModsCorePlugin,
2020-12-29T23:15:23.569888882Z [23:15:23] [main/DEBUG]: Coremod plugin class OpenModsCorePlugin run successfully,
2020-12-29T23:15:23.570078997Z [23:15:23] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker,
2020-12-29T23:15:23.587543698Z [23:15:23] [main/INFO]: [AstralTransformer] Loading patches...,
2020-12-29T23:15:23.816377719Z [23:15:23] [main/INFO]: [AstralTransformer] Initialized! Loaded 14 class patches!,
2020-12-29T23:15:23.876210670Z [23:15:23] [main/DEBUG]: Validating minecraft,
2020-12-29T23:15:24.039648810Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.042537965Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.117720297Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.127886661Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.158126379Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.162811379Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.248030715Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.250320575Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.266848939Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.271265943Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.271523847Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.282114503Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.410277303Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper,
2020-12-29T23:15:24.501294050Z [23:15:24] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker,
2020-12-29T23:15:24.502065190Z [23:15:24] [main/INFO]: Loading tweak class name org.spongepowered.asm.mixin.EnvironmentStateTweaker,
2020-12-29T23:15:24.502912316Z [23:15:24] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker,
2020-12-29T23:15:24.503949603Z [23:15:24] [main/INFO]: Calling tweak class org.spongepowered.asm.mixin.EnvironmentStateTweaker,
2020-12-29T23:15:24.649898377Z [23:15:24] [main/INFO]: Patching class: "net.minecraft.world.chunk.storage.AnvilChunkLoader" with Transformer Group: "TransformerGroupAnvilChunkLoader",
2020-12-29T23:15:24.658974764Z [23:15:24] [main/INFO]: A re-entrant transformer '$wrapper.ru.fewizz.neid.asm.Transformer' was detected and will no longer process meta class data,
2020-12-29T23:15:24.684809813Z [23:15:24] [main/INFO]: Patching Chunk,
2020-12-29T23:15:24.714384817Z [23:15:24] [main/INFO]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap,
12-29T23:15:24.714707751Z [23:15:24] [main/INFO]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap,
2020-12-29T23:15:24.716996840Z [23:15:24] [main/INFO]: A re-entrant transformer '$wrapper.pl.asie.foamfix.coremod.FoamFixTransformer' was detected and will no longer process meta class data,
2020-12-29T23:15:24.735367969Z [23:15:24] [main/INFO]: Transforming Class [net.minecraft.world.chunk.storage.ExtendedBlockStorage], Method [func_76663_a],
2020-12-29T23:15:24.735908928Z [23:15:24] [main/INFO]: Transforming net.minecraft.world.chunk.storage.ExtendedBlockStorage Finished.,
2020-12-29T23:15:24.784005926Z [23:15:24] [main/INFO]: [AstralTransformer] Transforming amu : net.minecraft.world.World with 2 patches!,
2020-12-29T23:15:24.784276354Z [23:15:24] [main/INFO]: [AstralTransformer] Skipping PATCHSUNBRIGHTNESSWORLDCLIENT as it can't be applied for side SERVER,
2020-12-29T23:15:24.784587560Z [23:15:24] [main/INFO]: [AstralTransformer] Applied patch PATCHSUNBRIGHTNESSWORLDCOMMON,
2020-12-29T23:15:24.884639540Z [23:15:24] [main/INFO]: [AstralTransformer] Transforming amu : net.minecraft.world.World with 2 patches!,
2020-12-29T23:15:24.884742494Z [23:15:24] [main/INFO]: [AstralTransformer] Skipping PATCHSUNBRIGHTNESSWORLDCLIENT as it can't be applied for side SERVER,
2020-12-29T23:15:24.885026675Z [23:15:24] [main/INFO]: [AstralTransformer] Applied patch PATCHSUNBRIGHTNESSWORLDCOMMON,
2020-12-29T23:15:24.904029192Z [23:15:24] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:124]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable,
2020-12-29T23:15:24.904318482Z [23:15:24] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:161]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities,
2020-12-29T23:15:25.033758114Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.patches.WorldServerRemovalPatch:apply:62]: Patched updateEntities in net/minecraft/world/WorldServer func_72939_s,
2020-12-29T23:15:25.035234699Z [23:15:25] [main/INFO]: Transforming net.minecraft.world.WorldServer,
2020-12-29T23:15:25.038477923Z [23:15:25] [main/INFO]: Applying Transformation to method (Names [areAllPlayersAsleep, func_73056_e] Descriptor ()Z),
2020-12-29T23:15:25.038800667Z [23:15:25] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:25.039149825Z [23:15:25] [main/INFO]: Patch result: true,
2020-12-29T23:15:25.039164453Z [23:15:25] [main/INFO]: Applying Transformation to method (Names [wakeAllPlayers, func_73053_d] Descriptor ()V),
2020-12-29T23:15:25.039454192Z [23:15:25] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:25.039488535Z [23:15:25] [main/INFO]: Patch result: true,
2020-12-29T23:15:25.147674895Z [23:15:25] [main/INFO]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase,
2020-12-29T23:15:25.175371730Z [23:15:25] [main/INFO]: [AstralTransformer] Transforming vp : net.minecraft.entity.EntityLivingBase with 4 patches!,
2020-12-29T23:15:25.175637131Z [23:15:25] [main/INFO]: [AstralTransformer] Applied patch PATCHAPPLYPOTIONEFFECTEVENT,
2020-12-29T23:15:25.176044285Z [23:15:25] [main/INFO]: [AstralTransformer] Applied patch PATCHENTITYLIVINGBASEWATERSLOWDOWN,
2020-12-29T23:15:25.176157441Z [23:15:25] [main/INFO]: [AstralTransformer] Applied patch PATCHSETPLAYERATTRIBUTE,
2020-12-29T23:15:25.176360926Z [23:15:25] [main/INFO]: [AstralTransformer] Applied patch PATCHUPDATEELYTRA,
2020-12-29T23:15:25.217416581Z [23:15:25] [main/INFO]: Transforming net.minecraft.entity.Entity,
2020-12-29T23:15:25.221480088Z [23:15:25] [main/INFO]: Applying Transformation to method (Names [move, func_70091_d] Descriptor (Lnet/minecraft/entity/MoverType;DDD)V),
2020-12-29T23:15:25.221823952Z [23:15:25] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:25.221836677Z [23:15:25] [main/INFO]: Patch result: true,
2020-12-29T23:15:25.221975090Z [23:15:25] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:25.223267709Z [23:15:25] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/Entity.func_145775_I ()V,
2020-12-29T23:15:25.223595884Z [23:15:25] [main/INFO]: Patch result: true,
2020-12-29T23:15:25.223811750Z [23:15:25] [main/INFO]: Applying Transformation to method (Names [onEntityUpdate, func_70030_z] Descriptor ()V),
2020-12-29T23:15:25.224026860Z [23:15:25] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:25.224253765Z [23:15:25] [main/INFO]: Patch result: true,
2020-12-29T23:15:25.235123303Z [23:15:25] [main/INFO]: Attempting: Injection of Run Particle Override into Entity.createRunningParticles,
2020-12-29T23:15:25.235395363Z [23:15:25] [main/INFO]: Searching for: Entity.createRunningParticles (func_174808_Z),
2020-12-29T23:15:25.235704544Z [23:15:25] [main/INFO]: Found Method: Entity.createRunningParticles,
2020-12-29T23:15:25.236040116Z [23:15:25] [main/INFO]: Injecting: Run Particle Override,
2020-12-29T23:15:25.266508849Z [23:15:25] [main/INFO]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer},
2020-12-29T23:15:25.351087611Z [23:15:25] [main/INFO]: Patching class: "net.minecraftforge.registries.GameData" with Transformer Group: "TransformerGroupBlockHardcoredConstants",
2020-12-29T23:15:25.484150314Z [23:15:25] [main/INFO]: Patching class: "net.minecraft.block.Block" with Transformer Group: "TransformerGroupBlockHardcoredConstants",
2020-12-29T23:15:25.624987088Z [23:15:25] [main/INFO]: Transforming net.minecraft.enchantment.Enchantment,
2020-12-29T23:15:25.626492016Z [23:15:25] [main/INFO]: Applying Transformation to method (Names [canApply, func_92089_a] Descriptor (Lnet/minecraft/item/ItemStack;)Z),
2020-12-29T23:15:25.626761598Z [23:15:25] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:25.627073898Z [23:15:25] [main/INFO]: Located patch target node IRETURN,
2020-12-29T23:15:25.627128044Z [23:15:25] [main/INFO]: Patch result: true,
2020-12-29T23:15:25.741713018Z [23:15:25] [main/INFO]: Transforming net.minecraft.entity.item.EntityItem,
2020-12-29T23:15:25.742926273Z [23:15:25] [main/INFO]: Applying Transformation to method (Names [onUpdate, func_70071_h_] Descriptor ()V),
2020-12-29T23:15:25.743440811Z [23:15:25] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:25.743456260Z [23:15:25] [main/INFO]: Patch result: true,
2020-12-29T23:15:25.818697824Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.state.BlockStateContainer.createState,
2020-12-29T23:15:25.869732834Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.equals,
2020-12-29T23:15:25.870772075Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.hashCode,
2020-12-29T23:15:25.871180930Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode,
2020-12-29T23:15:25.871592338Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode_calced,
2020-12-29T23:15:25.881713268Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyInteger.hashCode,
2020-12-29T23:15:25.882121781Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode,
2020-12-29T23:15:25.882614129Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode_calced,
2020-12-29T23:15:25.884996535Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.equals,
2020-12-29T23:15:25.885444425Z [23:15:25] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.hashCode,
2020-12-29T23:15:25.976012747Z [23:15:25] [main/INFO]: [AstralTransformer] Transforming aip : net.minecraft.item.ItemStack with 2 patches!,
2020-12-29T23:15:25.976545688Z [23:15:25] [main/INFO]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIP as it can't be applied for side SERVER,
2020-12-29T23:15:25.976557094Z [23:15:25] [main/INFO]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIPEVENT as it can't be applied for side SERVER,
2020-12-29T23:15:25.981315959Z [23:15:25] [main/INFO]: Transforming net.minecraft.item.ItemStack,
2020-12-29T23:15:25.983589369Z [23:15:25] [main/INFO]: Applying Transformation to method (Names [getTextComponent, func_151000_E] Descriptor ()Lnet/minecraft/util/text/ITextComponent;),
2020-12-29T23:15:25.983802448Z [23:15:25] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:25.984102179Z [23:15:25] [main/INFO]: Located patch target node ARETURN,
2020-12-29T23:15:25.984286073Z [23:15:25] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.053292879Z [23:15:26] [main/INFO]: Transforming net.minecraft.block.BlockDynamicLiquid,
2020-12-29T23:15:26.054960322Z [23:15:26] [main/INFO]: Applying Transformation to method (Names [isBlocked, func_176372_g] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)Z),
2020-12-29T23:15:26.055578701Z [23:15:26] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:26.055608563Z [23:15:26] [main/INFO]: Located patch target node IRETURN,
2020-12-29T23:15:26.055615946Z [23:15:26] [main/INFO]: Located patch target node IRETURN,
2020-12-29T23:15:26.055690973Z [23:15:26] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.156293217Z [23:15:26] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a,
2020-12-29T23:15:26.190091283Z [23:15:26] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.BlockBed.func_189540_a,
2020-12-29T23:15:26.230005598Z [23:15:26] [main/INFO]: Transforming net.minecraft.block.BlockPistonBase,
2020-12-29T23:15:26.233994898Z [23:15:26] [main/INFO]: Applying Transformation to method (Names [canPush, func_185646_a] Descriptor (Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;ZLnet/minecraft/util/EnumFacing;)Z),
2020-12-29T23:15:26.234348468Z [23:15:26] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:26.234649966Z [23:15:26] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/block/Block.hasTileEntity (Lnet/minecraft/block/state/IBlockState;)Z,
2020-12-29T23:15:26.234662186Z [23:15:26] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.234668980Z [23:15:26] [main/INFO]: Applying Transformation to method (Names [doMove, func_176319_a] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)Z),
2020-12-29T23:15:26.234890502Z [23:15:26] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:26.234959293Z [23:15:26] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/block/state/BlockPistonStructureHelper.func_177254_c ()Ljava/util/List;,
2020-12-29T23:15:26.235367495Z [23:15:26] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.235380509Z [23:15:26] [main/INFO]: Applying Transformation to method (Names [doMove, func_176319_a] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)Z),
2020-12-29T23:15:26.235387724Z [23:15:26] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:26.235581093Z [23:15:26] [main/INFO]: Located patch target node INVOKESPECIAL net/minecraft/block/state/BlockPistonStructureHelper.<init> (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)V,
2020-12-29T23:15:26.235795953Z [23:15:26] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.235806366Z [23:15:26] [main/INFO]: Applying Transformation to method (Names [checkForMove, func_176316_e] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V),
2020-12-29T23:15:26.236140834Z [23:15:26] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:26.236153171Z [23:15:26] [main/INFO]: Located patch target node INVOKESPECIAL net/minecraft/block/state/BlockPistonStructureHelper.<init> (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)V,
2020-12-29T23:15:26.236380169Z [23:15:26] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.267697323Z [23:15:26] [main/INFO]: Transforming net.minecraft.tileentity.TileEntityPiston,
2020-12-29T23:15:26.270050386Z [23:15:26] [main/INFO]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V),
2020-12-29T23:15:26.270153141Z [23:15:26] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:26.270294477Z [23:15:26] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.272004616Z [23:15:26] [main/INFO]: Applying Transformation to method (Names [clearPistonTileEntity, func_145866_f] Descriptor ()V),
2020-12-29T23:15:26.272135246Z [23:15:26] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:26.272481811Z [23:15:26] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/world/World.func_180501_a (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)Z,
2020-12-29T23:15:26.272655063Z [23:15:26] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.274207146Z [23:15:26] [main/INFO]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V),
2020-12-29T23:15:26.274348306Z [23:15:26] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:26.274856773Z [23:15:26] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/world/World.func_180501_a (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)Z,
2020-12-29T23:15:26.274873064Z [23:15:26] [main/INFO]: Patch result: true,
2020-12-29T23:15:26.644736857Z [23:15:26] [main/INFO]: Successfully patched net/minecraft/entity/EntityLiving.recreateLeash.,
2020-12-29T23:15:26.876161930Z [23:15:26] [main/INFO]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper,,
29T23:15:26.876252976Z [23:15:26] [main/INFO]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper,
2020-12-29T23:15:27.055289126Z [23:15:27] [main/INFO]: Transforming net.minecraft.enchantment.EnchantmentDamage,
2020-12-29T23:15:27.056493031Z [23:15:27] [main/INFO]: Applying Transformation to method (Names [canApply, func_92089_a] Descriptor (Lnet/minecraft/item/ItemStack;)Z),
2020-12-29T23:15:27.056807550Z [23:15:27] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:27.057124798Z [23:15:27] [main/INFO]: Located patch target node IRETURN,
2020-12-29T23:15:27.057136952Z [23:15:27] [main/INFO]: Located patch target node IRETURN,
2020-12-29T23:15:27.057183125Z [23:15:27] [main/INFO]: Patch result: true,
2020-12-29T23:15:27.183409302Z [23:15:27] [main/INFO]: Transforming net.minecraft.entity.item.EntityMinecart,
2020-12-29T23:15:27.185517216Z [23:15:27] [main/INFO]: Applying Transformation to method (Names [killMinecart, func_94095_a] Descriptor (Lnet/minecraft/util/DamageSource;)V),
2020-12-29T23:15:27.185810885Z [23:15:27] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:27.186006135Z [23:15:27] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/item/EntityMinecart.func_70099_a (Lnet/minecraft/item/ItemStack;F)Lnet/minecraft/entity/item/EntityItem;,
2020-12-29T23:15:27.186074145Z [23:15:27] [main/INFO]: Patch result: true,
2020-12-29T23:15:27.208682499Z [23:15:27] [main/INFO]: Transforming net.minecraft.entity.item.EntityBoat,
2020-12-29T23:15:27.210296368Z [23:15:27] [main/INFO]: Applying Transformation to method (Names [attackEntityFrom, func_70097_a] Descriptor (Lnet/minecraft/util/DamageSource;F)Z),
2020-12-29T23:15:27.210391388Z [23:15:27] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:27.210784798Z [23:15:27] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/item/EntityBoat.func_145778_a (Lnet/minecraft/item/Item;IF)Lnet/minecraft/entity/item/EntityItem;,
2020-12-29T23:15:27.210868461Z [23:15:27] [main/INFO]: Patch result: true,
2020-12-29T23:15:27.359643918Z [23:15:27] [main/INFO]: Transforming net.minecraft.item.ItemBanner,
2020-12-29T23:15:27.361106261Z [23:15:27] [main/INFO]: Applying Transformation to method (Names [appendHoverTextFromTileEntityTag, func_185054_a] Descriptor (Lnet/minecraft/item/ItemStack;Ljava/util/List;)V),
2020-12-29T23:15:27.361217343Z [23:15:27] [main/INFO]: Failed to locate the method!,
2020-12-29T23:15:27.535148485Z [23:15:27] [main/INFO]: [AstralTransformer] Transforming wg : net.minecraft.entity.ai.attributes.AbstractAttributeMap with 1 patches!,
2020-12-29T23:15:27.535455710Z [23:15:27] [main/INFO]: [AstralTransformer] Applied patch PATCHADDPLAYERATTRIBUTE,
2020-12-29T23:15:27.561765770Z [23:15:27] [main/INFO]: Transforming net.minecraft.entity.ai.EntityAITarget,
2020-12-29T23:15:27.563029648Z [23:15:27] [main/INFO]: Applying Transformation to method (Names [isSuitableTarget, func_179445_a] Descriptor (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/entity/EntityLivingBase;ZZ)Z),
2020-12-29T23:15:27.563050486Z [23:15:27] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:27.563083188Z [23:15:27] [main/INFO]: Patch result: true,
2020-12-29T23:15:27.746813423Z [23:15:27] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:124]: Added INTERFACE: pl/asie/foamfix/api/IFoamFixMobSpawnerLogic,
2020-12-29T23:15:27.747004592Z [23:15:27] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.tileentity.MobSpawnerBaseLogic.func_98279_f,
2020-12-29T23:15:27.747300733Z [23:15:27] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCache,
2020-12-29T23:15:27.747435337Z [23:15:27] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCachePESize,
2020-12-29T23:15:27.747602917Z [23:15:27] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCacheTime,
2020-12-29T23:15:27.747788282Z [23:15:27] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCache,
2020-12-29T23:15:27.748114640Z [23:15:27] [main/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCacheTime,
2020-12-29T23:15:27.755150406Z [23:15:27] [main/INFO]: Transforming Class [net.minecraft.entity.ai.EntityAICreeperSwell], Method [func_75246_d],
2020-12-29T23:15:27.755505334Z [23:15:27] [main/INFO]: Transforming net.minecraft.entity.ai.EntityAICreeperSwell Finished.,
2020-12-29T23:15:27.949320873Z [23:15:27] [main/INFO]: Patching class: "net.minecraft.stats.StatList" with Transformer Group: "TransformerGroupBlockHardcoredConstants",
2020-12-29T23:15:28.202950902Z [23:15:28] [main/INFO]: Transforming net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern,
2020-12-29T23:15:28.204371054Z [23:15:28] [main/INFO]: Applying Transformation to method (Names [matches, func_77569_a] Descriptor (Lnet/minecraft/inventory/InventoryCrafting;Lnet/minecraft/world/World;)Z),
2020-12-29T23:15:28.204643199Z [23:15:28] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:28.204656863Z [23:15:28] [main/INFO]: Located patch target node INVOKESTATIC net/minecraft/tileentity/TileEntityBanner.func_175113_c (Lnet/minecraft/item/ItemStack;)I,
2020-12-29T23:15:28.204786474Z [23:15:28] [main/INFO]: Patch result: true,
2020-12-29T23:15:28.681034909Z [23:15:28] [main/INFO]: Transforming net.minecraft.inventory.ContainerMerchant,
2020-12-29T23:15:28.683014905Z [23:15:28] [main/INFO]: Applying Transformation to method (Names [transferStackInSlot, func_82846_b] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;I)Lnet/minecraft/item/ItemStack;),
2020-12-29T23:15:28.683076177Z [23:15:28] [main/INFO]: Located Method, patching...,
2020-12-29T23:15:28.683594875Z [23:15:28] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z,
2020-12-29T23:15:28.683796959Z [23:15:28] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z,
2020-12-29T23:15:28.683846864Z [23:15:28] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z,
2020-12-29T23:15:28.684087180Z [23:15:28] [main/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z,
2020-12-29T23:15:28.684423314Z [23:15:28] [main/INFO]: Patch result: true,
2020-12-29T23:15:28.706704251Z [23:15:28] [main/INFO]: Patching class: "net.minecraft.world.chunk.storage.AnvilChunkLoader" with Transformer Group: "TransformerGroupAnvilChunkLoader",
2020-12-29T23:15:28.783788163Z [23:15:28] [main/INFO]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b],
2020-12-29T23:15:28.783819733Z [23:15:28] [main/INFO]: Transforming net.minecraft.inventory.ContainerFurnace Finished.,
2020-12-29T23:15:29.016816680Z [23:15:29] [Server thread/INFO]: Starting minecraft server version 1.12.2,
2020-12-29T23:15:29.037895504Z [23:15:29] [Server thread/INFO]: MinecraftForge v14.23.5.2846 Initialized,
2020-12-29T23:15:29.055897458Z [23:15:29] [Server thread/INFO]: Starts to replace vanilla recipe ingredients with ore ingredients.,
2020-12-29T23:15:29.222237172Z [23:15:29] [Server thread/INFO]: Invalid recipe found with multiple oredict ingredients in the same ingredient...,
2020-12-29T23:15:29.431274909Z [23:15:29] [Server thread/INFO]: Replaced 1227 ore ingredients,
2020-12-29T23:15:29.618515044Z [23:15:29] [Server thread/INFO]: Searching /data/./mods for mods,
2020-12-29T23:15:29.620449792Z [23:15:29] [Server thread/INFO]: Searching /data/./mods/1.12.2 for mods,
2020-12-29T23:15:30.218854179Z [23:15:30] [Server thread/WARN]: Mod aroma1997core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.0.0.2,
2020-12-29T23:15:30.248038448Z [23:15:30] [Server thread/WARN]: Mod aroma1997sdimension is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.0.0.2.b89,
2020-12-29T23:15:30.660545531Z [23:15:30] [Server thread/WARN]: Mod betterbuilderswands is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 0.11.1,
2020-12-29T23:15:31.336718095Z [23:15:31] [Server thread/INFO]: Mod careerbees is missing the required element 'name'. Substituting careerbees,
2020-12-29T23:15:31.529704823Z [23:15:31] [Server thread/WARN]: Mod codechickenlib is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 3.2.3.357,
2020-12-29T23:15:31.666894960Z [23:15:31] [Server thread/WARN]: Mod compactsolars is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-5.0.18.341,
2020-12-29T23:15:31.761441669Z [23:15:31] [Server thread/WARN]: Mod cookingforblockheads is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 6.4.71,
2020-12-29T23:15:31.817337172Z [23:15:31] [Server thread/INFO]: Disabling mod ctgui it is client side only.,
2020-12-29T23:15:32.617977581Z [23:15:32] [Server thread/WARN]: Mod enderstorage is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.4.6.137,
2020-12-29T23:15:32.634826817Z [23:15:32] [Server thread/WARN]: Mod engineersworkshop is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.9.40,
2020-12-29T23:15:33.245951272Z [23:15:33] [Server thread/WARN]: Mod microblockcbe is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.6.2.83,
2020-12-29T23:15:33.283640864Z [23:15:33] [Server thread/WARN]: Mod forgemultipartcbe is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.6.2.83,
2020-12-29T23:15:33.286369991Z [23:15:33] [Server thread/WARN]: Mod minecraftmultipartcbe is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.6.2.83,
2020-12-29T23:15:33.732623025Z [23:15:33] [Server thread/WARN]: Mod ironchest is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-7.0.67.844,
2020-12-29T23:15:33.859831976Z [23:15:33] [Server thread/WARN]: Mod magicbees is missing the required element 'version' and no fallback can be found. Substituting '1.0'.,
2020-12-29T23:15:34.034816516Z [23:15:34] [Server thread/WARN]: Mod mekanismgenerators is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-9.8.3.390,
2020-12-29T23:15:34.388346322Z [23:15:34] [Server thread/ERROR]: Unable to read a class file correctly,
2020-12-29T23:15:34.388389457Z java.lang.IllegalArgumentException: null,
2020-12-29T23:15:34.388396860Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.388403731Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.388410469Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.388417775Z at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:57) [ASMModParser.class:?],
2020-12-29T23:15:34.388428753Z at net.minecraftforge.fml.common.discovery.JarDiscoverer.findClassesASM(JarDiscoverer.java:102) [JarDiscoverer.class:?],
2020-12-29T23:15:34.388437801Z at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:77) [JarDiscoverer.class:?],
2020-12-29T23:15:34.388443981Z at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:47) [ContainerType.class:?],
2020-12-29T23:15:34.388450740Z at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:74) [ModCandidate.class:?],
2020-12-29T23:15:34.388458153Z at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:93) [ModDiscoverer.class:?],
2020-12-29T23:15:34.388464648Z at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427) [Loader.class:?],
2020-12-29T23:15:34.388470038Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:568) [Loader.class:?],
2020-12-29T23:15:34.388475923Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:34.388481399Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:34.388487212Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:34.388492858Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:34.388498975Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:34.394475025Z [23:15:34] [Server thread/ERROR]: There was a problem reading the entry module-info.class in the jar ./mods/MineTogether-1.12.2-2.4.1.jar - probably a corrupt zip,
2020-12-29T23:15:34.394500220Z net.minecraftforge.fml.common.LoaderException: java.lang.IllegalArgumentException,
2020-12-29T23:15:34.394507827Z ,
2020-12-29T23:15:34.394513528Z at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:63) ~[ASMModParser.class:?],
2020-12-29T23:15:34.394527606Z at net.minecraftforge.fml.common.discovery.JarDiscoverer.findClassesASM(JarDiscoverer.java:102) [JarDiscoverer.class:?],
2020-12-29T23:15:34.394533673Z at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:77) [JarDiscoverer.class:?],
2020-12-29T23:15:34.394539335Z at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:47) [ContainerType.class:?],
2020-12-29T23:15:34.394544942Z at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:74) [ModCandidate.class:?],
2020-12-29T23:15:34.394551182Z at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:93) [ModDiscoverer.class:?],
2020-12-29T23:15:34.394556728Z at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427) [Loader.class:?],
2020-12-29T23:15:34.394562222Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:568) [Loader.class:?],
2020-12-29T23:15:34.394567411Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:34.394573050Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:34.394578433Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:34.394583917Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:34.394590556Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:34.394596264Z Caused by: java.lang.IllegalArgumentException,
2020-12-29T23:15:34.394601950Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.394608864Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.394615363Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.394621631Z at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:57) ~[ASMModParser.class:?],
2020-12-29T23:15:34.394627558Z ... 12 more,
2020-12-29T23:15:34.395132492Z [23:15:34] [Server thread/WARN]: Zip file MineTogether-1.12.2-2.4.1.jar failed to read properly, it will be ignored,
2020-12-29T23:15:34.395147056Z net.minecraftforge.fml.common.LoaderException: java.lang.IllegalArgumentException,
2020-12-29T23:15:34.395155701Z ,
2020-12-29T23:15:34.395161473Z at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:63) ~[ASMModParser.class:?],
2020-12-29T23:15:34.395166071Z at net.minecraftforge.fml.common.discovery.JarDiscoverer.findClassesASM(JarDiscoverer.java:102) ~[JarDiscoverer.class:?],
2020-12-29T23:15:34.395171095Z at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:77) [JarDiscoverer.class:?],
2020-12-29T23:15:34.395184834Z at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:47) [ContainerType.class:?],
2020-12-29T23:15:34.395189463Z at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:74) [ModCandidate.class:?],
2020-12-29T23:15:34.395193320Z at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:93) [ModDiscoverer.class:?],
2020-12-29T23:15:34.395197118Z at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427) [Loader.class:?],
2020-12-29T23:15:34.395208674Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:568) [Loader.class:?],
2020-12-29T23:15:34.395220755Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:34.395224652Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:34.395228337Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:34.395232072Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:34.395235696Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:34.395239180Z Caused by: java.lang.IllegalArgumentException,
2020-12-29T23:15:34.395242650Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.395254299Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.395258013Z at org.objectweb.asm.ClassReader.<init>(Unknown Source) ~[asm-all-5.2.jar:5.2],
2020-12-29T23:15:34.395261592Z at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:57) ~[ASMModParser.class:?],
2020-12-29T23:15:34.395265239Z ... 12 more,
2020-12-29T23:15:34.449072210Z [23:15:34] [Server thread/WARN]: Mod mrtjpcore is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.1.4.43,
2020-12-29T23:15:35.048226829Z [23:15:35] [Server thread/WARN]: Mod patchouli is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0-20,
2020-12-29T23:15:35.065585005Z [23:15:35] [Server thread/WARN]: Mod projectred-core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:35.073447413Z [23:15:35] [Server thread/INFO]: Mod projectred-compat is missing the required element 'name'. Substituting projectred-compat,
2020-12-29T23:15:35.073638509Z [23:15:35] [Server thread/WARN]: Mod projectred-compat is missing the required element 'version' and no fallback can be found. Substituting '1.0'.,
2020-12-29T23:15:35.077371156Z [23:15:35] [Server thread/WARN]: Mod projectred-fabrication is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:35.110901596Z [23:15:35] [Server thread/WARN]: Mod projectred-integration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:35.111205444Z [23:15:35] [Server thread/WARN]: Mod projectred-transmission is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:35.133930244Z [23:15:35] [Server thread/WARN]: Mod projectred-illumination is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:35.140632593Z [23:15:35] [Server thread/WARN]: Mod projectred-expansion is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:35.140999586Z [23:15:35] [Server thread/WARN]: Mod projectred-relocation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:35.141307182Z [23:15:35] [Server thread/WARN]: Mod projectred-transportation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:35.266717597Z [23:15:35] [Server thread/WARN]: Mod projectred-exploration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120,
2020-12-29T23:15:36.640291484Z [23:15:36] [Server thread/WARN]: Mod tcinventoryscan is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.0.10,
2020-12-29T23:15:36.856072941Z [23:15:36] [Server thread/WARN]: Mod translocators is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.5.2.81,
2020-12-29T23:15:36.992780982Z [23:15:36] [Server thread/WARN]: Mod waystones is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.0.72,
2020-12-29T23:15:37.431189830Z [23:15:37] [Server thread/INFO]: Forge Mod Loader has identified 228 mods to load,
2020-12-29T23:15:37.458826369Z [23:15:37] [Server thread/WARN]: Missing English translation for FML: assets/fml/lang/en_us.lang,
2020-12-29T23:15:37.476615424Z [23:15:37] [Server thread/WARN]: Missing English translation for actuallybaubles: assets/actuallybaubles/lang/en_us.lang,
2020-12-29T23:15:37.479463771Z [23:15:37] [Server thread/WARN]: Missing English translation for appleskin: assets/appleskin/lang/en_us.lang,
2020-12-29T23:15:37.500628520Z [23:15:37] [Server thread/WARN]: Missing English translation for bedpatch: assets/bedpatch/lang/en_us.lang,
2020-12-29T23:15:37.555041222Z [23:15:37] [Server thread/WARN]: Missing English translation for buildcraftbuilders: assets/buildcraftbuilders/lang/en_us.lang,
2020-12-29T23:15:37.555675246Z [23:15:37] [Server thread/WARN]: Missing English translation for buildcraftcore: assets/buildcraftcore/lang/en_us.lang,
2020-12-29T23:15:37.556346080Z [23:15:37] [Server thread/WARN]: Missing English translation for buildcraftenergy: assets/buildcraftenergy/lang/en_us.lang,
2020-12-29T23:15:37.556999341Z [23:15:37] [Server thread/WARN]: Missing English translation for buildcraftfactory: assets/buildcraftfactory/lang/en_us.lang,
2020-12-29T23:15:37.558403560Z [23:15:37] [Server thread/WARN]: Missing English translation for buildcraftrobotics: assets/buildcraftrobotics/lang/en_us.lang,
2020-12-29T23:15:37.559045109Z [23:15:37] [Server thread/WARN]: Missing English translation for buildcraftsilicon: assets/buildcraftsilicon/lang/en_us.lang,
2020-12-29T23:15:37.559790808Z [23:15:37] [Server thread/WARN]: Missing English translation for buildcrafttransport: assets/buildcrafttransport/lang/en_us.lang,
2020-12-29T23:15:37.562087960Z [23:15:37] [Server thread/WARN]: Missing English translation for cctweaked: assets/cctweaked/lang/en_us.lang,
2020-12-29T23:15:37.564055105Z [23:15:37] [Server thread/WARN]: Missing English translation for chameleon: assets/chameleon/lang/en_us.lang,
2020-12-29T23:15:37.580171412Z [23:15:37] [Server thread/WARN]: Missing English translation for clumps: assets/clumps/lang/en_us.lang,
2020-12-29T23:15:37.580572385Z [23:15:37] [Server thread/WARN]: Missing English translation for codechickenlib: assets/codechickenlib/lang/en_us.lang,
2020-12-29T23:15:37.580785261Z [23:15:37] [Server thread/WARN]: Missing English translation for cofhcore: assets/cofhcore/lang/en_us.lang,
2020-12-29T23:15:37.586381064Z [23:15:37] [Server thread/WARN]: Missing English translation for crafttweaker: assets/crafttweaker/lang/en_us.lang,
2020-12-29T23:15:37.586763738Z [23:15:37] [Server thread/WARN]: Missing English translation for crafttweakerjei: assets/crafttweakerjei/lang/en_us.lang,
2020-12-29T23:15:37.590045944Z [23:15:37] [Server thread/WARN]: Missing English translation for diethopper: assets/diethopper/lang/en_us.lang,
2020-12-29T23:15:37.590317393Z [23:15:37] [Server thread/WARN]: Missing English translation for dirt2path: assets/dirt2path/lang/en_us.lang,
2020-12-29T23:15:37.596475915Z [23:15:37] [Server thread/WARN]: Missing English translation for dynmap: assets/dynmap/lang/en_us.lang,
2020-12-29T23:15:37.596867450Z [23:15:37] [Server thread/WARN]: Missing English translation for eleccoreloader: assets/eleccoreloader/lang/en_us.lang,
2020-12-29T23:15:37.615814793Z [23:15:37] [Server thread/WARN]: Missing English translation for enderiobase: assets/enderiobase/lang/en_us.lang,
2020-12-29T23:15:37.616588046Z [23:15:37] [Server thread/WARN]: Missing English translation for enderioconduitsappliedenergistics: assets/enderioconduitsappliedenergistics/lang/en_us.lang,
2020-12-29T23:15:37.617289830Z [23:15:37] [Server thread/WARN]: Missing English translation for enderioconduitsopencomputers: assets/enderioconduitsopencomputers/lang/en_us.lang,
2020-12-29T23:15:37.617914072Z [23:15:37] [Server thread/WARN]: Missing English translation for enderioconduitsrefinedstorage: assets/enderioconduitsrefinedstorage/lang/en_us.lang,
2020-12-29T23:15:37.618531210Z [23:15:37] [Server thread/WARN]: Missing English translation for enderioconduits: assets/enderioconduits/lang/en_us.lang,
2020-12-29T23:15:37.619171870Z [23:15:37] [Server thread/WARN]: Missing English translation for enderiointegrationforestry: assets/enderiointegrationforestry/lang/en_us.lang,
2020-12-29T23:15:37.619773406Z [23:15:37] [Server thread/WARN]: Missing English translation for enderiointegrationtic: assets/enderiointegrationtic/lang/en_us.lang,
2020-12-29T23:15:37.620473852Z [23:15:37] [Server thread/WARN]: Missing English translation for enderiointegrationticlate: assets/enderiointegrationticlate/lang/en_us.lang,
2020-12-29T23:15:37.621154372Z [23:15:37] [Server thread/WARN]: Missing English translation for enderiomachines: assets/enderiomachines/lang/en_us.lang,
2020-12-29T23:15:37.621753611Z [23:15:37] [Server thread/WARN]: Missing English translation for enderiopowertools: assets/enderiopowertools/lang/en_us.lang,
2020-12-29T23:15:37.632329007Z [23:15:37] [Server thread/WARN]: Missing English translation for fastbench: assets/fastbench/lang/en_us.lang,
2020-12-29T23:15:37.632555410Z [23:15:37] [Server thread/WARN]: Missing English translation for fencejumper: assets/fencejumper/lang/en_us.lang,
2020-12-29T23:15:37.634295654Z [23:15:37] [Server thread/WARN]: Missing English translation for foamfix: assets/foamfix/lang/en_us.lang,
2020-12-29T23:15:37.644029570Z [23:15:37] [Server thread/WARN]: Missing English translation for forgelin: assets/forgelin/lang/en_us.lang,
2020-12-29T23:15:37.644310355Z [23:15:37] [Server thread/WARN]: Missing English translation for microblockcbe: assets/microblockcbe/lang/en_us.lang,
2020-12-29T23:15:37.644669500Z [23:15:37] [Server thread/WARN]: Missing English translation for forgemultipartcbe: assets/forgemultipartcbe/lang/en_us.lang,
2020-12-29T23:15:37.644960735Z [23:15:37] [Server thread/WARN]: Missing English translation for minecraftmultipartcbe: assets/minecraftmultipartcbe/lang/en_us.lang,
2020-12-29T23:15:37.649017861Z [23:15:37] [Server thread/WARN]: Missing English translation for harvest: assets/harvest/lang/en_us.lang,
2020-12-29T23:15:37.650697521Z [23:15:37] [Server thread/WARN]: Missing English translation for ic2: assets/ic2/lang/en_us.lang,
2020-12-29T23:15:37.652659736Z [23:15:37] [Server thread/WARN]: Missing English translation for initialinventory: assets/initialinventory/lang/en_us.lang,
2020-12-29T23:15:37.657696189Z [23:15:37] [Server thread/WARN]: Missing English translation for oredictinit: assets/oredictinit/lang/en_us.lang,
2020-12-29T23:15:37.661378019Z [23:15:37] [Server thread/WARN]: Missing English translation for letsencryptcraft: assets/letsencryptcraft/lang/en_us.lang,
2020-12-29T23:15:37.664113706Z [23:15:37] [Server thread/WARN]: Missing English translation for mantle: assets/mantle/lang/en_us.lang,
2020-12-29T23:15:37.664312206Z [23:15:37] [Server thread/WARN]: Missing English translation for mcjtylib_ng: assets/mcjtylib_ng/lang/en_us.lang,
2020-12-29T23:15:37.664515037Z [23:15:37] [Server thread/WARN]: Missing English translation for mcmultipart: assets/mcmultipart/lang/en_us.lang,
2020-12-29T23:15:37.667901398Z [23:15:37] [Server thread/WARN]: Missing English translation for mekanismgenerators: assets/mekanismgenerators/lang/en_us.lang,
2020-12-29T23:15:37.670428446Z [23:15:37] [Server thread/WARN]: Missing English translation for modtweaker: assets/modtweaker/lang/en_us.lang,
2020-12-29T23:15:37.670915812Z [23:15:37] [Server thread/WARN]: Missing English translation for morpheus: assets/morpheus/lang/en_us.lang,
2020-12-29T23:15:37.671167018Z [23:15:37] [Server thread/WARN]: Missing English translation for mrtjpcore: assets/mrtjpcore/lang/en_us.lang,
2020-12-29T23:15:37.671431755Z [23:15:37] [Server thread/WARN]: Missing English translation for mtlib: assets/mtlib/lang/en_us.lang,
2020-12-29T23:15:37.673954571Z [23:15:37] [Server thread/WARN]: Missing English translation for neid: assets/neid/lang/en_us.lang,
2020-12-29T23:15:37.683846541Z [23:15:37] [Server thread/WARN]: Missing English translation for placebo: assets/placebo/lang/en_us.lang,
2020-12-29T23:15:37.684460297Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-core: assets/projectred-core/lang/en_us.lang,
2020-12-29T23:15:37.684701101Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-compat: assets/projectred-compat/lang/en_us.lang,
2020-12-29T23:15:37.684996502Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-fabrication: assets/projectred-fabrication/lang/en_us.lang,
2020-12-29T23:15:37.685294807Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-integration: assets/projectred-integration/lang/en_us.lang,
2020-12-29T23:15:37.685584016Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-transmission: assets/projectred-transmission/lang/en_us.lang,
2020-12-29T23:15:37.685874992Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-illumination: assets/projectred-illumination/lang/en_us.lang,
2020-12-29T23:15:37.686200330Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-expansion: assets/projectred-expansion/lang/en_us.lang,
2020-12-29T23:15:37.686593329Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-relocation: assets/projectred-relocation/lang/en_us.lang,
2020-12-29T23:15:37.686997670Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-transportation: assets/projectred-transportation/lang/en_us.lang,
2020-12-29T23:15:37.687243942Z [23:15:37] [Server thread/WARN]: Missing English translation for projectred-exploration: assets/projectred-exploration/lang/en_us.lang,
2020-12-29T23:15:37.690400816Z [23:15:37] [Server thread/WARN]: Missing English translation for quickleafdecay: assets/quickleafdecay/lang/en_us.lang,
2020-12-29T23:15:37.696656697Z [23:15:37] [Server thread/WARN]: Missing English translation for redstoneflux: assets/redstoneflux/lang/en_us.lang,
2020-12-29T23:15:37.710508392Z [23:15:37] [Server thread/WARN]: Missing English translation for teslacorelib_registries: assets/teslacorelib_registries/lang/en_us.lang,
2020-12-29T23:15:37.720317121Z [23:15:37] [Server thread/WARN]: Missing English translation for thutcore_compat: assets/thutcore_compat/lang/en_us.lang,
2020-12-29T23:15:37.727057767Z [23:15:37] [Server thread/WARN]: Missing English translation for unidict: assets/unidict/lang/en_us.lang,
2020-12-29T23:15:37.727360384Z [23:15:37] [Server thread/WARN]: Missing English translation for universalmodifiers: assets/universalmodifiers/lang/en_us.lang,
2020-12-29T23:15:37.729980302Z [23:15:37] [Server thread/WARN]: Missing English translation for wrapup: assets/wrapup/lang/en_us.lang,
2020-12-29T23:15:37.740333299Z [23:15:37] [Server thread/WARN]: Missing English translation for phosphor-lighting: assets/phosphor-lighting/lang/en_us.lang,
2020-12-29T23:15:37.821112466Z [23:15:37] [Server thread/INFO]: FML has found a non-mod file AutoSave-1.12.2-1.0.11.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.,
2020-12-29T23:15:37.821283466Z [23:15:37] [Server thread/INFO]: FML has found a non-mod file AutoConfig-1.12.2-1.0.2.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.,
F2020-12-29T23:15:39.819789747Z [23:15:39] [Server thread/INFO]: Attempting connection with missing mods [minecraft, mcp, FML, forge, openmodscore, foamfixcore, opencomputers|core, randompatches, actuallyadditions, actuallybaubles, advanced_machines, advanced_solar_panels, ae2wtlib, akashictome, appleskin, appliedenergistics2, architecturecraft, aroma1997core, aroma1997sdimension, astralsorcery, autoreglib, badwithernocookiereloaded, base, baubles, bdlib, bedpatch, betterbuilderswands, bibliocraft, binniecore, botany, binniedesign, extrabees, extratrees, genetics, biomesoplenty, blockcraftery, bloodmagic, bookshelf, botania, brandonscore, buildcraftcompat, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, careerbees, cctweaked, computercraft, chameleon, chesttransporter, chisel, chiselsandbits, clumps, codechickenlib, cofhcore, cofhworld, compactsolars, computronics, asielib, conarm, cookingforblockheads, crafttweaker, crafttweakerjei, danknull, darkutils, deepresonance, diethopper, dirt2path, draconicevolution, dynmap, eleccoreloader, eleccore, endercore, enderio, enderiobase, enderioconduitsappliedenergistics, enderioconduitsopencomputers, enderioconduitsrefinedstorage, enderioconduits, enderiointegrationforestry, enderiointegrationtic, enderiointegrationticlate, enderiomachines, enderiopowertools, enderstorage, energyconverters, engineersdoors, engineersworkshop, environmentaltech, etlunar, exchangers, extrautils2, bigreactors, fastbench, fencejumper, flatcoloredblocks, fluxnetworks, foamfix, forestry, forgelin, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, ftbbackups, ftbguides, ftblib, ftbutilities, gendustry, gravisuite, guideapi, harvest, immersivecables, immersivepetroleum, ic2, industrialforegoing, initialinventory, integrationforegoing, inventorytweaks, ironbackpacks, ironchest, jaopca, oredictinit, jei, jeibees, journeymap, letsencryptcraft, longfallboots, lostcities, magicbees, mantle, mcjtylib_ng, mcmultipart, mekanism, mekanismgenerators, minetogether, minetogetherserver, modtweaker, morphtool, morpheus, mrtjpcore, mtlib, mysticallib, natura, naturescompass, nice, neid, notenoughwands, openblocks, opencomputers, openmods, p455w0rdslib, harvestcraft, patchouli, placebo, platforms, projectred-core, projectred-compat, projectred-fabrication, projectred-integration, projectred-transmission, projectred-illumination, projectred-expansion, projectred-relocation, projectred-transportation, projectred-exploration, quark, quickleafdecay, railcraft, rangedpumps, reborncore, rebornstorage, redstonearsenal, redstoneflux, refinedstorage, refinedstorageaddons, xreliquary, rftools, rftoolscontrol, rftoolspower, rustic, shadowmc, simplevoidworld, simplyjetpacks, snad, sonarcore, soulshardsrespawn, stevescarts, storagedrawers, storagedrawersextra, tconstruct, teslacorelib, teslacorelib_registries, thaumcraft, tcinventoryscan, theoneprobe, thermalcultivation, thermaldynamics, thermalexpansion, thermalfoundation, thermalinnovation, thutcore_compat, thutcore, thuttech, tinkertoolleveling, topaddons, torchmaster, translocators, twilightforest, unidict, universalmodifiers, valkyrielib, wanionlib, waystones, wct, woot, wrapup, xnet, xtones, yabba, zerocore, immersiveengineering, shetiphiancore, industrialwires, phosphor-lighting] at CLIENT,
F2020-12-29T23:15:39.821364948Z [23:15:39] [Server thread/INFO]: Attempting connection with missing mods [minecraft, mcp, FML, forge, openmodscore, foamfixcore, opencomputers|core, randompatches, actuallyadditions, actuallybaubles, advanced_machines, advanced_solar_panels, ae2wtlib, akashictome, appleskin, appliedenergistics2, architecturecraft, aroma1997core, aroma1997sdimension, astralsorcery, autoreglib, badwithernocookiereloaded, base, baubles, bdlib, bedpatch, betterbuilderswands, bibliocraft, binniecore, botany, binniedesign, extrabees, extratrees, genetics, biomesoplenty, blockcraftery, bloodmagic, bookshelf, botania, brandonscore, buildcraftcompat, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, careerbees, cctweaked, computercraft, chameleon, chesttransporter, chisel, chiselsandbits, clumps, codechickenlib, cofhcore, cofhworld, compactsolars, computronics, asielib, conarm, cookingforblockheads, crafttweaker, crafttweakerjei, danknull, darkutils, deepresonance, diethopper, dirt2path, draconicevolution, dynmap, eleccoreloader, eleccore, endercore, enderio, enderiobase, enderioconduitsappliedenergistics, enderioconduitsopencomputers, enderioconduitsrefinedstorage, enderioconduits, enderiointegrationforestry, enderiointegrationtic, enderiointegrationticlate, enderiomachines, enderiopowertools, enderstorage, energyconverters, engineersdoors, engineersworkshop, environmentaltech, etlunar, exchangers, extrautils2, bigreactors, fastbench, fencejumper, flatcoloredblocks, fluxnetworks, foamfix, forestry, forgelin, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, ftbbackups, ftbguides, ftblib, ftbutilities, gendustry, gravisuite, guideapi, harvest, immersivecables, immersivepetroleum, ic2, industrialforegoing, initialinventory, integrationforegoing, inventorytweaks, ironbackpacks, ironchest, jaopca, oredictinit, jei, jeibees, journeymap, letsencryptcraft, longfallboots, lostcities, magicbees, mantle, mcjtylib_ng, mcmultipart, mekanism, mekanismgenerators, minetogether, minetogetherserver, modtweaker, morphtool, morpheus, mrtjpcore, mtlib, mysticallib, natura, naturescompass, nice, neid, notenoughwands, openblocks, opencomputers, openmods, p455w0rdslib, harvestcraft, patchouli, placebo, platforms, projectred-core, projectred-compat, projectred-fabrication, projectred-integration, projectred-transmission, projectred-illumination, projectred-expansion, projectred-relocation, projectred-transportation, projectred-exploration, quark, quickleafdecay, railcraft, rangedpumps, reborncore, rebornstorage, redstonearsenal, redstoneflux, refinedstorage, refinedstorageaddons, xreliquary, rftools, rftoolscontrol, rftoolspower, rustic, shadowmc, simplevoidworld, simplyjetpacks, snad, sonarcore, soulshardsrespawn, stevescarts, storagedrawers, storagedrawersextra, tconstruct, teslacorelib, teslacorelib_registries, thaumcraft, tcinventoryscan, theoneprobe, thermalcultivation, thermaldynamics, thermalexpansion, thermalfoundation, thermalinnovation, thutcore_compat, thutcore, thuttech, tinkertoolleveling, topaddons, torchmaster, translocators, twilightforest, unidict, universalmodifiers, valkyrielib, wanionlib, waystones, wct, woot, wrapup, xnet, xtones, yabba, zerocore, immersiveengineering, shetiphiancore, industrialwires, phosphor-lighting] at SERVER,
2020-12-29T23:15:39.842021570Z [23:15:39] [Server thread/INFO]: Patching class: "net.minecraft.network.PacketBuffer" with Transformer Group: "TransformerGroupPacketBuffer",
2020-12-29T23:15:40.108375789Z [23:15:40] [Server thread/WARN]: Potentially Dangerous alternative prefix `actuallyadditions` for name `magnet_ring_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:40.146640830Z [23:15:40] [Server thread/WARN]: Potentially Dangerous alternative prefix `actuallyadditions` for name `potion_ring_advanced_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:40.147176905Z [23:15:40] [Server thread/WARN]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:40.147339751Z [23:15:40] [Server thread/WARN]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_double_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:40.147583100Z [23:15:40] [Server thread/WARN]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_triple_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:40.147803134Z [23:15:40] [Server thread/WARN]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_quadruple_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:40.148026547Z [23:15:40] [Server thread/WARN]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_quintuple_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:40.330433587Z [23:15:40] [Server thread/INFO]: Patching Chunk,
2020-12-29T23:15:40.334119362Z [23:15:40] [Server thread/INFO]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap,
2020-12-29T23:15:40.334436655Z [23:15:40] [Server thread/INFO]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap,
2020-12-29T23:15:40.339795808Z [23:15:40] [Server thread/WARN]: Static binding violation: PRIVATE @Overwrite method func_76615_h in mixins.phosphor.json:common.MixinChunk cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded.,
2020-12-29T23:15:41.121195199Z [23:15:41] [Server thread/INFO]: Transforming net.minecraft.util.DamageSource,
2020-12-29T23:15:41.122040007Z [23:15:41] [Server thread/INFO]: Applying Transformation to method (Names [causePlayerDamage, func_76365_a] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;)Lnet/minecraft/util/DamageSource;),
2020-12-29T23:15:41.122113306Z [23:15:41] [Server thread/INFO]: Located Method, patching...,
2020-12-29T23:15:41.122231864Z [23:15:41] [Server thread/INFO]: Patch result: true,
2020-12-29T23:15:41.776329110Z [23:15:41] [Server thread/INFO]: [AstralTransformer] Transforming pa : net.minecraft.network.NetHandlerPlayServer with 1 patches!,
2020-12-29T23:15:41.777383519Z [23:15:41] [Server thread/INFO]: [AstralTransformer] Applied patch PATCHSERVEREXTENDENTITYINTERACTREACH,
2020-12-29T23:15:41.900706082Z [23:15:41] [Server thread/INFO]: [AstralTransformer] Transforming thaumcraft.common.lib.events.PlayerEvents : thaumcraft.common.lib.events.PlayerEvents with 1 patches!,
2020-12-29T23:15:41.901660347Z [23:15:41] [Server thread/INFO]: [AstralTransformer] Applied patch PATCHRUNICSHIELDINGHOOK,
2020-12-29T23:15:42.105256188Z [23:15:42] [Server thread/INFO]: Brandon's Core online! Waiting for Draconic Evolution to join the party....,
2020-12-29T23:15:42.105356281Z [23:15:42] [Server thread/INFO]: Draconic Evolution online!,
2020-12-29T23:15:42.105432849Z [23:15:42] [Server thread/INFO]: Hay! There you are! Now lets destroy some worlds!!,
2020-12-29T23:15:42.105507977Z [23:15:42] [Server thread/INFO]: Sounds like fun! Lets get to it!,
2020-12-29T23:15:42.192781899Z [23:15:42] [Server thread/INFO]: Hello Minecraft!!!,
2020-12-29T23:15:42.355829676Z [23:15:42] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.base.integration.thaumcraft.ThaumcraftArmorMixin,
2020-12-29T23:15:42.356988675Z [23:15:42] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:42.357079371Z [23:15:42] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.base.power.forge.item.InternalPoweredItemMixin,
2020-12-29T23:15:42.357137461Z [23:15:42] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:42.357203684Z [23:15:42] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin,
2020-12-29T23:15:42.357273157Z [23:15:42] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:42.357448608Z [23:15:42] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.base.item.darksteel.upgrade.DarkSteelUpgradeMixin,
2020-12-29T23:15:42.357458827Z [23:15:42] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:42.357522893Z [23:15:42] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin,
2020-12-29T23:15:42.358020229Z [23:15:42] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:42.358033322Z [23:15:42] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin,
2020-12-29T23:15:42.358039859Z [23:15:42] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:42.358045704Z [23:15:42] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin,
2020-12-29T23:15:42.358051921Z [23:15:42] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:42.363186386Z [23:15:42] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.base.integration.thaumcraft.ThaumcraftArmorMixin.,
2020-12-29T23:15:42.376116578Z [23:15:42] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.base.power.forge.item.InternalPoweredItemMixin.,
2020-12-29T23:15:42.380025095Z [23:15:42] [Server thread/INFO]: Found interface target crazypants.enderio.base.power.forge.item.IInternalPoweredItem,
2020-12-29T23:15:42.383518123Z [23:15:42] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.,
2020-12-29T23:15:42.383553900Z [23:15:42] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.,
2020-12-29T23:15:42.383609019Z [23:15:42] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.,
2020-12-29T23:15:42.383672993Z [23:15:42] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.,
2020-12-29T23:15:42.390955055Z [23:15:42] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.base.item.darksteel.upgrade.DarkSteelUpgradeMixin.,
2020-12-29T23:15:42.397692925Z [23:15:42] [Server thread/INFO]: Found interface target crazypants.enderio.api.upgrades.IDarkSteelItem,
2020-12-29T23:15:42.430520875Z [23:15:42] [Server thread/INFO]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelArmor from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem],
2020-12-29T23:15:42.430716053Z [23:15:42] [Server thread/INFO]: Patching 2 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelArmor,
2020-12-29T23:15:42.432257190Z [23:15:42] [Server thread/INFO]: Added 3 new interfaces: [thaumcraft/api/items/IVisDiscountGear, thaumcraft/api/items/IGoggles, thaumcraft/api/items/IRevealer],
2020-12-29T23:15:42.447817655Z [23:15:42] [Server thread/INFO]: Added 3 new methods: [showNodes(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EntityLivingBase;)Z, showIngamePopups(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EntityLivingBase;)Z, getVisDiscount(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;)I],
2020-12-29T23:15:42.448989811Z [23:15:42] [Server thread/INFO]: Added 4 new methods: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;, addCommonEntries(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;Ljava/util/List;Z)V, addBasicEntries(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;Ljava/util/List;Z)V, openUpgradeGui(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/EntityEquipmentSlot;)V],
2020-12-29T23:15:42.452406961Z [23:15:42] [Server thread/INFO]: Successfully patched.,
2020-12-29T23:15:42.504344760Z [23:15:42] [Server thread/INFO]: Found interface target crazypants.enderio.base.paint.IPaintable$ITexturePaintableBlock,
2020-12-29T23:15:42.515296665Z [23:15:42] [Server thread/INFO]: Found interface target crazypants.enderio.base.paint.IPaintable$ISolidBlockPaintableBlock,
2020-12-29T23:15:42.519844074Z [23:15:42] [Server thread/INFO]: Found interface target crazypants.enderio.base.paint.IPaintable$IBlockPaintableBlock,
2020-12-29T23:15:42.523791920Z [23:15:42] [Server thread/INFO]: Found interface target crazypants.enderio.base.paint.IPaintable$INonSolidBlockPaintableBlock,
2020-12-29T23:15:42.525149869Z [23:15:42] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderio is not accessible,
2020-12-29T23:15:42.525163612Z java.lang.NoSuchMethodException: crazypants.enderio.base.EnderIO.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:42.525168087Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:42.525171985Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:42.525187345Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:42.525195601Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:42.525201326Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:42.525207183Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:42.525213533Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:42.525218323Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525224239Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525229703Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525235601Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525241579Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525247525Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525253424Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525258852Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:42.525264489Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:42.525270976Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:42.525276354Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:42.525282243Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:42.525287233Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:42.525292691Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525297873Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525303667Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525309327Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525315100Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525325905Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525332127Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:42.525337980Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:42.525344169Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:42.525350067Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:42.525355461Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:42.525361150Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:42.525367024Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:42.525372305Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:42.690667542Z [23:15:42] [Server thread/INFO]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemInventoryCharger from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem],
2020-12-29T23:15:42.692571357Z [23:15:42] [Server thread/INFO]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemInventoryCharger,
2020-12-29T23:15:42.692594888Z [23:15:42] [Server thread/INFO]: Added 3 new methods: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;, getAttributeModifiers(Lnet/minecraft/inventory/EntityEquipmentSlot;Lnet/minecraft/item/ItemStack;)Lcom/google/common/collect/Multimap;, openUpgradeGui(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/EntityEquipmentSlot;)V],
2020-12-29T23:15:42.693106911Z [23:15:42] [Server thread/INFO]: Successfully patched.,
2020-12-29T23:15:43.482071406Z [23:15:43] [Server thread/INFO]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelCrook from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem],
2020-12-29T23:15:43.482164189Z [23:15:43] [Server thread/INFO]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelCrook,
2020-12-29T23:15:43.482701266Z [23:15:43] [Server thread/INFO]: Added 3 new methods: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;, getAttributeModifiers(Lnet/minecraft/inventory/EntityEquipmentSlot;Lnet/minecraft/item/ItemStack;)Lcom/google/common/collect/Multimap;, openUpgradeGui(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/EntityEquipmentSlot;)V],
2020-12-29T23:15:43.483723456Z [23:15:43] [Server thread/INFO]: Successfully patched.,
2020-12-29T23:15:44.013014552Z [23:15:44] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderiointegrationtic is not accessible,
2020-12-29T23:15:44.013048423Z java.lang.NoSuchMethodException: crazypants.enderio.integration.tic.EnderIOIntegrationTic.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:44.013053365Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:44.013057549Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:44.013064559Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:44.013073120Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:44.013079947Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:44.013085891Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:44.013091912Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:44.013097124Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013102201Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013107413Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013113181Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013119083Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013124512Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013130181Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013135941Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:44.013143605Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:44.013149497Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:44.013155005Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:44.013160311Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:44.013166062Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:44.013172031Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013178366Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013195635Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013202414Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013208340Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013213923Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013219380Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:44.013225102Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:44.013230801Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:44.013236682Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:44.013242842Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:44.013248564Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:44.013255324Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:44.013261119Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:44.796475956Z [23:15:44] [Server thread/INFO]: Skipping Pulse craftingtweaksIntegration; missing dependency: craftingtweaks,
2020-12-29T23:15:44.797462785Z [23:15:44] [Server thread/INFO]: Skipping Pulse wailaIntegration; missing dependency: waila,
2020-12-29T23:15:44.802687141Z [23:15:44] [Server thread/INFO]: Preparing to take over the world,
2020-12-29T23:15:45.557649881Z [23:15:45] [Server thread/INFO]: Skipping Pulse craftingtweaksIntegration; missing dependency: craftingtweaks,
2020-12-29T23:15:47.628785550Z [23:15:47] [Server thread/INFO]: [Dynmap] Mod Support API available,
2020-12-29T23:15:47.658437553Z [23:15:47] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderioconduits is not accessible,
2020-12-29T23:15:47.658461321Z java.lang.NoSuchMethodException: crazypants.enderio.conduits.EnderIOConduits.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:47.658468971Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:47.658475501Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:47.658482060Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:47.658497384Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:47.658504161Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:47.658510019Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:47.658516223Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:47.658522519Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658528935Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658534913Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658541688Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658547971Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658554034Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658560052Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658565752Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:47.658571381Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:47.658578036Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:47.658583256Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:47.658588417Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:47.658594020Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:47.658599276Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658605020Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658610928Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658616552Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658622877Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658629072Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658640723Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.658647295Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:47.658653145Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:47.658659089Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:47.658665386Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:47.658670693Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:47.658675925Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:47.658681575Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:47.695574597Z [23:15:47] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.conduit.me.conduit.MEMixin,
2020-12-29T23:15:47.695726532Z [23:15:47] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:47.699774557Z [23:15:47] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.conduit.me.conduit.MEMixin.,
2020-12-29T23:15:47.719219007Z [23:15:47] [Server thread/INFO]: Patching 1 mixins onto class crazypants.enderio.conduits.conduit.TileConduitBundle,
2020-12-29T23:15:47.719433369Z [23:15:47] [Server thread/INFO]: Added 1 new interface: [appeng/api/networking/IGridHost],
2020-12-29T23:15:47.719720376Z [23:15:47] [Server thread/INFO]: Added 3 new methods: [getGridNode(Lappeng/api/util/AEPartLocation;)Lappeng/api/networking/IGridNode;, getCableConnectionType(Lappeng/api/util/AEPartLocation;)Lappeng/api/util/AECableType;, securityBreak()V],
2020-12-29T23:15:47.725721394Z [23:15:47] [Server thread/INFO]: Successfully patched.,
2020-12-29T23:15:47.744000128Z [23:15:47] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderioconduitsappliedenergistics is not accessible,
2020-12-29T23:15:47.744027077Z java.lang.NoSuchMethodException: crazypants.enderio.conduit.me.EnderIOConduitsAppliedEnergistics.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:47.744034471Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:47.744040806Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:47.744046642Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:47.744052268Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:47.744058748Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:47.744079119Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:47.744086537Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:47.744092230Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744098546Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744104073Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744109574Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744115817Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744121117Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744127175Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744132698Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:47.744139125Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:47.744145304Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:47.744150919Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:47.744156598Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:47.744162125Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:47.744167866Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744173839Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744180731Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744186690Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744192772Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744198788Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744204636Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.744216507Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:47.744222827Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:47.744228648Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:47.744234927Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:47.744240944Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:47.744247090Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:47.744252987Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:47.750629451Z [23:15:47] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.conduit.oc.conduit.OCMixin,
2020-12-29T23:15:47.750727122Z [23:15:47] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:47.755614232Z [23:15:47] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.conduit.oc.conduit.OCMixin.,
2020-12-29T23:15:47.759019026Z [23:15:47] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderioconduitsopencomputers is not accessible,
2020-12-29T23:15:47.759045791Z java.lang.NoSuchMethodException: crazypants.enderio.conduit.oc.EnderIOConduitsOpenComputers.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:47.759053430Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:47.759059960Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:47.759065822Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:47.759071482Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:47.759077800Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:47.759084517Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:47.759090251Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:47.759095487Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759101305Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759106973Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759112677Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759125554Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759131557Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759137392Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759142936Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:47.759149538Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:47.759155405Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:47.759161313Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:47.759167516Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:47.759173250Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:47.759179292Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759185253Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759191207Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759197090Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759203590Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759209698Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759215216Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:47.759222818Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:47.759228914Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:47.759234829Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:47.759240861Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:47.759247025Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:47.759253184Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:47.759264244Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:48.018346076Z [23:15:48] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderioconduitsrefinedstorage is not accessible,
2020-12-29T23:15:48.018375058Z java.lang.NoSuchMethodException: crazypants.enderio.conduit.refinedstorage.EnderIOConduitsRefinedStorage.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:48.018382023Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:48.018387836Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:48.018393675Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:48.018399528Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:48.018405822Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:48.018411002Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.018416951Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.018422559Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018427590Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018432926Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018437992Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018443444Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018448916Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018454052Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018459156Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:48.018465377Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:48.018470653Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:48.018475458Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:48.018480609Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.018500693Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.018506481Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018512049Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018517716Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018522811Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018528043Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018533124Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018538256Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.018543686Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:48.018548783Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:48.018553827Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:48.018559088Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:48.018564891Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:48.018570172Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:48.018575533Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:48.025794396Z [23:15:48] [Server thread/INFO]: Found annotation mixin: crazypants.enderio.integration.forestry.upgrades.ArmorMixin,
2020-12-29T23:15:48.025900121Z [23:15:48] [Server thread/INFO]: Registered mixin.,
2020-12-29T23:15:48.030704088Z [23:15:48] [Server thread/INFO]: Found mixin source class data for crazypants.enderio.integration.forestry.upgrades.ArmorMixin.,
2020-12-29T23:15:48.030930719Z [23:15:48] [Server thread/INFO]: Found 1 patch to apply to class crazypants.enderio.integration.forestry.upgrades.ArmorMixin from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem],
2020-12-29T23:15:48.031066859Z [23:15:48] [Server thread/INFO]: Patching 1 mixins onto class crazypants.enderio.integration.forestry.upgrades.ArmorMixin,
2020-12-29T23:15:48.031301320Z [23:15:48] [Server thread/INFO]: Added 1 new interface: [com/enderio/core/api/client/gui/IAdvancedTooltipProvider],
2020-12-29T23:15:48.031446630Z [23:15:48] [Server thread/INFO]: Added 6 new methods: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;, getAttributeModifiers(Lnet/minecraft/inventory/EntityEquipmentSlot;Lnet/minecraft/item/ItemStack;)Lcom/google/common/collect/Multimap;, addCommonEntries(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;Ljava/util/List;Z)V, addBasicEntries(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;Ljava/util/List;Z)V, addDetailedEntries(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;Ljava/util/List;Z)V, openUpgradeGui(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/EntityEquipmentSlot;)V],
2020-12-29T23:15:48.031839922Z [23:15:48] [Server thread/INFO]: Successfully patched.,
2020-12-29T23:15:48.221058503Z [23:15:48] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderiointegrationforestry is not accessible,
2020-12-29T23:15:48.221083202Z java.lang.NoSuchMethodException: crazypants.enderio.integration.forestry.EnderIOIntegrationForestry.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:48.221090272Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:48.221096457Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:48.221102868Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:48.221108637Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:48.221114476Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:48.221120131Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.221125783Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.221131409Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221137219Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221142960Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221148619Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221154499Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221160313Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221166042Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221171708Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:48.221178140Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:48.221192526Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:48.221198625Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:48.221204331Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.221209956Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.221215838Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221221716Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221227771Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221232999Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221238297Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221243385Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221248903Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.221253908Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:48.221259171Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:48.221264250Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:48.221269526Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:48.221274649Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:48.221285798Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:48.221292458Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:48.230200761Z [23:15:48] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderiointegrationticlate is not accessible,
2020-12-29T23:15:48.230232201Z java.lang.NoSuchMethodException: crazypants.enderio.integration.tic.EnderIOIntegrationTicLate.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:48.230238514Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:48.230244146Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:48.230264957Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:48.230270810Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:48.230275814Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:48.230280958Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.230286138Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.230290885Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230296258Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230301509Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230306510Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230311789Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230316943Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230322219Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230327473Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:48.230333201Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:48.230338499Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:48.230343462Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:48.230348390Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.230353654Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.230358561Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230363691Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230368819Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230373872Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230378966Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230388289Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230393975Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.230399094Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:48.230404172Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:48.230409257Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:48.230414250Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:48.230419739Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:48.230424947Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:48.230430070Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:48.478801189Z [23:15:48] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderiomachines is not accessible,
2020-12-29T23:15:48.478834466Z java.lang.NoSuchMethodException: crazypants.enderio.machines.EnderIOMachines.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:48.478841772Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:48.478848064Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:48.478854730Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:48.478860827Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:48.478867407Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:48.478873541Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.478880003Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.478885700Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478891798Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478898022Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478904922Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478919614Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478926205Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478932247Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478937773Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:48.478943486Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:48.478949993Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:48.478955370Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:48.478961047Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.478967309Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.478973199Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478978702Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478984686Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478990090Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.478996233Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.479002390Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.479007954Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.479013797Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:48.479019760Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:48.479028176Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:48.479033966Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:48.479039463Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:48.479045186Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:48.479056440Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:48.845426744Z [23:15:48] [Server thread/WARN]: The declared version check handler method checkModLists on network mod id enderiopowertools is not accessible,
2020-12-29T23:15:48.845450189Z java.lang.NoSuchMethodException: crazypants.enderio.powertools.EnderIOPowerTools.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side),
2020-12-29T23:15:48.845456496Z at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_275],
2020-12-29T23:15:48.845462105Z at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?],
2020-12-29T23:15:48.845467873Z at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?],
2020-12-29T23:15:48.845472998Z at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?],
2020-12-29T23:15:48.845478126Z at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) ~[?:?],
2020-12-29T23:15:48.845483561Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.845488984Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.845494719Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845500532Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845506428Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845512144Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845517930Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845523425Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845529157Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845534490Z at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?],
2020-12-29T23:15:48.845539923Z at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?],
2020-12-29T23:15:48.845546652Z at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275],
2020-12-29T23:15:48.845552394Z at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275],
2020-12-29T23:15:48.845560027Z at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275],
2020-12-29T23:15:48.845569712Z at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275],
2020-12-29T23:15:48.845595333Z at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845607375Z at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845617215Z at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845627311Z at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845638737Z at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845649459Z at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845659999Z at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?],
2020-12-29T23:15:48.845668113Z at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?],
2020-12-29T23:15:48.845674411Z at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?],
2020-12-29T23:15:48.845679739Z at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?],
2020-12-29T23:15:48.845684499Z at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?],
2020-12-29T23:15:48.845689497Z at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) [nz.class:?],
2020-12-29T23:15:48.845694321Z at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?],
2020-12-29T23:15:48.845699374Z at java.lang.Thread.run(Thread.java:748) [?:1.8.0_275],
2020-12-29T23:15:49.414806071Z [23:15:49] [Server thread/INFO]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraftforge.common.property.ExtendedBlockState.createState,
2020-12-29T23:15:49.927008393Z [23:15:49] [Server thread/INFO]: Transforming net.minecraft.inventory.ContainerWorkbench,
2020-12-29T23:15:49.927464656Z [23:15:49] [Server thread/INFO]: Applying Transformation to method (Names [transferStackInSlot, func_82846_b] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;I)Lnet/minecraft/item/ItemStack;),
2020-12-29T23:15:49.927653112Z [23:15:49] [Server thread/INFO]: Located Method, patching...,
2020-12-29T23:15:49.927786612Z [23:15:49] [Server thread/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerWorkbench.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z,
2020-12-29T23:15:49.927899999Z [23:15:49] [Server thread/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerWorkbench.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z,
2020-12-29T23:15:49.928143340Z [23:15:49] [Server thread/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerWorkbench.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z,
2020-12-29T23:15:49.928331104Z [23:15:49] [Server thread/INFO]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerWorkbench.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z,
2020-12-29T23:15:49.928459230Z [23:15:49] [Server thread/INFO]: Patch result: true,
2020-12-29T23:15:52.092647243Z [23:15:52] [Server thread/WARN]: Annotated class 'net.ndrei.teslacorelib.blocks.multipart.MultiPartBlockEvents' not found!,
2020-12-29T23:15:52.412382032Z [23:15:52] [Server thread/INFO]: Not running as Java version is at least Java 8u101.,
2020-12-29T23:15:52.606399752Z [23:15:52] [Server thread/WARN]: Invalid fingerprint detected! The file MineTogether-1.12.2-2.4.1.jar may have been tampered with. This version will NOT be supported by the author!,
2020-12-29T23:15:53.497763222Z [23:15:53] [Server thread/ERROR]: The mod snad is expecting signature @FINGERPRINT@ for source Snad-1.12.1-1.7.09.16a.jar, however there is no signature matching that description,
2020-12-29T23:15:53.511288329Z [23:15:53] [Server thread/ERROR]: No fingerprint found!,
2020-12-29T23:15:53.928313136Z [23:15:53] [Server thread/INFO]: Successfully injected component logic into class thut.tech.common.blocks.lift.TileEntityLiftAccess.,
2020-12-29T23:15:54.973503016Z [23:15:54] [Server thread/INFO]: Processing ObjectHolder annotations,
2020-12-29T23:15:55.693281709Z [23:15:55] [Server thread/INFO]: Found 2066 ObjectHolder annotations,
2020-12-29T23:15:55.696831956Z [23:15:55] [Server thread/INFO]: Identifying ItemStackHolder annotations,
2020-12-29T23:15:55.718459373Z [23:15:55] [Server thread/INFO]: Found 40 ItemStackHolder annotations,
2020-12-29T23:15:56.044329755Z [23:15:56] [Server thread/INFO]: Configured a dormant chunk cache size of 0,
2020-12-29T23:15:56.053025201Z [23:15:56] [Forge Version Check/INFO]: [railcraft] Starting version check at http://www.railcraft.info/railcraft_versions,
2020-12-29T23:15:56.094120373Z [23:15:56] [Server thread/INFO]: Starting PreInitialization Phase...,
2020-12-29T23:15:56.154068228Z [23:15:56] [Server thread/INFO]: Grabbing Configurations...,
2020-12-29T23:15:56.179156190Z [23:15:56] [Server thread/INFO]: Initializing Tool Materials...,
2020-12-29T23:15:56.181671019Z [23:15:56] [Server thread/INFO]: Initializing Armor Materials...,
2020-12-29T23:15:56.203480751Z [23:15:56] [Server thread/INFO]: PreInitializing ServerProxy...,
2020-12-29T23:15:56.203508374Z [23:15:56] [Server thread/INFO]: PreInitialization Finished.,
2020-12-29T23:15:56.717585025Z [23:15:56] [Forge Version Check/INFO]: [railcraft] Found status: BETA Target: null,
2020-12-29T23:15:56.721401782Z [23:15:56] [Forge Version Check/INFO]: [topaddons] Starting version check at https://raw.githubusercontent.com/DrManganese/TOPAddons/1.12/FUC.json,
2020-12-29T23:15:57.082155052Z [23:15:57] [Forge Version Check/INFO]: [topaddons] Found status: OUTDATED Target: 1.12.2-1.13.0,
2020-12-29T23:15:57.171793564Z [23:15:57] [Forge Version Check/INFO]: [industrialwires] Starting version check at https://raw.githubusercontent.com/malte0811/IndustrialWires/MC1.12/changelog.json,
2020-12-29T23:15:57.184339747Z [23:15:57] [Forge Version Check/INFO]: [industrialwires] Found status: UP_TO_DATE Target: null,
2020-12-29T23:15:57.185042760Z [23:15:57] [Forge Version Check/INFO]: [simplyjetpacks] Starting version check at https://raw.githubusercontent.com/Tomson124/SimplyJetpacks-2/1.12/update/update.json,
2020-12-29T23:15:57.193374383Z [23:15:57] [Forge Version Check/INFO]: [simplyjetpacks] Found status: AHEAD Target: null,
2020-12-29T23:15:57.193527873Z [23:15:57] [Forge Version Check/INFO]: [translocators] Starting version check at http://chickenbones.net/Files/notification/version.php?query=forge&version=1.12&file=Translocators,
2020-12-29T23:15:57.857426446Z [23:15:57] [Forge Version Check/INFO]: [cofhworld] Starting version check at https://raw.github.com/cofh/version/master/cofhworld_update.json,
2020-12-29T23:15:57.921305386Z [23:15:57] [Forge Version Check/INFO]: [cofhworld] Found status: OUTDATED Target: 1.4.0,
2020-12-29T23:15:57.921409561Z [23:15:57] [Forge Version Check/INFO]: [thermaldynamics] Starting version check at https://raw.github.com/cofh/version/master/thermaldynamics_update.json,
2020-12-29T23:15:57.935048758Z [23:15:57] [Forge Version Check/INFO]: [thermaldynamics] Found status: OUTDATED Target: 2.5.6,
2020-12-29T23:15:57.935160449Z [23:15:57] [Forge Version Check/INFO]: [immersiveengineering] Starting version check at https://raw.githubusercontent.com/BluSunrize/ImmersiveEngineering/master/changelog.json,
2020-12-29T23:15:57.954211095Z [23:15:57] [Forge Version Check/INFO]: [immersiveengineering] Found status: OUTDATED Target: 0.12-92,
2020-12-29T23:15:57.954519348Z [23:15:57] [Forge Version Check/INFO]: [shetiphiancore] Starting version check at https://gist.githubusercontent.com/ShetiPhian/5a4332ca6221ae61ab3c6d531a989f21/raw/ShetiPhianCore,
2020-12-29T23:15:58.081897922Z [23:15:58] [Forge Version Check/INFO]: [platforms] Starting version check at https://gist.githubusercontent.com/ShetiPhian/5a4332ca6221ae61ab3c6d531a989f21/raw/Platforms,
2020-12-29T23:15:58.101600620Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_machines` for name `rotary_macerator`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.102455387Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_machines` for name `singularity_compressor`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.103018960Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_machines` for name `centrifuge_extractor`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.104218580Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_machines` for name `compacting_recycler`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.104926869Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_machines` for name `liquescent_extruder`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.105516098Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_machines` for name `impellerized_roller`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.108159685Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_machines` for name `water_jet_cutter`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.109275764Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_machines` for name `thermal_washer`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.116155815Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `molecular_transformer`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.118579708Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `quantum_generator`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.122280009Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `advanced_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.123041746Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `hybrid_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.123683473Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `ultimate_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.124382637Z [23:15:58] [Server thread/WARN]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `quantum_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.,
2020-12-29T23:15:58.171702280Z [23:15:58] [Forge Version Check/INFO]: [twilightforest] Starting version check at https://raw.githubusercontent.com/TeamTwilight/twilightforest/1.12.x/update.json,
2020-12-29T23:15:58.181002478Z [23:15:58] [Forge Version Check/INFO]: [twilightforest] Found status: AHEAD Target: null,
2020-12-29T23:15:58.181166707Z [23:15:58] [Forge Version Check/INFO]: [refinedstorage] Starting version check at https://refinedstorage.raoulvdberge.com/update,
2020-12-29T23:15:58.183718866Z [23:15:58] [Forge Version Check/INFO]: [buildcraftlib] Starting version check at https://mod-buildcraft.com/version/versions.json,
2020-12-29T23:15:58.305015379Z [23:15:58] [Forge Version Check/INFO]: [buildcraftlib] Found status: OUTDATED Target: 7.99.24.4,
2020-12-29T23:15:58.305072564Z [23:15:58] [Forge Version Check/INFO]: [openblocks] Starting version check at http://openmods.info/versions/openblocks.json,
2020-12-29T23:15:58.341281409Z [23:15:58] [Forge Version Check/INFO]: [openblocks] Found status: AHEAD Target: null,
2020-12-29T23:15:58.341385840Z [23:15:58] [Forge Version Check/INFO]: [openmods] Starting version check at http://openmods.info/versions/openmodslib.json,
2020-12-29T23:15:58.359445375Z [23:15:58] [Forge Version Check/INFO]: [openmods] Found status: AHEAD Target: null,
2020-12-29T23:15:58.359549721Z [23:15:58] [Forge Version Check/INFO]: [industrialforegoing] Starting version check at https://raw.githubusercontent.com/Buuz135/Industrial-Foregoing/master/update.json,
2020-12-29T23:15:58.367080833Z [23:15:58] [Forge Version Check/INFO]: [industrialforegoing] Found status: BETA Target: null,
2020-12-29T23:15:58.367125866Z [23:15:58] [Forge Version Check/INFO]: [buildcraftcompat] Starting version check at https://mod-buildcraft.com/version/versions-compat.json,
2020-12-29T23:15:58.389159292Z [23:15:58] [Forge Version Check/INFO]: [buildcraftcompat] Found status: UP_TO_DATE Target: null,
2020-12-29T23:15:58.389222511Z [23:15:58] [Forge Version Check/INFO]: [cofhcore] Starting version check at https://raw.github.com/cofh/version/master/cofhcore_update.json,
2020-12-29T23:15:58.403110505Z [23:15:58] [Forge Version Check/INFO]: [cofhcore] Found status: OUTDATED Target: 4.6.6,
2020-12-29T23:15:58.403270223Z [23:15:58] [Forge Version Check/INFO]: [enderstorage] Starting version check at http://chickenbones.net/Files/notification/version.php?query=forge&version=1.12&file=EnderStorage,
2020-12-29T23:15:58.681293256Z [23:15:58] [Forge Version Check/INFO]: [thermalcultivation] Starting version check at https://raw.github.com/cofh/version/master/thermalcultivation_update.json,
2020-12-29T23:15:58.694748938Z [23:15:58] [Forge Version Check/INFO]: [thermalcultivation] Found status: OUTDATED Target: 0.3.6,
2020-12-29T23:15:58.694920973Z [23:15:58] [Forge Version Check/INFO]: [buildcraftcore] Starting version check at https://mod-buildcraft.com/version/versions.json,