-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlatest.log
3683 lines (3683 loc) · 461 KB
/
latest.log
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
[18:33:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[18:33:39] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[18:33:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
[18:33:39] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2847 for Minecraft 1.12.2 loading
[18:33:39] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_181, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_181
[18:33:39] [main/WARN] [FML]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed!
[18:33:39] [main/WARN] [FML]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed!
[18:33:39] [main/INFO] [FML]: Searching C:\Users\weebl\OneDrive\My Documents\Minecraft_server\ATlauncher\servers\MechMagic\.\mods for mods
[18:33:39] [main/INFO] [FML]: Searching C:\Users\weebl\OneDrive\My Documents\Minecraft_server\ATlauncher\servers\MechMagic\.\mods\1.12.2 for mods
[18:33:40] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in astralsorcery-1.12.2-1.10.21.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[18:33:40] [main/WARN] [FML]: The coremod hellfirepvp.astralsorcery.core.AstralCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/INFO] [Astral Core]: [AstralCore] Initialized.
[18:33:40] [main/INFO] [FML]: Loading tweaker guichaguri.betterfps.tweaker.BetterFpsTweaker from BetterFps-1.4.8.jar
[18:33:40] [main/INFO] [FML]: Loading tweaker codechicken.asm.internal.Tweaker from ChickenASM-1.12-1.0.2.7.jar
[18:33:40] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in cxlibrary-1.12.1-1.6.1.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[18:33:40] [main/WARN] [FML]: The coremod cubex2.cxlibrary.CoreModLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: The coremod CXLibraryCore (cubex2.cxlibrary.CoreModLoader) is not signed!
[18:33:40] [main/INFO] [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from DynamicSurroundings-1.12.2-3.6.0.2.jar
[18:33:40] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in foamfix-0.10.10-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[18:33:40] [main/WARN] [FML]: The coremod pl.asie.foamfix.coremod.FoamFixCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Forgelin-1.8.4.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[18:33:40] [main/WARN] [FML]: The coremod net.shadowfacts.forgelin.preloader.ForgelinPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
[18:33:40] [main/WARN] [FML]: 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.
[18:33:40] [main/WARN] [FML]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!
[18:33:40] [main/WARN] [FML]: 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.
[18:33:40] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Quark-r1.6-177.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[18:33:40] [main/WARN] [FML]: The coremod Quark Plugin (vazkii.quark.base.asm.LoadingPlugin) is not signed!
[18:33:40] [main/WARN] [FML]: The coremod com.therandomlabs.randompatches.core.RPCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in RandomThings-MC1.12.2-4.2.7.3.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[18:33:40] [main/WARN] [FML]: The coremod lumien.randomthings.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in redstonepaste-mc1.12-1.7.5.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[18:33:40] [main/WARN] [FML]: The coremod net.fybertech.nwr.NWRTweak does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: The coremod NWRTweak (net.fybertech.nwr.NWRTweak) is not signed!
[18:33:40] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in secretroomsmod-1.12.2-5.6.4.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[18:33:40] [main/WARN] [FML]: The coremod SecretRoomsMod-Core (com.wynprice.secretroomsmod.core.SecretRoomsCore) is not signed!
[18:33:40] [main/INFO] [FML]: [SecretRoomsMod-Core] Core loaded
[18:33:40] [main/INFO] [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from VanillaFix-1.0.10-99.jar
[18:33:40] [main/WARN] [FML]: The coremod blusunrize.immersiveengineering.common.asm.IELoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: The coremod shetiphian.asm.TweakPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[18:33:40] [main/WARN] [FML]: The coremod ShetiPhian-ASM (shetiphian.asm.TweakPlugin) is not signed!
[18:33:40] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:33:40] [main/INFO] [LaunchWrapper]: Loading tweak class name guichaguri.betterfps.tweaker.BetterFpsTweaker
[18:33:40] [main/INFO] [LaunchWrapper]: Loading tweak class name codechicken.asm.internal.Tweaker
[18:33:40] [main/INFO] [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.launch.MixinTweaker
[18:33:40] [main/INFO] [mixin]: SpongePowered MIXIN Subsystem Version=0.7.11 Source=file:/C:/Users/weebl/OneDrive/My%20Documents/Minecraft_server/ATlauncher/servers/MechMagic/./mods/DynamicSurroundings-1.12.2-3.6.0.2.jar Service=LaunchWrapper Env=SERVER
[18:33:40] [main/INFO] [mixin]: Compatibility level set to JAVA_8
[18:33:40] [main/INFO] [VanillaFix]: Initializing VanillaFix
[18:33:40] [main/INFO] [VanillaFix]: Initializing StacktraceDeobfuscator
[18:33:40] [main/INFO] [VanillaFix]: Found MCP method mappings: methods-stable_39.csv
[18:33:40] [main/INFO] [VanillaFix]: Done initializing StacktraceDeobfuscator
[18:33:40] [main/INFO] [VanillaFix]: Initializing Bug Fix Mixins
[18:33:40] [main/INFO] [VanillaFix]: Initializing Crash Fix Mixins
[18:33:40] [main/INFO] [VanillaFix]: Initializing Profiler Improvement Mixins
[18:33:40] [main/INFO] [VanillaFix]: Initializing Texture Fix Mixins
[18:33:40] [main/INFO] [VanillaFix]: Initializing Mod Support Mixins
[18:33:40] [main/WARN] [FML]: The coremod VanillaFixLoadingPlugin (org.dimdev.vanillafix.VanillaFixLoadingPlugin) is not signed!
[18:33:40] [main/WARN] [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
[18:33:40] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:33:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:33:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:33:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:41] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[18:33:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:41] [main/INFO] [LaunchWrapper]: Calling tweak class codechicken.asm.internal.Tweaker
[18:33:41] [main/INFO] [STDOUT]: [codechicken.asm.internal.Tweaker:injectIntoClassLoader:30]: false
[18:33:41] [main/INFO] [LaunchWrapper]: Calling tweak class org.spongepowered.asm.launch.MixinTweaker
[18:33:41] [main/INFO] [mixin]: Initialised Mixin FML Remapper Adapter with net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper@40298285
[18:33:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:41] [main/INFO] [LaunchWrapper]: Calling tweak class guichaguri.betterfps.tweaker.BetterFpsTweaker
[18:33:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:33:41] [main/INFO] [Astral Core]: [AstralTransformer] Loading patches...
[18:33:41] [main/INFO] [Astral Core]: [AstralTransformer] Found 0 Transformers! Trying to recover with direct references...
[18:33:41] [main/INFO] [Astral Core]: [AstralTransformer] Initialized! Loaded 14 class patches!
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [FML]: [SecretRoomsTransformer] Registered
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:33:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:33:42] [main/INFO] [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.mixin.EnvironmentStateTweaker
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class org.spongepowered.asm.mixin.EnvironmentStateTweaker
[18:33:42] [main/INFO] [Astral Core]: [AstralTransformer] Transforming alm : net.minecraft.enchantment.EnchantmentHelper with 1 patches!
[18:33:42] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHMODIFYENCHANTMENTLEVELS
[18:33:42] [main/INFO] [Quark ASM]: Transforming net.minecraft.enchantment.EnchantmentHelper
[18:33:42] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [getEnchantments, func_82781_a] Descriptor (Lnet/minecraft/item/ItemStack;)Ljava/util/Map;)
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/item/ItemStack.func_77986_q ()Lnet/minecraft/nbt/NBTTagList;
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [Quark ASM]: Transforming net.minecraft.entity.Entity
[18:33:42] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [move, func_70091_d] Descriptor (Lnet/minecraft/entity/MoverType;DDD)V)
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/Entity.func_145775_I ()V
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [onEntityUpdate, func_70030_z] Descriptor ()V)
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [ShetiPhian-ASM]: Attempting: Injection of Run Particle Override into Entity.createRunningParticles
[18:33:42] [main/INFO] [ShetiPhian-ASM]: Searching for: Entity.createRunningParticles (func_174808_Z)
[18:33:42] [main/INFO] [ShetiPhian-ASM]: Found Method: Entity.createRunningParticles
[18:33:42] [main/INFO] [ShetiPhian-ASM]: Injecting: Run Particle Override
[18:33:42] [main/INFO] [mixin]: A re-entrant transformer '$wrapper.lumien.randomthings.asm.ClassTransformer' was detected and will no longer process meta class data
[18:33:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.world.chunk.BlockStateContainer.func_186018_a
[18:33:42] [main/WARN] [mixin]: Error loading class: net/minecraft/server/integrated/IntegratedServer (net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerException: Exception in class transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer@1e008f36 from coremod FMLCorePlugin)
[18:33:42] [main/WARN] [mixin]: @Mixin target net.minecraft.server.integrated.IntegratedServer was not found mixins.vanillafix.crashes.json:MixinIntegratedServer
[18:33:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a
[18:33:42] [main/INFO] [Astral Core]: [AstralTransformer] Transforming amu : net.minecraft.world.World with 2 patches!
[18:33:42] [main/INFO] [Astral Core]: [AstralTransformer] Skipping PATCHSUNBRIGHTNESSWORLDCLIENT as it can't be applied for side SERVER
[18:33:42] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHSUNBRIGHTNESSWORLDCOMMON
[18:33:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable
[18:33:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:135]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities
[18:33:42] [main/INFO] [Astral Core]: [AstralTransformer] Transforming amu : net.minecraft.world.World with 2 patches!
[18:33:42] [main/INFO] [Astral Core]: [AstralTransformer] Skipping PATCHSUNBRIGHTNESSWORLDCLIENT as it can't be applied for side SERVER
[18:33:42] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHSUNBRIGHTNESSWORLDCOMMON
[18:33:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable
[18:33:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:135]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities
[18:33:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.patches.WorldServerRemovalPatch:apply:62]: Patched updateEntities in net/minecraft/world/WorldServer func_72939_s
[18:33:42] [main/INFO] [Quark ASM]: Transforming net.minecraft.world.WorldServer
[18:33:42] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [areAllPlayersAsleep, func_73056_e] Descriptor ()Z)
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [wakeAllPlayers, func_73053_d] Descriptor ()V)
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [Quark ASM]: Transforming net.minecraft.entity.Entity
[18:33:42] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [move, func_70091_d] Descriptor (Lnet/minecraft/entity/MoverType;DDD)V)
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/Entity.func_145775_I ()V
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [onEntityUpdate, func_70030_z] Descriptor ()V)
[18:33:42] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:42] [main/INFO] [Quark ASM]: Patch result: true
[18:33:42] [main/INFO] [ShetiPhian-ASM]: Attempting: Injection of Run Particle Override into Entity.createRunningParticles
[18:33:42] [main/INFO] [ShetiPhian-ASM]: Searching for: Entity.createRunningParticles (func_174808_Z)
[18:33:42] [main/INFO] [ShetiPhian-ASM]: Found Method: Entity.createRunningParticles
[18:33:42] [main/INFO] [ShetiPhian-ASM]: Injecting: Run Particle Override
[18:33:43] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase
[18:33:43] [main/INFO] [Astral Core]: [AstralTransformer] Transforming vp : net.minecraft.entity.EntityLivingBase with 4 patches!
[18:33:43] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHAPPLYPOTIONEFFECTEVENT
[18:33:43] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHUPDATEELYTRA
[18:33:43] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHENTITYLIVINGBASEWATERSLOWDOWN
[18:33:43] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHSETPLAYERATTRIBUTE
[18:33:43] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
[18:33:43] [main/INFO] [BetterFps]: Patching net.minecraft.block.Block... (aow)
[18:33:43] [main/INFO] [Quark ASM]: Transforming net.minecraft.enchantment.Enchantment
[18:33:43] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [canApply, func_92089_a] Descriptor (Lnet/minecraft/item/ItemStack;)Z)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Located patch target node IRETURN
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [Quark ASM]: Transforming net.minecraft.entity.item.EntityItem
[18:33:43] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [onUpdate, func_70071_h_] Descriptor ()V)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.state.BlockStateContainer.createState
[18:33:43] [main/INFO] [FML]: [SecretRoomsTransformer] Running Transform on net.minecraft.block.state.BlockStateContainer$StateImplementation
[18:33:43] [main/INFO] [FML]: [SecretRoomsTransformer] Finished Transform on: net.minecraft.block.state.BlockStateContainer$StateImplementation
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.equals
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.hashCode
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode_calced
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyInteger.hashCode
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode_calced
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.equals
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.hashCode
[18:33:43] [main/INFO] [BetterFps]: Patching math utils with "RIVENS_HALF" algorithm
[18:33:43] [main/INFO] [Astral Core]: [AstralTransformer] Transforming aip : net.minecraft.item.ItemStack with 2 patches!
[18:33:43] [main/INFO] [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIP as it can't be applied for side SERVER
[18:33:43] [main/INFO] [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIPEVENT as it can't be applied for side SERVER
[18:33:43] [main/INFO] [Quark ASM]: Transforming net.minecraft.item.ItemStack
[18:33:43] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [getTextComponent, func_151000_E] Descriptor ()Lnet/minecraft/util/text/ITextComponent;)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Located patch target node ARETURN
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [Quark ASM]: Transforming net.minecraft.block.BlockDynamicLiquid
[18:33:43] [main/INFO] [Quark ASM]: 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)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Located patch target node IRETURN
[18:33:43] [main/INFO] [Quark ASM]: Located patch target node IRETURN
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [FML]: [SecretRoomsTransformer] Running Transform on net.minecraft.block.BlockBreakable
[18:33:43] [main/INFO] [FML]: [SecretRoomsTransformer] Finished Transform on: net.minecraft.block.BlockBreakable
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a
[18:33:43] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.BlockBed.func_189540_a
[18:33:43] [main/INFO] [Quark ASM]: Transforming net.minecraft.block.BlockPistonBase
[18:33:43] [main/INFO] [Quark ASM]: 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)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/block/Block.hasTileEntity (Lnet/minecraft/block/state/IBlockState;)Z
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [Quark ASM]: 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)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/block/state/BlockPistonStructureHelper.func_177254_c ()Ljava/util/List;
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [Quark ASM]: 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)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: 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
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [Quark ASM]: 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)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: 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
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [Quark ASM]: Transforming net.minecraft.tileentity.TileEntityPiston
[18:33:43] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [clearPistonTileEntity, func_145866_f] Descriptor ()V)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/world/World.func_180501_a (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)Z
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V)
[18:33:43] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:43] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/world/World.func_180501_a (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)Z
[18:33:43] [main/INFO] [Quark ASM]: Patch result: true
[18:33:43] [main/INFO] [OpenComputers]: Successfully patched net/minecraft/entity/EntityLiving.recreateLeash.
[18:33:44] [main/INFO] [BetterFps]: Patching net.minecraft.tileentity.TileEntityBeacon... (avh)
[18:33:44] [main/INFO] [BetterFps]: Patching net.minecraft.block.BlockHopper... (arl)
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper
[18:33:44] [main/INFO] [BetterFps]: Patching net.minecraft.tileentity.TileEntityHopper... (avw)
[18:33:44] [main/INFO] [Quark ASM]: Transforming net.minecraft.enchantment.EnchantmentDamage
[18:33:44] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [canApply, func_92089_a] Descriptor (Lnet/minecraft/item/ItemStack;)Z)
[18:33:44] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:44] [main/INFO] [Quark ASM]: Located patch target node IRETURN
[18:33:44] [main/INFO] [Quark ASM]: Located patch target node IRETURN
[18:33:44] [main/INFO] [Quark ASM]: Patch result: true
[18:33:44] [main/INFO] [Quark ASM]: Transforming net.minecraft.entity.item.EntityMinecart
[18:33:44] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [killMinecart, func_94095_a] Descriptor (Lnet/minecraft/util/DamageSource;)V)
[18:33:44] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:44] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/item/EntityMinecart.func_70099_a (Lnet/minecraft/item/ItemStack;F)Lnet/minecraft/entity/item/EntityItem;
[18:33:44] [main/INFO] [Quark ASM]: Patch result: true
[18:33:44] [main/INFO] [Quark ASM]: Transforming net.minecraft.entity.item.EntityBoat
[18:33:44] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [attackEntityFrom, func_70097_a] Descriptor (Lnet/minecraft/util/DamageSource;F)Z)
[18:33:44] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:44] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/item/EntityBoat.func_145778_a (Lnet/minecraft/item/Item;IF)Lnet/minecraft/entity/item/EntityItem;
[18:33:44] [main/INFO] [Quark ASM]: Patch result: true
[18:33:44] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase
[18:33:44] [main/INFO] [Astral Core]: [AstralTransformer] Transforming vp : net.minecraft.entity.EntityLivingBase with 4 patches!
[18:33:44] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHAPPLYPOTIONEFFECTEVENT
[18:33:44] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHUPDATEELYTRA
[18:33:44] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHENTITYLIVINGBASEWATERSLOWDOWN
[18:33:44] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHSETPLAYERATTRIBUTE
[18:33:44] [main/INFO] [Quark ASM]: Transforming net.minecraft.util.DamageSource
[18:33:44] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [causePlayerDamage, func_76365_a] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;)Lnet/minecraft/util/DamageSource;)
[18:33:44] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:44] [main/INFO] [Quark ASM]: Patch result: true
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.patches.WorldServerRemovalPatch:apply:62]: Patched updateEntities in net/minecraft/world/WorldServer func_72939_s
[18:33:44] [main/INFO] [Quark ASM]: Transforming net.minecraft.world.WorldServer
[18:33:44] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [areAllPlayersAsleep, func_73056_e] Descriptor ()Z)
[18:33:44] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:44] [main/INFO] [Quark ASM]: Patch result: true
[18:33:44] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [wakeAllPlayers, func_73053_d] Descriptor ()V)
[18:33:44] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:44] [main/INFO] [Quark ASM]: Patch result: true
[18:33:44] [main/INFO] [Quark ASM]: Transforming net.minecraft.item.ItemBanner
[18:33:44] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [appendHoverTextFromTileEntityTag, func_185054_a] Descriptor (Lnet/minecraft/item/ItemStack;Ljava/util/List;)V)
[18:33:44] [main/INFO] [Quark ASM]: Failed to locate the method!
[18:33:44] [main/INFO] [Astral Core]: [AstralTransformer] Transforming wg : net.minecraft.entity.ai.attributes.AbstractAttributeMap with 1 patches!
[18:33:44] [main/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHADDPLAYERATTRIBUTE
[18:33:44] [main/INFO] [Quark ASM]: Transforming net.minecraft.entity.ai.EntityAITarget
[18:33:44] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [isSuitableTarget, func_179445_a] Descriptor (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/entity/EntityLivingBase;ZZ)Z)
[18:33:44] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:44] [main/INFO] [Quark ASM]: Patch result: true
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/api/IFoamFixMobSpawnerLogic
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.MobSpawnerBaseLogic.func_98279_f
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCache
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCachePESize
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCacheTime
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCache
[18:33:44] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCacheTime
[18:33:44] [main/INFO] [EnderCore ASM]: Transforming Class [net.minecraft.entity.ai.EntityAICreeperSwell], Method [func_75246_d]
[18:33:44] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.entity.ai.EntityAICreeperSwell Finished.
[18:33:45] [main/INFO] [Quark ASM]: Transforming net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern
[18:33:45] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [matches, func_77569_a] Descriptor (Lnet/minecraft/inventory/InventoryCrafting;Lnet/minecraft/world/World;)Z)
[18:33:45] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:45] [main/INFO] [Quark ASM]: Located patch target node INVOKESTATIC net/minecraft/tileentity/TileEntityBanner.func_175113_c (Lnet/minecraft/item/ItemStack;)I
[18:33:45] [main/INFO] [Quark ASM]: Patch result: true
[18:33:45] [main/INFO] [BetterFps]: Patching net.minecraft.server.dedicated.DedicatedServer... (nz)
[18:33:45] [main/INFO] [Quark ASM]: Transforming net.minecraft.inventory.ContainerMerchant
[18:33:45] [main/INFO] [Quark ASM]: Applying Transformation to method (Names [transferStackInSlot, func_82846_b] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;I)Lnet/minecraft/item/ItemStack;)
[18:33:45] [main/INFO] [Quark ASM]: Located Method, patching...
[18:33:45] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
[18:33:45] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
[18:33:45] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
[18:33:45] [main/INFO] [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
[18:33:45] [main/INFO] [Quark ASM]: Patch result: true
[18:33:45] [main/INFO] [EnderCore ASM]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b]
[18:33:45] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.inventory.ContainerFurnace Finished.
[18:33:45] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.12.2
[18:33:45] [Server thread/INFO] [FML]: MinecraftForge v14.23.5.2847 Initialized
[18:33:45] [Server thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[18:33:45] [Server thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient...
[18:33:45] [Server thread/INFO] [FML]: Replaced 1227 ore ingredients
[18:33:46] [Server thread/INFO] [FML]: Searching C:\Users\weebl\OneDrive\My Documents\Minecraft_server\ATlauncher\servers\MechMagic\.\mods for mods
[18:33:46] [Server thread/INFO] [FML]: Searching C:\Users\weebl\OneDrive\My Documents\Minecraft_server\ATlauncher\servers\MechMagic\.\mods\1.12.2 for mods
[18:33:47] [Server thread/INFO] [FML]: Disabling mod betteradvancements it is client side only.
[18:33:47] [Server thread/WARN] [FML]: 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
[18:33:47] [Server thread/WARN] [FML]: Mod chickenchunks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.4.2.74
[18:33:47] [Server thread/WARN] [FML]: 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.358
[18:33:47] [Server thread/WARN] [FML]: Mod cookingforblockheads is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 6.5.0
[18:33:47] [Server thread/WARN] [FML]: Mod cosmeticarmorreworked is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-v4a
[18:33:47] [Server thread/INFO] [FML]: Disabling mod ctgui it is client side only.
[18:33:48] [Server thread/WARN] [FML]: Mod cyclicmagic is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.19.19
[18:33:48] [Server thread/WARN] [FML]: Mod dailies is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-6
[18:33:48] [Server thread/WARN] [FML]: Mod embers is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.13-hotfix2
[18:33:49] [Server thread/WARN] [FML]: 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
[18:33:49] [Server thread/WARN] [FML]: 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
[18:33:49] [Server thread/WARN] [FML]: 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
[18:33:49] [Server thread/WARN] [FML]: 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
[18:33:49] [Server thread/WARN] [FML]: 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
[18:33:50] [Server thread/WARN] [FML]: 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
[18:33:51] [Server thread/WARN] [FML]: Mod realdrops is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.14
[18:33:51] [Server thread/WARN] [FML]: Mod soot is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.6
[18:33:52] [Server thread/WARN] [FML]: 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
[18:33:52] [Server thread/WARN] [FML]: Mod usefulnullifiers is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.5.0
[18:33:52] [Server thread/WARN] [FML]: Mod vanillafix is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.10-SNAPSHOT
[18:33:52] [Server thread/WARN] [FML]: Mod waystones is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.1.0
[18:33:52] [Server thread/WARN] [FML]: Mod yummy is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.3.0
[18:33:53] [Server thread/INFO] [FML]: Forge Mod Loader has identified 200 mods to load
[18:33:53] [Server thread/INFO] [FML]: Found mod(s) [silentgems] containing declared API package net.silentchaos512.wit.api (owned by WIT) without associated API reference
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for baubleofundying: assets/baubleofundying/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftbuilders: assets/buildcraftbuilders/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftcore: assets/buildcraftcore/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftenergy: assets/buildcraftenergy/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftfactory: assets/buildcraftfactory/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftrobotics: assets/buildcraftrobotics/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftsilicon: assets/buildcraftsilicon/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for buildcrafttransport: assets/buildcrafttransport/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for ceanimals: assets/ceanimals/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for chameleon: assets/chameleon/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for codechickenlib: assets/codechickenlib/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for cofhcore: assets/cofhcore/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for crafttweaker: assets/crafttweaker/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for crafttweakerjei: assets/crafttweakerjei/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for ctdcore: assets/ctdcore/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for cxlibrary: assets/cxlibrary/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for dailies: assets/dailies/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderiobase: assets/enderiobase/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderioconduitsappliedenergistics: assets/enderioconduitsappliedenergistics/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderioconduitsopencomputers: assets/enderioconduitsopencomputers/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderioconduitsrefinedstorage: assets/enderioconduitsrefinedstorage/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderioconduits: assets/enderioconduits/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderiointegrationforestry: assets/enderiointegrationforestry/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderiointegrationtic: assets/enderiointegrationtic/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderiointegrationticlate: assets/enderiointegrationticlate/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderiomachines: assets/enderiomachines/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for enderiopowertools: assets/enderiopowertools/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for fastleafdecay: assets/fastleafdecay/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for foamfix: assets/foamfix/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for forgelin: assets/forgelin/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for microblockcbe: assets/microblockcbe/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for forgemultipartcbe: assets/forgemultipartcbe/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for minecraftmultipartcbe: assets/minecraftmultipartcbe/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for friendlyfire: assets/friendlyfire/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for harvest: assets/harvest/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for hexlands: assets/hexlands/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for incontrol: assets/incontrol/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for initialinventory: assets/initialinventory/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for instantunify: assets/instantunify/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for limelib: assets/limelib/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for login_shield: assets/login_shield/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for mantle: assets/mantle/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for mcjtylib_ng: assets/mcjtylib_ng/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for modtweaker: assets/modtweaker/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for mtlib: assets/mtlib/lang/en_us.lang
[18:33:53] [Server thread/WARN] [FML]: Missing English translation for packguard: assets/packguard/lang/en_us.lang
[18:33:54] [Server thread/WARN] [FML]: Missing English translation for realdrops: assets/realdrops/lang/en_us.lang
[18:33:54] [Server thread/WARN] [FML]: Missing English translation for redstoneflux: assets/redstoneflux/lang/en_us.lang
[18:33:54] [Server thread/WARN] [FML]: Missing English translation for scarecrows: assets/scarecrows/lang/en_us.lang
[18:33:54] [Server thread/WARN] [FML]: Missing English translation for stg: assets/stg/lang/en_us.lang
[18:33:54] [Server thread/WARN] [FML]: Missing English translation for teslacorelib_registries: assets/teslacorelib_registries/lang/en_us.lang
[18:33:54] [Server thread/WARN] [FML]: Missing English translation for unidict: assets/unidict/lang/en_us.lang
[18:33:54] [Server thread/WARN] [FML]: Missing English translation for teamlapen-lib: assets/teamlapen-lib/lang/en_us.lang
[18:33:54] [Server thread/WARN] [FML]: Missing English translation for vampirism_integrations: assets/vampirism_integrations/lang/en_us.lang
[18:33:54] [Server thread/INFO] [FML]: FML has found a non-mod file BetterAdvancements-1.12.2-0.1.0.77.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[18:33:54] [Server thread/INFO] [FML]: 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.
[18:33:54] [Server thread/INFO] [FML]: 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.
[18:33:54] [Server thread/INFO] [FML]: FML has found a non-mod file mcjtytools-0.0.17.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[18:33:56] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, openmodscore, foamfixcore, opencomputers|core, srm-hooks, randompatches, actuallyadditions, ae2stuff, akashictome, appliedenergistics2, aquaculture, astikorcarts, astralsorcery, autoreglib, baubleofundying, baubles, bdlib, betterbuilderswands, bloodmagic, bookshelf, botania, brandonscore, buildcraftcompat, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, ceanimals, chameleon, chickenchunks, chisel, chiselsandbits, claybucket, clockhud, codechickenlib, cofhcore, cofhworld, colossalchests, commoncapabilities, cookingforblockheads, cosmeticarmorreworked, crafttweaker, crafttweakerjei, ctdcore, cucumber, customnpcs, cxlibrary, cyclicmagic, cyclopscore, dailies, darkutils, draconicevolution, dsurround, embers, csb_ench_table, endercore, enderfuge, enderio, enderiobase, enderioconduitsappliedenergistics, enderioconduitsopencomputers, enderioconduitsrefinedstorage, enderioconduits, enderiointegrationforestry, enderiointegrationtic, enderiointegrationticlate, enderiomachines, enderiopowertools, enderstorage, enderutilities, evilcraft, evilcraftcompat, extracells, extrarails, extrautils2, bigreactors, fastleafdecay, flexibletools, foamfix, foamflower, forgelin, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, friendlyfire, ftblib, ftbutilities, fuelcanister, advgenerators, gravelores, guideapi, harvest, hexlands, horsepower, immersivepetroleum, immersivetech, incontrol, industrialforegoing, initialinventory, instantunify, integrateddynamics, integrateddynamicscompat, integrationforegoing, ironbackpacks, ironchest, ironjetpacks, jei, limelib, login_shield, longfallboots, magipsi, mantle, mcjtylib_ng, modtweaker, monk, morefurnaces, morphtool, mputils, mtlib, mysticallib, mysticalworld, naturesaura, netherportalfix, openblocks, opencomputers, openmods, oregen, p455w0rdslib, packguard, patchouli, platforms, progressivebosses, projectintelligence, psi, quantumstorage, quark, railcraft, randomthings, realdrops, reborncore, redstonearsenal, redstoneflux, redstonepaste, xreliquary, rftools, roots, scalinghealth, scarecrows, secretroomsmod, servertabinfo, sgextraparts, shadowmc, silentlib, silentgems, soot, stevescarts, stg, storagedrawers, tconstruct, teslacorelib, teslacorelib_registries, thaumcraft, theoneprobe, thermaldynamics, thermalexpansion, thermalfoundation, tinkertoolleveling, torchmaster, totemic, translocators, treechopper, twilightforest, unidict, usefulnullifiers, vamparasol, teamlapen-lib, vampirism, vampirism_integrations, vanillafix, veining, vending, vc, wanionlib, waterstrainer, waystones, wholetreeaxe, xlfoodmod, yabba, yummy, zerocore, immersiveengineering, orelib, shetiphiancore] at CLIENT
[18:33:56] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, openmodscore, foamfixcore, opencomputers|core, srm-hooks, randompatches, actuallyadditions, ae2stuff, akashictome, appliedenergistics2, aquaculture, astikorcarts, astralsorcery, autoreglib, baubleofundying, baubles, bdlib, betterbuilderswands, bloodmagic, bookshelf, botania, brandonscore, buildcraftcompat, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, ceanimals, chameleon, chickenchunks, chisel, chiselsandbits, claybucket, clockhud, codechickenlib, cofhcore, cofhworld, colossalchests, commoncapabilities, cookingforblockheads, cosmeticarmorreworked, crafttweaker, crafttweakerjei, ctdcore, cucumber, customnpcs, cxlibrary, cyclicmagic, cyclopscore, dailies, darkutils, draconicevolution, dsurround, embers, csb_ench_table, endercore, enderfuge, enderio, enderiobase, enderioconduitsappliedenergistics, enderioconduitsopencomputers, enderioconduitsrefinedstorage, enderioconduits, enderiointegrationforestry, enderiointegrationtic, enderiointegrationticlate, enderiomachines, enderiopowertools, enderstorage, enderutilities, evilcraft, evilcraftcompat, extracells, extrarails, extrautils2, bigreactors, fastleafdecay, flexibletools, foamfix, foamflower, forgelin, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, friendlyfire, ftblib, ftbutilities, fuelcanister, advgenerators, gravelores, guideapi, harvest, hexlands, horsepower, immersivepetroleum, immersivetech, incontrol, industrialforegoing, initialinventory, instantunify, integrateddynamics, integrateddynamicscompat, integrationforegoing, ironbackpacks, ironchest, ironjetpacks, jei, limelib, login_shield, longfallboots, magipsi, mantle, mcjtylib_ng, modtweaker, monk, morefurnaces, morphtool, mputils, mtlib, mysticallib, mysticalworld, naturesaura, netherportalfix, openblocks, opencomputers, openmods, oregen, p455w0rdslib, packguard, patchouli, platforms, progressivebosses, projectintelligence, psi, quantumstorage, quark, railcraft, randomthings, realdrops, reborncore, redstonearsenal, redstoneflux, redstonepaste, xreliquary, rftools, roots, scalinghealth, scarecrows, secretroomsmod, servertabinfo, sgextraparts, shadowmc, silentlib, silentgems, soot, stevescarts, stg, storagedrawers, tconstruct, teslacorelib, teslacorelib_registries, thaumcraft, theoneprobe, thermaldynamics, thermalexpansion, thermalfoundation, tinkertoolleveling, torchmaster, totemic, translocators, treechopper, twilightforest, unidict, usefulnullifiers, vamparasol, teamlapen-lib, vampirism, vampirism_integrations, vanillafix, veining, vending, vc, wanionlib, waterstrainer, waystones, wholetreeaxe, xlfoodmod, yabba, yummy, zerocore, immersiveengineering, orelib, shetiphiancore] at SERVER
[18:33:59] [Server thread/INFO] [Quark ASM]: Transforming net.minecraft.util.DamageSource
[18:33:59] [Server thread/INFO] [Quark ASM]: Applying Transformation to method (Names [causePlayerDamage, func_76365_a] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;)Lnet/minecraft/util/DamageSource;)
[18:33:59] [Server thread/INFO] [Quark ASM]: Located Method, patching...
[18:33:59] [Server thread/INFO] [Quark ASM]: Patch result: true
[18:33:59] [Server thread/ERROR] [FML]: The mod cyclicmagic is expecting signature @FINGERPRINT@ for source Cyclic-1.12.2-1.19.19.jar, however there is no signature matching that description
[18:34:00] [Server thread/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap
[18:34:00] [Server thread/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap
[18:34:01] [Server thread/INFO] [Astral Core]: [AstralTransformer] Transforming thaumcraft.common.lib.events.PlayerEvents : thaumcraft.common.lib.events.PlayerEvents with 1 patches!
[18:34:01] [Server thread/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHRUNICSHIELDINGHOOK
[18:34:01] [Server thread/INFO] [Astral Core]: [AstralTransformer] Transforming pa : net.minecraft.network.NetHandlerPlayServer with 1 patches!
[18:34:01] [Server thread/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHSERVEREXTENDENTITYINTERACTREACH
[18:34:03] [Server thread/INFO] [brandonscore]: Brandon's Core online! Waiting for Draconic Evolution to join the party....
[18:34:03] [Server thread/INFO] [draconicevolution]: Draconic Evolution online!
[18:34:03] [Server thread/INFO] [brandonscore]: Hay! There you are! Now lets destroy some worlds!!
[18:34:03] [Server thread/INFO] [draconicevolution]: Sounds like fun! Lets get to it!
[18:34:06] [Server thread/INFO] [draconicevolution]: Hello Minecraft!!!
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.power.forge.item.InternalPoweredItemMixin
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.item.darksteel.upgrade.DarkSteelUpgradeMixin
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.integration.thaumcraft.ThaumcraftArmorMixin
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.power.forge.item.InternalPoweredItemMixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.power.forge.item.IInternalPoweredItem
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.item.darksteel.upgrade.DarkSteelUpgradeMixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.api.upgrades.IDarkSteelItem
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.integration.thaumcraft.ThaumcraftArmorMixin.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$ITexturePaintableBlock
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$ISolidBlockPaintableBlock
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$IBlockPaintableBlock
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelArmor from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Patching 2 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelArmor
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Added 3 new interfaces: [thaumcraft/api/items/IVisDiscountGear, thaumcraft/api/items/IGoggles, thaumcraft/api/items/IRevealer]
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: 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]
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: 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]
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
[18:34:07] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$INonSolidBlockPaintableBlock
[18:34:07] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderio is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.base.EnderIO.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:10] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemInventoryCharger from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
[18:34:10] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemInventoryCharger
[18:34:10] [Server thread/INFO] [EnderCore Mixins]: 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]
[18:34:10] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
[18:34:10] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelCrook from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
[18:34:10] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelCrook
[18:34:10] [Server thread/INFO] [EnderCore Mixins]: 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]
[18:34:10] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
[18:34:10] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiointegrationtic is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.integration.tic.EnderIOIntegrationTic.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:10] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderioconduits is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.conduits.EnderIOConduits.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:11] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.conduit.me.conduit.MEMixin
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.conduit.me.conduit.MEMixin.
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.conduits.conduit.TileConduitBundle
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Added 1 new interface: [appeng/api/networking/IGridHost]
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Added 3 new methods: [getGridNode(Lappeng/api/util/AEPartLocation;)Lappeng/api/networking/IGridNode;, getCableConnectionType(Lappeng/api/util/AEPartLocation;)Lappeng/api/util/AECableType;, securityBreak()V]
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
[18:34:12] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderioconduitsappliedenergistics is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.conduit.me.EnderIOConduitsAppliedEnergistics.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.conduit.oc.conduit.OCMixin
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.conduit.oc.conduit.OCMixin.
[18:34:12] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderioconduitsopencomputers is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.conduit.oc.EnderIOConduitsOpenComputers.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:12] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderioconduitsrefinedstorage is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.conduit.refinedstorage.EnderIOConduitsRefinedStorage.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.integration.forestry.upgrades.ArmorMixin
[18:34:12] [Server thread/INFO] [EnderCore Mixins]: Skipping mixin due to missing dependencies: [forestry]
[18:34:12] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiointegrationforestry is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.integration.forestry.EnderIOIntegrationForestry.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:13] [Server thread/INFO] [Astral Core]: [AstralTransformer] Transforming aip : net.minecraft.item.ItemStack with 2 patches!
[18:34:13] [Server thread/INFO] [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIP as it can't be applied for side SERVER
[18:34:13] [Server thread/INFO] [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIPEVENT as it can't be applied for side SERVER
[18:34:13] [Server thread/INFO] [Quark ASM]: Transforming net.minecraft.item.ItemStack
[18:34:13] [Server thread/INFO] [Quark ASM]: Applying Transformation to method (Names [getTextComponent, func_151000_E] Descriptor ()Lnet/minecraft/util/text/ITextComponent;)
[18:34:13] [Server thread/INFO] [Quark ASM]: Located Method, patching...
[18:34:13] [Server thread/INFO] [Quark ASM]: Located patch target node ARETURN
[18:34:13] [Server thread/INFO] [Quark ASM]: Patch result: true
[18:34:14] [Server thread/INFO] [Pulsar-tconstruct]: Skipping Pulse craftingtweaksIntegration; missing dependency: craftingtweaks
[18:34:14] [Server thread/INFO] [Pulsar-tconstruct]: Skipping Pulse wailaIntegration; missing dependency: waila
[18:34:14] [Server thread/INFO] [tconstruct]: Preparing to take over the world
[18:34:14] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiointegrationticlate is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.integration.tic.EnderIOIntegrationTicLate.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:14] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiomachines is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.machines.EnderIOMachines.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:16] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiopowertools is not accessible
java.lang.NoSuchMethodException: crazypants.enderio.powertools.EnderIOPowerTools.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
at java.lang.Class.getDeclaredMethod(Unknown Source) ~[?:1.8.0_181]
at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_181]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_181]
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_181]
[18:34:24] [Server thread/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraftforge.common.property.ExtendedBlockState.createState
[18:34:26] [Server thread/WARN] [teslacorelib]: Annotated class 'net.ndrei.teslacorelib.blocks.multipart.MultiPartBlockEvents' not found!
[18:34:31] [Server thread/INFO] [projectintelligence]: Hello Minecraft!!!
[18:34:36] [Server thread/INFO] [FML]: Processing ObjectHolder annotations
[18:34:38] [Server thread/INFO] [FML]: Found 2382 ObjectHolder annotations
[18:34:38] [Server thread/INFO] [FML]: Identifying ItemStackHolder annotations
[18:34:38] [Server thread/INFO] [FML]: Found 2 ItemStackHolder annotations
[18:34:39] [Server thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[18:34:39] [Server thread/INFO] [Actually Additions]: Starting PreInitialization Phase...
[18:34:39] [Forge Version Check/INFO] [forge.VersionCheck]: [randompatches] Starting version check at https://raw.githubusercontent.com/TheRandomLabs/RandomPatches/misc/versions.json
[18:34:39] [Server thread/INFO] [Actually Additions]: Grabbing Configurations...
[18:34:39] [Server thread/INFO] [Actually Additions]: Initializing Tool Materials...
[18:34:39] [Server thread/INFO] [Actually Additions]: Initializing Armor Materials...
[18:34:41] [Server thread/INFO] [Actually Additions]: Initializing Update Checker...
[18:34:41] [Server thread/INFO] [Actually Additions]: PreInitializing ServerProxy...
[18:34:41] [Server thread/INFO] [Actually Additions]: PreInitialization Finished.
[18:34:41] [Actually Additions Update Checker/INFO] [Actually Additions]: Starting Update Check...
[18:34:41] [Actually Additions Update Checker/INFO] [Actually Additions]: Update Check done!
[18:34:41] [Forge Version Check/INFO] [forge.VersionCheck]: [randompatches] Found status: OUTDATED Target: 1.12.2-1.21.0.0
[18:34:41] [Actually Additions Update Checker/INFO] [Actually Additions]: Actually Additions is up to date!
[18:34:41] [Forge Version Check/INFO] [forge.VersionCheck]: [chickenchunks] Starting version check at http://chickenbones.net/Files/notification/version.php?query=forge&version=1.12&file=ChickenChunks
[18:34:41] [Server thread/INFO] [AE2:S]: Pre Initialization ( started )
[18:34:43] [Forge Version Check/INFO] [forge.VersionCheck]: [chickenchunks] Found status: BETA Target: null
[18:34:43] [Forge Version Check/INFO] [forge.VersionCheck]: [shadowmc] Starting version check at https://update.shadowfacts.net/shadowmc
[18:34:43] [Forge Version Check/INFO] [forge.VersionCheck]: [ctdcore] Starting version check at https://raw.githubusercontent.com/MasterGeneral156/Version/master/CTD-Core.json
[18:34:43] [Forge Version Check/INFO] [forge.VersionCheck]: [ctdcore] Found status: UP_TO_DATE Target: null
[18:34:43] [Forge Version Check/INFO] [forge.VersionCheck]: [codechickenlib] Starting version check at http://chickenbones.net/Files/notification/version.php?query=forge&version=1.12&file=CodeChickenLib
[18:34:43] [Forge Version Check/INFO] [forge.VersionCheck]: [codechickenlib] Found status: BETA Target: null
[18:34:45] [Forge Version Check/INFO] [forge.VersionCheck]: [vampirism] Starting version check at http://maxanier.de/projects/vampirism/versions.json
[18:34:45] [Forge Version Check/INFO] [forge.VersionCheck]: [vampirism] Found status: OUTDATED Target: 1.6.2
[18:34:45] [Forge Version Check/INFO] [forge.VersionCheck]: [totemic] Starting version check at https://raw.githubusercontent.com/TeamTotemic/Totemic/version/version.json
[18:34:45] [Forge Version Check/INFO] [forge.VersionCheck]: [totemic] Found status: AHEAD Target: null
[18:34:45] [Forge Version Check/INFO] [forge.VersionCheck]: [cofhworld] Starting version check at https://raw.github.com/cofh/version/master/cofhworld_update.json
[18:34:46] [Forge Version Check/INFO] [forge.VersionCheck]: [cofhworld] Found status: UP_TO_DATE Target: null
[18:34:46] [Forge Version Check/INFO] [forge.VersionCheck]: [immersiveengineering] Starting version check at https://raw.githubusercontent.com/BluSunrize/ImmersiveEngineering/master/changelog.json
[18:34:46] [Forge Version Check/INFO] [forge.VersionCheck]: [immersiveengineering] Found status: UP_TO_DATE Target: null
[18:34:46] [Forge Version Check/INFO] [forge.VersionCheck]: [thermalfoundation] Starting version check at https://raw.github.com/cofh/version/master/thermalfoundation_update.json
[18:34:46] [Forge Version Check/INFO] [forge.VersionCheck]: [thermalfoundation] Found status: UP_TO_DATE Target: null
[18:34:46] [Forge Version Check/INFO] [forge.VersionCheck]: [thermalexpansion] Starting version check at https://raw.github.com/cofh/version/master/thermalexpansion_update.json
[18:34:47] [Forge Version Check/INFO] [forge.VersionCheck]: [thermalexpansion] Found status: UP_TO_DATE Target: null
[18:34:47] [Forge Version Check/INFO] [forge.VersionCheck]: [vanillafix] Starting version check at https://gist.githubusercontent.com/Runemoro/28e8cf4c24a5f17f508a5d34f66d229f/raw/vanillafix_update.json
[18:34:47] [Forge Version Check/INFO] [forge.VersionCheck]: [vanillafix] Found status: AHEAD Target: null
[18:34:47] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Starting version check at https://mod-buildcraft.com/version/versions.json
[18:34:47] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Found status: UP_TO_DATE Target: null
[18:34:47] [Forge Version Check/INFO] [forge.VersionCheck]: [enderstorage] Starting version check at http://chickenbones.net/Files/notification/version.php?query=forge&version=1.12&file=EnderStorage
[18:34:47] [Forge Version Check/INFO] [forge.VersionCheck]: [enderstorage] Found status: BETA Target: null
[18:34:47] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: AHEAD Target: null
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [platforms] Starting version check at https://gist.githubusercontent.com/ShetiPhian/5a4332ca6221ae61ab3c6d531a989f21/raw/Platforms
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [orelib] Starting version check at https://raw.githubusercontent.com/OreCruncher/OreLib/master/version.json
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [orelib] Found status: UP_TO_DATE Target: null
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [csb_ench_table] Starting version check at https://raw.githubusercontent.com/crazysnailboy/EnchantingTable/master/update.json
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [csb_ench_table] Found status: UP_TO_DATE Target: null
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [fastleafdecay] Starting version check at http://www.olafkeijsers.net/fastleafdecay-update.json
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [fastleafdecay] Found status: UP_TO_DATE Target: null
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [industrialforegoing] Starting version check at https://raw.githubusercontent.com/Buuz135/Industrial-Foregoing/master/update.json
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [industrialforegoing] Found status: BETA Target: null
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [twilightforest] Starting version check at https://raw.githubusercontent.com/TeamTwilight/twilightforest/1.12.x/update.json
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [twilightforest] Found status: AHEAD Target: null
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [redstonearsenal] Starting version check at https://raw.github.com/cofh/version/master/redstonearsenal_update.json
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [redstonearsenal] Found status: UP_TO_DATE Target: null
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [secretroomsmod] Starting version check at http://www.wynprice.com/update_jsons/secretroomsmod.json
[18:34:50] [Forge Version Check/INFO] [forge.VersionCheck]: [railcraft] Starting version check at http://www.railcraft.info/railcraft_versions
[18:34:51] [Server thread/INFO] [AE2:S]: Starting AE2 VersionChecker
[18:34:51] [Server thread/INFO] [AE2:S]: Pre Initialization ( ended after 10300ms )
[18:34:51] [AE2 VersionChecker/INFO] [AE2:S]: Last check was just recently.
[18:34:51] [Server thread/INFO] [bdlib]: bdlib 1.14.3.12 loaded
[18:34:51] [AE2 VersionChecker/INFO] [AE2:S]: Stopping AE2 VersionChecker
[18:34:51] [Server thread/INFO] [bdlib]: Initialized network channel 'bdew.multiblock' for mod 'bdlib'
[18:34:51] [Server thread/INFO] [bdlib]: Loading internal config files for mod AE2 Stuff
[18:34:51] [Server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/weebl/OneDrive/My%20Documents/Minecraft_server/ATlauncher/servers/MechMagic/./mods/ae2stuff-0.7.0.4-mc1.12.2.jar!/assets/ae2stuff/config/tuning.cfg
[18:34:52] [Server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/weebl/OneDrive/My%20Documents/Minecraft_server/ATlauncher/servers/MechMagic/./mods/ae2stuff-0.7.0.4-mc1.12.2.jar!/assets/ae2stuff/config/recipes.cfg
[18:34:52] [Forge Version Check/INFO] [forge.VersionCheck]: [railcraft] Found status: BETA Target: null
[18:34:53] [Forge Version Check/INFO] [forge.VersionCheck]: [xlfoodmod] Starting version check at https://raw.githubusercontent.com/mariot7/XL-Food-Mod/master/update.json
[18:34:53] [Forge Version Check/INFO] [forge.VersionCheck]: [xlfoodmod] Found status: UP_TO_DATE Target: null
[18:34:53] [Forge Version Check/INFO] [forge.VersionCheck]: [openmods] Starting version check at http://openmods.info/versions/openmodslib.json
[18:34:53] [Forge Version Check/INFO] [forge.VersionCheck]: [openmods] Found status: AHEAD Target: null
[18:34:53] [Forge Version Check/INFO] [forge.VersionCheck]: [packguard] Starting version check at https://coolsquid.me/api/version/packguard.json
[18:34:54] [Server thread/INFO] [bdlib]: Loading user config files for mod AE2 Stuff
[18:34:54] [Server thread/INFO] [bdlib]: Config loading for mod AE2 Stuff finished
[18:34:54] [Server thread/INFO] [bdlib]: Loaded creative tabs for ae2stuff
[18:35:04] [Server thread/INFO] [Astral Core]: [AstralTransformer] Transforming wh : net.minecraft.entity.ai.attributes.ModifiableAttributeInstance with 1 patches!
[18:35:04] [Server thread/INFO] [Astral Core]: [AstralTransformer] Applied patch PATCHPOSTPROCESSATTRIBUTES
[18:35:04] [Server thread/INFO] [Astral Sorcery]: Crafttweaker found! Adding recipe handlers...
[18:35:06] [Server thread/INFO] [Quark]: 'Right click harvest' is forcefully disabled as it's incompatible with the following loaded mods: [harvest]
[18:35:07] [Server thread/INFO] [Quark]: 'Ender watcher' is forcefully disabled as it's incompatible with the following loaded mods: [botania]
[18:35:07] [Server thread/INFO] [Quark]: 'Dispensers place seeds' is forcefully disabled as it's incompatible with the following loaded mods: [botania]
[18:35:07] [Server thread/INFO] [Quark]: 'Charcoal block' is forcefully disabled as it's incompatible with the following loaded mods: [actuallyadditions]
[18:35:07] [Server thread/INFO] [Quark]: Module building is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module vanity is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module experimental is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module management is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module tweaks is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module automation is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module decoration is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module misc is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module world is enabled
[18:35:07] [Server thread/INFO] [Quark]: Module client is enabled
[18:35:09] [Server thread/INFO] [betterbuilderswands]: Access transform success createStackedBlock (func_180643_i).
[18:35:12] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fluid_drain_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:12] [Server thread/WARN] [net.minecraft.network.datasync.EntityDataManager]: defineId called for: class net.minecraft.entity.item.EntityMinecartFurnace from class com.lothrazar.cyclicmagic.item.minecart.EntityGoldFurnaceMinecart
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fire_starter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `wireless_transmitter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `wireless_receiver_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicpeat_generator_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicpeat_farm_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiccable_wireless_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiccable_wireless_energy_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiccable_wireless_fluid_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `item_pipe_sort_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `item_pipe_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `item_pump_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `energy_pipe_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `energy_pump_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fluid_pipe_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fluid_pump_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bundled_pipe_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiclibrary_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiclibrary_ctrl_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `plate_vector_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `builder_pattern_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `magnet_block_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `magnet_anti_block_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dehydrator_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vacuum_block_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beacon_potion_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `moon_sensor_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clock_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `target_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beacon_redstone_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `sprinkler_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `block_forester_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `auto_packager_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `miner_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `block_hydrator_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicblock_anvil_magma_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `melter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `solidifier_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicblock_anvil_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `harveseter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicblock_enchanter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `exp_pylon_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `builder_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `uncrafting_block_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicminer_smart_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `placer_block_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `password_block_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicblock_user_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicbattery_infinite_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicbattery_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagictrash_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicworkbench_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicscreen_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicscreentarget_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicauto_crafter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicentity_detector_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicfan_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicblock_fishing_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicblock_disenchanter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bucketstorage`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `laser_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `sound_player_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dice_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
[18:35:13] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `imbuer_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.