· 6 years ago · Oct 04, 2019, 05:30 AM
1
2
31
42
53
64
75
86
97
108
119
1210
1311
1412
1513
1614
1715
1816
1917
2018
2119
2220
2321
2422
2523
2624
2725
2826
2927
3028
3129
3230
3331
3432
3533
3634
3735
3836
3937
4038
4139
4240
4341
4442
4543
4644
4745
4846
4947
5048
5149
5250
5351
5452
5553
5654
5755
5856
5957
6058
6159
6260
6361
6462
6563
6664
6765
6866
6967
7068
7169
7270
7371
7472
7573
7674
7775
7876
7977
8078
8179
8280
8381
8482
8583
8684
8785
8886
8987
9088
9189
9290
9391
9492
9593
9694
9795
9896
9997
10098
10199
102100
103101
104102
105103
106104
107105
108106
109107
110108
111109
112110
113111
114112
115113
116114
117115
118116
119117
120118
121119
122120
123121
124122
125123
126124
127125
128126
129127
130128
131129
132130
133131
134132
135133
136134
137135
138136
139137
140138
141139
142140
143141
144142
145143
146144
147145
148146
149147
150148
151149
152150
153151
154152
155153
156154
157155
158156
159157
160158
161159
162160
163161
164162
165163
166164
167165
168166
169167
170168
171169
172170
173171
174172
175173
176174
177175
178176
179177
180178
181179
182180
183181
184182
185183
186184
187185
188186
189187
190188
191189
192190
193191
194192
195193
196194
197195
198196
199197
200198
201199
202200
203201
204202
205203
206204
207205
208206
209207
210208
211209
212210
213211
214212
215213
216214
217215
218216
219217
220218
221219
222220
223221
224222
225223
226224
227225
228226
229227
230228
231229
232230
233231
234232
235233
236234
237235
238236
239237
240238
241239
242240
243241
244242
245243
246244
247245
248246
249247
250248
251249
252250
253251
254252
255253
256254
257255
258256
259257
260258
261259
262260
263261
264262
265263
266264
267265
268266
269267
270268
271269
272270
273271
274272
275273
276274
277275
278276
279277
280278
281279
282280
283281
284282
285283
286284
287285
288286
289287
290288
291289
292290
293291
294292
295293
296294
297295
298296
299297
300298
301299
302300
303301
304302
305303
306304
307305
308306
309307
310308
311309
312310
313311
314312
315313
316314
317315
318316
319317
320318
321319
322320
323321
324322
325323
326324
327325
328326
329327
330328
331329
332330
333331
334332
335333
336334
337335
338336
339337
340338
341339
342340
343341
344342
345343
346344
347345
348346
349347
350348
351349
352350
353351
354352
355353
356354
357355
358356
359357
360358
361359
362360
363361
364362
365363
366364
367365
368366
369367
370368
371369
372370
373371
374372
375373
376374
377375
378376
379377
380378
381379
382380
383381
384382
385383
386384
387385
388386
389387
390388
391389
392390
393391
394392
395393
396394
397395
398396
399397
400398
401399
402400
403401
404402
405403
406404
407405
408406
409407
410408
411409
412410
413411
414412
415413
416414
417415
418416
419417
420418
421419
422420
423421
424422
425423
426424
427425
428426
429427
430428
431429
432430
433431
434432
435433
436434
437435
438436
439437
440438
441439
442440
443441
444442
445443
446444
447445
448446
449447
450448
451449
452450
453451
454452
455453
456454
457455
458456
459457
460458
461459
462460
463461
464462
465463
466464
467465
468466
469467
470468
471469
472470
473471
474472
475473
476474
477475
478476
479477
480478
481479
482480
483481
484482
485483
486484
487485
488486
489487
490488
491489
492490
493491
494492
495493
496494
497495
498496
499497
500498
501499
502500
503501
504502
505503
506504
507505
508506
509507
510508
511509
512510
513511
514512
515513
516514
517515
518516
519517
520518
521519
522520
523521
524522
525523
526524
527525
528526
529527
530528
531529
532530
533531
534532
535533
536534
537535
538536
539537
540538
541539
542540
543541
544542
545543
546544
547545
548546
549547
550548
551549
552550
553551
554552
555553
556554
557555
558556
559557
560558
561559
562560
563561
564562
565563
566564
567565
568566
569567
570568
571569
572570
573571
574572
575573
576574
577575
578576
579577
580578
581579
582580
583581
584582
585583
586584
587585
588586
589587
590588
591589
592590
593591
594592
595593
596594
597595
598596
599597
600598
601599
602600
603601
604602
605603
606604
607605
608606
609607
610608
611609
612610
613611
614612
615613
616614
617615
618616
619617
620618
621619
622620
623621
624622
625623
626624
627625
628626
629627
630628
631629
632630
633631
634632
635633
636634
637635
638636
639637
640638
641639
642640
643641
644642
645643
646644
647645
648646
649647
650648
651649
652650
653651
654652
655653
656654
657655
658656
659657
660658
661659
662660
663661
664662
665663
666664
667665
668666
669667
670668
671669
672670
673671
674672
675673
676674
677675
678676
679677
680678
681679
682680
683681
684682
685683
686684
687685
688686
689687
690688
691689
692690
693691
694692
695693
696694
697695
698696
699697
700698
701699
702700
703701
704702
705703
706704
707705
708706
709707
710708
711709
712710
713711
714712
715713
716714
717715
718716
719717
720718
721719
722720
723721
724722
725723
726724
727725
728726
729727
730728
731729
732730
733731
734732
735733
736734
737735
738736
739737
740738
741739
742740
743741
744742
745743
746744
747745
748746
749747
750748
751749
752750
753751
754752
755753
756754
757755
758756
759757
760758
761759
762760
763761
764762
765763
766764
767765
768766
769767
770768
771769
772770
773771
774772
775773
776774
777775
778776
779777
780778
781779
782780
783781
784782
785783
786784
787785
788786
789787
790788
791789
792790
793791
794792
795793
796794
797795
798796
799797
800798
801799
802800
803801
804802
805803
806804
807805
808806
809807
810808
811809
812810
813811
814812
815813
816814
817815
818816
819817
820818
821819
822820
823821
824822
825823
826824
827825
828826
829827
830828
831829
832830
833831
834832
835833
836834
837835
838836
839837
840838
841839
842840
843841
844842
845843
846844
847845
848846
849847
850848
851849
852850
853851
854852
855853
856854
857855
858856
859857
860858
861859
862860
863861
864862
865863
866864
867865
868866
869867
870868
871869
872870
873871
874872
875873
876874
877875
878876
879877
880878
881879
882880
883881
884882
885883
886884
887885
888886
889887
890888
891889
892890
893891
894892
895893
896894
897895
898896
899897
900898
901899
902900
903901
904902
905903
906904
907905
908906
909907
910908
911909
912910
913911
914912
915913
916914
917915
918916
919917
920918
921919
922920
923921
924922
925923
926924
927925
928926
929927
930928
931929
932930
933931
934932
935933
936934
937935
938936
939937
940938
941939
942940
943941
944942
945943
946944
947945
948946
949947
950948
951949
952950
953951
954952
955953
956954
957955
958956
959957
960958
961959
962960
963961
964962
965963
966964
967965
968966
969967
970968
971969
972970
973971
974972
975973
976974
977975
978976
979977
980978
981979
982980
983981
984982
985983
986984
987985
988986
989987
990988
991989
992990
993991
994992
995993
996994
997995
998996
999997
1000998
1001999
10021000
10031001
10041002
10051003
10061004
10071005
10081006
10091007
10101008
10111009
10121010
10131011
10141012
10151013
10161014
10171015
10181016
10191017
10201018
10211019
10221020
10231021
10241022
10251023
10261024
10271025
10281026
10291027
10301028
10311029
10321030
10331031
10341032
10351033
10361034
10371035
10381036
10391037
10401038
10411039
10421040
10431041
10441042
10451043
10461044
10471045
10481046
10491047
10501048
10511049
10521050
10531051
10541052
10551053
10561054
10571055
10581056
10591057
10601058
10611059
10621060
10631061
10641062
10651063
10661064
10671065
10681066
10691067
10701068
10711069
10721070
10731071
10741072
10751073
10761074
10771075
10781076
10791077
10801078
10811079
10821080
10831081
10841082
10851083
10861084
10871085
10881086
10891087
10901088
10911089
10921090
10931091
10941092
10951093
10961094
10971095
10981096
10991097
11001098
11011099
11021100
11031101
11041102
11051103
11061104
11071105
11081106
11091107
11101108
11111109
11121110
11131111
11141112
11151113
11161114
11171115
11181116
11191117
11201118
11211119
11221120
11231121
11241122
11251123
11261124
11271125
11281126
11291127
11301128
11311129
11321130
11331131
11341132
11351133
11361134
11371135
11381136
11391137
11401138
11411139
11421140
11431141
11441142
11451143
11461144
11471145
11481146
11491147
11501148
11511149
11521150
11531151
11541152
11551153
11561154
11571155
11581156
11591157
11601158
11611159
11621160
11631161
11641162
11651163
11661164
11671165
11681166
11691167
11701168
11711169
11721170
11731171
11741172
11751173
11761174
11771175
11781176
11791177
11801178
11811179
11821180
11831181
11841182
11851183
11861184
11871185
11881186
11891187
11901188
11911189
11921190
11931191
11941192
11951193
11961194
11971195
11981196
11991197
12001198
12011199
12021200
12031201
12041202
12051203
12061204
12071205
12081206
12091207
12101208
12111209
12121210
12131211
12141212
12151213
12161214
12171215
12181216
12191217
12201218
12211219
12221220
12231221
12241222
12251223
12261224
12271225
12281226
12291227
12301228
12311229
12321230
12331231
12341232
12351233
12361234
12371235
12381236
12391237
12401238
12411239
12421240
12431241
12441242
12451243
12461244
12471245
12481246
12491247
12501248
12511249
12521250
12531251
12541252
12551253
12561254
12571255
12581256
12591257
12601258
12611259
12621260
12631261
12641262
12651263
12661264
12671265
12681266
12691267
12701268
12711269
12721270
12731271
12741272
12751273
12761274
12771275
12781276
12791277
12801278
12811279
12821280
12831281
12841282
12851283
12861284
12871285
12881286
12891287
12901288
12911289
12921290
12931291
12941292
12951293
12961294
12971295
12981296
12991297
13001298
13011299
13021300
13031301
13041302
13051303
13061304
13071305
13081306
13091307
13101308
13111309
13121310
13131311
13141312
13151313
13161314
13171315
13181316
13191317
13201318
13211319
13221320
13231321
13241322
13251323
13261324
13271325
13281326
13291327
13301328
13311329
13321330
13331331
13341332
13351333
13361334
13371335
13381336
13391337
13401338
13411339
13421340
13431341
13441342
13451343
13461344
13471345
13481346
13491347
13501348
13511349
13521350
13531351
13541352
13551353
13561354
13571355
13581356
13591357
13601358
13611359
13621360
13631361
13641362
13651363
13661364
13671365
13681366
13691367
13701368
13711369
13721370
13731371
13741372
13751373
13761374
13771375
13781376
13791377
13801378
13811379
13821380
13831381
13841382
13851383
13861384
13871385
13881386
13891387
13901388
13911389
13921390
13931391
13941392
13951393
13961394
13971395
13981396
13991397
14001398
14011399
14021400
14031401
14041402
14051403
14061404
14071405
14081406
14091407
14101408
14111409
14121410
14131411
14141412
14151413
14161414
14171415
14181416
14191417
14201418
14211419
14221420
14231421
14241422
14251423
14261424
14271425
14281426
14291427
14301428
14311429
14321430
14331431
14341432
14351433
14361434
14371435
14381436
14391437
14401438
14411439
14421440
14431441
14441442
14451443
14461444
14471445
14481446
14491447
14501448
14511449
14521450
14531451
14541452
14551453
14561454
14571455
14581456
14591457
14601458
14611459
14621460
14631461
14641462
14651463
14661464
14671465
14681466
14691467
14701468
14711469
14721470
14731471
14741472
14751473
14761474
14771475
14781476
14791477
14801478
14811479
14821480
14831481
14841482
14851483
14861484
14871485
14881486
14891487
14901488
14911489
14921490
14931491
14941492
14951493
14961494
14971495
14981496
14991497
15001498
15011499
15021500
15031501
15041502
15051503
15061504
15071505
15081506
15091507
15101508
15111509
15121510
15131511
15141512
15151513
15161514
15171515
15181516
15191517
15201518
15211519
15221520
15231521
15241522
15251523
15261524
15271525
15281526
15291527
15301528
15311529
15321530
15331531
15341532
15351533
15361534
15371535
15381536
15391537
15401538
15411539
15421540
15431541
15441542
15451543
15461544
15471545
15481546
15491547
15501548
15511549
15521550
15531551
15541552
15551553
15561554
15571555
15581556
15591557
15601558
15611559
15621560
15631561
15641562
15651563
15661564
15671565
15681566
15691567
15701568
15711569
15721570
15731571
15741572
15751573
15761574
15771575
15781576
15791577
15801578
15811579
15821580
15831581
15841582
15851583
15861584
15871585
15881586
15891587
15901588
15911589
15921590
15931591
15941592
15951593
15961594
15971595
15981596
15991597
16001598
16011599
16021600
16031601
16041602
16051603
16061604
16071605
16081606
16091607
16101608
16111609
16121610
16131611
16141612
16151613
16161614
16171615
16181616
16191617
16201618
16211619
16221620
16231621
16241622
16251623
16261624
16271625
16281626
16291627
16301628
16311629
16321630
16331631
16341632
16351633
16361634
16371635
16381636
16391637
16401638
16411639
16421640
16431641
16441642
16451643
16461644
16471645
16481646
16491647
16501648
16511649
16521650
16531651
16541652
16551653
16561654
16571655
16581656
16591657
16601658
16611659
16621660
16631661
16641662
16651663
16661664
16671665
16681666
16691667
16701668
16711669
16721670
16731671
16741672
16751673
16761674
16771675
16781676
16791677
16801678
16811679
16821680
16831681
16841682
16851683
16861684
16871685
16881686
16891687
16901688
16911689
16921690
16931691
16941692
16951693
16961694
16971695
16981696
16991697
17001698
17011699
17021700
17031701
17041702
17051703
17061704
17071705
17081706
17091707
17101708
17111709
17121710
17131711
17141712
17151713
17161714
17171715
17181716
17191717
17201718
17211719
17221720
17231721
17241722
17251723
17261724
17271725
17281726
17291727
17301728
17311729
17321730
17331731
17341732
17351733
17361734
17371735
17381736
17391737
17401738
17411739
17421740
17431741
17441742
17451743
17461744
17471745
17481746
17491747
17501748
17511749
17521750
17531751
17541752
17551753
17561754
17571755
17581756
17591757
17601758
17611759
17621760
17631761
17641762
17651763
17661764
17671765
17681766
17691767
17701768
17711769
17721770
17731771
17741772
17751773
17761774
17771775
17781776
17791777
17801778
17811779
17821780
17831781
17841782
17851783
17861784
17871785
17881786
17891787
17901788
17911789
17921790
17931791
17941792
17951793
17961794
17971795
17981796
17991797
18001798
18011799
18021800
18031801
18041802
18051803
18061804
18071805
18081806
18091807
18101808
18111809
18121810
18131811
18141812
18151813
18161814
18171815
18181816
18191817
18201818
18211819
18221820
18231821
18241822
18251823
18261824
18271825
18281826
18291827
18301828
18311829
18321830
18331831
18341832
18351833
18361834
18371835
18381836
18391837
18401838
18411839
18421840
18431841
18441842
18451843
18461844
18471845
18481846
18491847
18501848
18511849
18521850
18531851
18541852
18551853
18561854
18571855
18581856
18591857
18601858
18611859
18621860
18631861
18641862
18651863
18661864
18671865
18681866
18691867
18701868
18711869
18721870
18731871
18741872
18751873
18761874
18771875
18781876
18791877
18801878
18811879
18821880
18831881
18841882
18851883
18861884
18871885
18881886
18891887
18901888
18911889
18921890
18931891
18941892
18951893
18961894
18971895
18981896
18991897
19001898
19011899
19021900
19031901
19041902
19051903
19061904
19071905
19081906
19091907
19101908
19111909
19121910
19131911
19141912
19151913
19161914
19171915
19181916
19191917
19201918
19211919
19221920
19231921
19241922
19251923
19261924
19271925
19281926
19291927
19301928
19311929
19321930
19331931
19341932
19351933
19361934
19371935
19381936
19391937
19401938
19411939
19421940
19431941
19441942
19451943
19461944
19471945
19481946
19491947
19501948
19511949
19521950
19531951
19541952
19551953
19561954
19571955
19581956
19591957
19601958
19611959
19621960
19631961
19641962
19651963
19661964
19671965
19681966
19691967
19701968
19711969
19721970
19731971
19741972
19751973
19761974
19771975
19781976
19791977
19801978
19811979
19821980
19831981
19841982
19851983
19861984
19871985
19881986
19891987
19901988
19911989
19921990
19931991
19941992
19951993
19961994
19971995
19981996
19991997
20001998
20011999
20022000
20032001
20042002
20052003
20062004
20072005
20082006
20092007
20102008
20112009
20122010
20132011
20142012
20152013
20162014
20172015
20182016
20192017
20202018
20212019
20222020
20232021
20242022
20252023
20262024
20272025
20282026
20292027
20302028
20312029
20322030
20332031
20342032
20352033
20362034
20372035
20382036
20392037
20402038
20412039
20422040
20432041
20442042
20452043
20462044
20472045
20482046
20492047
20502048
20512049
20522050
20532051
20542052
20552053
20562054
20572055
20582056
20592057
20602058
20612059
20622060
20632061
20642062
20652063
20662064
20672065
20682066
20692067
20702068
20712069
20722070
20732071
20742072
20752073
20762074
20772075
20782076
20792077
20802078
20812079
20822080
20832081
20842082
20852083
20862084
20872085
20882086
20892087
20902088
20912089
20922090
20932091
20942092
20952093
20962094
20972095
20982096
20992097
21002098
21012099
21022100
21032101
21042102
21052103
21062104
21072105
21082106
21092107
21102108
21112109
21122110
21132111
21142112
21152113
21162114
21172115
21182116
21192117
21202118
21212119
21222120
21232121
21242122
21252123
21262124
21272125
21282126
21292127
21302128
21312129
21322130
21332131
21342132
21352133
21362134
21372135
21382136
21392137
21402138
21412139
21422140
21432141
21442142
21452143
21462144
21472145
21482146
21492147
21502148
21512149
21522150
21532151
21542152
21552153
21562154
21572155
21582156
21592157
21602158
21612159
21622160
21632161
21642162
21652163
21662164
21672165
21682166
21692167
21702168
21712169
21722170
21732171
21742172
21752173
21762174
21772175
21782176
21792177
21802178
21812179
21822180
21832181
21842182
21852183
21862184
21872185
21882186
21892187
21902188
21912189
21922190
21932191
21942192
21952193
21962194
21972195
21982196
21992197
22002198
22012199
22022200
22032201
22042202
22052203
22062204
22072205
22082206
22092207
22102208
22112209
22122210
22132211
22142212
22152213
22162214
22172215
22182216
22192217
22202218
22212219
22222220
22232221
22242222
22252223
22262224
22272225
22282226
22292227
22302228
22312229
22322230
22332231
22342232
22352233
22362234
22372235
22382236
22392237
22402238
22412239
22422240
22432241
22442242
22452243
22462244
22472245
22482246
22492247
22502248
22512249
22522250
22532251
22542252
22552253
22562254
22572255
22582256
22592257
22602258
22612259
22622260
22632261
22642262
22652263
22662264
22672265
22682266
22692267
22702268
22712269
22722270
22732271
22742272
22752273
22762274
22772275
22782276
22792277
22802278
22812279
22822280
22832281
22842282
22852283
22862284
22872285
22882286
22892287
22902288
22912289
22922290
22932291
22942292
22952293
22962294
22972295
22982296
22992297
23002298
23012299
23022300
23032301
23042302
23052303
23062304
23072305
23082306
23092307
23102308
23112309
23122310
23132311
23142312
23152313
23162314
23172315
23182316
23192317
23202318
23212319
23222320
23232321
23242322
23252323
23262324
23272325
23282326
23292327
23302328
23312329
23322330
23332331
23342332
23352333
23362334
23372335
23382336
23392337
23402338
23412339
23422340
23432341
23442342
23452343
23462344
23472345
23482346
23492347
23502348
23512349
23522350
23532351
23542352
23552353
23562354
23572355
23582356
23592357
23602358
23612359
23622360
23632361
23642362
23652363
23662364
23672365
23682366
23692367
23702368
23712369
23722370
23732371
23742372
23752373
23762374
23772375
23782376
23792377
23802378
23812379
23822380
23832381
23842382
23852383
23862384
23872385
23882386
23892387
23902388
23912389
23922390
23932391
23942392
23952393
23962394
23972395
23982396
23992397
24002398
24012399
24022400
24032401
24042402
24052403
24062404
24072405
24082406
24092407
24102408
24112409
24122410
24132411
24142412
24152413
24162414
24172415
24182416
24192417
24202418
24212419
24222420
24232421
24242422
24252423
24262424
24272425
24282426
24292427
24302428
24312429
24322430
24332431
24342432
24352433
24362434
24372435
24382436
24392437
24402438
24412439
24422440
24432441
24442442
24452443
24462444
24472445
24482446
24492447
24502448
24512449
24522450
24532451
24542452
24552453
24562454
24572455
24582456
24592457
24602458
24612459
24622460
24632461
24642462
24652463
24662464
24672465
24682466
24692467
24702468
24712469
24722470
24732471
24742472
24752473
24762474
24772475
24782476
24792477
24802478
24812479
24822480
24832481
24842482
24852483
24862484
24872485
24882486
24892487
24902488
24912489
24922490
24932491
24942492
24952493
24962494
24972495
24982496
24992497
25002498
25012499
25022500
25032501
25042502
25052503
25062504
25072505
25082506
25092507
25102508
25112509
25122510
25132511
25142512
25152513
25162514
25172515
25182516
25192517
25202518
25212519
25222520
25232521
25242522
25252523
25262524
25272525
25282526
25292527
25302528
25312529
25322530
25332531
25342532
25352533
25362534
25372535
25382536
25392537
25402538
25412539
25422540
25432541
25442542
25452543
25462544
25472545
25482546
25492547
25502548
25512549
25522550
25532551
25542552
25552553
25562554
25572555
25582556
25592557
25602558
25612559
25622560
25632561
25642562
25652563
25662564
25672565
25682566
25692567
25702568
25712569
25722570
25732571
25742572
25752573
25762574
25772575
25782576
25792577
25802578
25812579
25822580
25832581
25842582
25852583
25862584
25872585
25882586
25892587
25902588
25912589
25922590
25932591
25942592
25952593
25962594
25972595
25982596
25992597
26002598
26012599
26022600
26032601
26042602
26052603
26062604
26072605
26082606
26092607
26102608
26112609
26122610
26132611
26142612
26152613
26162614
26172615
26182616
26192617
26202618
26212619
26222620
26232621
2624
2625[05:15:56] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
2626[05:15:57] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
2627[05:15:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
2628[05:15:57] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2838 for Minecraft 1.12.2 loading
2629[05:15:57] [main/INFO] [FML]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_222, running on Linux:amd64:5.1.11-1.el7.elrepo.x86_64, installed at /usr/local/openjdk-8
2630[05:15:57] [main/INFO] [FML]: Searching /home/minecraft/multicraft/servers/server91171/./mods for mods
2631[05:15:57] [main/INFO] [FML]: Searching /home/minecraft/multicraft/servers/server91171/./mods/1.12.2 for mods
2632[05:15:57] [main/INFO] [FML]: Loading tweaker guichaguri.betterfps.tweaker.BetterFpsTweaker from BetterFps-1.4.8(1).jar
2633[05:15:57] [main/INFO] [FML]: Loading tweaker codechicken.asm.internal.Tweaker from ChickenASM-1.12-1.0.2.7.jar
2634[05:15:57] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in CTM-MC1.12.2-0.3.3.22.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
2635[05:15:57] [main/WARN] [FML]: The coremod team.chisel.ctm.client.asm.CTMCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
2636[05:15:57] [main/WARN] [FML]: The coremod CTMCorePlugin (team.chisel.ctm.client.asm.CTMCorePlugin) is not signed!
2637[05:15:57] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in foamfix-0.10.5-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
2638[05:15:57] [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
2639[05:15:57] [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.
2640[05:15:57] [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
2641[05:15:57] [main/WARN] [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
2642[05:15:57] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.63.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
2643[05:15:57] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
2644[05:15:57] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Mekanism-1.12.2-9.8.2.389.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
2645[05:15:57] [main/WARN] [FML]: The coremod mekanism.coremod.MekanismCoremod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
2646[05:15:57] [main/WARN] [FML]: The coremod MekanismCoremod (mekanism.coremod.MekanismCoremod) is not signed!
2647[05:15:57] [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.
2648[05:15:57] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
2649[05:15:57] [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
2650[05:15:57] [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.
2651[05:15:57] [main/WARN] [FML]: The coremod SecretRoomsMod-Core (com.wynprice.secretroomsmod.core.SecretRoomsCore) is not signed!
2652[05:15:57] [main/INFO] [FML]: [SecretRoomsMod-Core] Core loaded
2653[05:15:57] [main/INFO] [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from spongeforge-1.12.2-2838-7.1.7-RC3926.jar
2654[05:15:57] [main/INFO] [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from VanillaFix-1.0.10-99.jar
2655[05:15:57] [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
2656[05:15:57] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
2657[05:15:57] [main/INFO] [LaunchWrapper]: Loading tweak class name guichaguri.betterfps.tweaker.BetterFpsTweaker
2658[05:15:57] [main/INFO] [LaunchWrapper]: Loading tweak class name codechicken.asm.internal.Tweaker
2659[05:15:57] [main/INFO] [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.launch.MixinTweaker
2660[05:15:57] [main/INFO] [mixin]: SpongePowered MIXIN Subsystem Version=0.7.11 Source=file:/home/minecraft/multicraft/servers/server91171/./mods/spongeforge-1.12.2-2838-7.1.7-RC3926.jar Service=LaunchWrapper Env=SERVER
2661[05:15:57] [main/WARN] [FML]: The coremod SpongeCoremod (org.spongepowered.mod.SpongeCoremod) is not signed!
2662[05:15:57] [main/INFO] [mixin]: Compatibility level set to JAVA_8
2663[05:15:57] [main/INFO] [mixin]: Adding new token provider org.spongepowered.mod.SpongeCoremod$TokenProvider to MixinEnvironment[DEFAULT]
2664[05:15:57] [main/INFO] [mixin]: Adding new token provider org.spongepowered.mod.SpongeCoremod$TokenProvider to MixinEnvironment[PREINIT]
2665[05:15:57] [main/INFO] [mixin]: Adding new token provider org.spongepowered.mod.SpongeCoremod$TokenProvider to MixinEnvironment[INIT]
2666[05:15:57] [main/INFO] [VanillaFix]: Initializing VanillaFix
2667[05:15:58] [main/INFO] [VanillaFix]: Initializing StacktraceDeobfuscator
2668[05:15:58] [main/INFO] [VanillaFix]: Found MCP method mappings: methods-stable_39.csv
2669[05:15:58] [main/INFO] [VanillaFix]: Done initializing StacktraceDeobfuscator
2670[05:15:58] [main/INFO] [VanillaFix]: Initializing Bug Fix Mixins
2671[05:15:58] [main/INFO] [VanillaFix]: Initializing Crash Fix Mixins
2672[05:15:58] [main/INFO] [VanillaFix]: Initializing Profiler Improvement Mixins
2673[05:15:58] [main/INFO] [VanillaFix]: Initializing Texture Fix Mixins
2674[05:15:58] [main/INFO] [VanillaFix]: Initializing Mod Support Mixins
2675[05:15:58] [main/WARN] [FML]: The coremod VanillaFixLoadingPlugin (org.dimdev.vanillafix.VanillaFixLoadingPlugin) is not signed!
2676[05:15:58] [main/WARN] [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
2677[05:15:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
2678[05:15:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
2679[05:15:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
2680[05:15:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2681[05:16:00] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
2682[05:16:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2683[05:16:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2684[05:16:00] [main/INFO] [LaunchWrapper]: Calling tweak class codechicken.asm.internal.Tweaker
2685[05:16:00] [main/INFO] [STDOUT]: [codechicken.asm.internal.Tweaker:injectIntoClassLoader:30]: false
2686[05:16:00] [main/INFO] [LaunchWrapper]: Calling tweak class org.spongepowered.asm.launch.MixinTweaker
2687[05:16:00] [main/INFO] [mixin]: Initialised Mixin FML Remapper Adapter with net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper@2ce45a7b
2688[05:16:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2689[05:16:00] [main/INFO] [LaunchWrapper]: Calling tweak class guichaguri.betterfps.tweaker.BetterFpsTweaker
2690[05:16:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
2691[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2692[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2693[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2694[05:16:01] [main/INFO] [FML]: [SecretRoomsTransformer] Registered
2695[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2696[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2697[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2698[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2699[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2700[05:16:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
2701[05:16:01] [main/INFO] [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.mixin.EnvironmentStateTweaker
2702[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
2703[05:16:01] [main/INFO] [LaunchWrapper]: Calling tweak class org.spongepowered.asm.mixin.EnvironmentStateTweaker
2704[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.patches.WorldServerRemovalPatch:apply:62]: Patched updateEntities in net/minecraft/world/WorldServer func_72939_s
2705[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a
2706[05:16:02] [main/INFO] [BetterFps]: Patching net.minecraft.block.Block... (aow)
2707[05:16:02] [main/INFO] [mixin]: A re-entrant transformer 'guichaguri.betterfps.transformers.PatcherTransformer' was detected and will no longer process meta class data
2708[05:16:02] [main/INFO] [STDOUT]: [team.chisel.ctm.client.asm.CTMTransformer:preTransform:230]: Transforming Class [net.minecraft.block.Block], Method [getExtendedState]
2709[05:16:02] [main/INFO] [STDOUT]: [team.chisel.ctm.client.asm.CTMTransformer:finishTransform:242]: Transforming net.minecraft.block.Block Finished.
2710[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.BlockBed.func_189540_a
2711[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.equals
2712[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.hashCode
2713[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.equals
2714[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.hashCode
2715[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode
2716[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode_calced
2717[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyInteger.hashCode
2718[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode
2719[05:16:02] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode_calced
2720[05:16:02] [main/INFO] [FML]: [SecretRoomsTransformer] Running Transform on net.minecraft.block.state.BlockStateContainer$StateImplementation
2721[05:16:02] [main/INFO] [FML]: [SecretRoomsTransformer] Finished Transform on: net.minecraft.block.state.BlockStateContainer$StateImplementation
2722[05:16:02] [main/WARN] [mixin]: @Mixin target net.minecraft.block.state.BlockStateContainer$StateImplementation is public in mixins.common.api.json:mcp.block.state.StateImplementationMixin_API and should be specified in value
2723[05:16:03] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase
2724[05:16:03] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:124]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable
2725[05:16:03] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:161]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities
2726[05:16:04] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap
2727[05:16:04] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap
2728[05:16:04] [main/INFO] [mixin]: A re-entrant transformer '$wrapper.pl.asie.foamfix.coremod.FoamFixTransformer' was detected and will no longer process meta class data
2729[05:16:05] [main/INFO] [EnderCore ASM]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b]
2730[05:16:05] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.inventory.ContainerFurnace Finished.
2731[05:16:06] [main/WARN] [mixin]: @Mixin target net.minecraft.server.management.PlayerProfileCache$ProfileEntry is public in mixins.common.core.json:server.management.PlayerProfileCache$ProfileEntryMixin and should be specified in value
2732[05:16:07] [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@6d171ce0 from coremod FMLCorePlugin)
2733[05:16:07] [main/WARN] [mixin]: @Mixin target net.minecraft.server.integrated.IntegratedServer was not found mixins.vanillafix.crashes.json:MixinIntegratedServer
2734[05:16:07] [main/INFO] [FML]: [SecretRoomsTransformer] Running Transform on net.minecraft.block.BlockBreakable
2735[05:16:07] [main/INFO] [FML]: [SecretRoomsTransformer] Finished Transform on: net.minecraft.block.BlockBreakable
2736[05:16:07] [main/ERROR] [BetterFps]: The algorithm is invalid. We're going to use Vanilla Algorithm instead.
2737[05:16:07] [main/INFO] [mixin]: A re-entrant transformer 'guichaguri.betterfps.transformers.MathTransformer' was detected and will no longer process meta class data
2738[05:16:08] [main/WARN] [mixin]: Method overwrite conflict for func_71222_d in mixins.vanillafix.bugs.json:MixinMinecraftServer, previously written by org.spongepowered.common.mixin.core.server.MinecraftServerMixin. Skipping method.
2739[05:16:08] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:124]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable
2740[05:16:08] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:161]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities
2741[05:16:08] [main/WARN] [mixin]: Static binding violation: PRIVATE @Overwrite method func_189509_E in mixins.common.core.json:world.WorldMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded.
2742[05:16:08] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.patches.WorldServerRemovalPatch:apply:62]: Patched updateEntities in net/minecraft/world/WorldServer func_72939_s
2743[05:16:08] [main/INFO] [EnderCore ASM]: Transforming Class [net.minecraft.world.chunk.storage.ExtendedBlockStorage], Method [func_76663_a]
2744[05:16:08] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.world.chunk.storage.ExtendedBlockStorage Finished.
2745[05:16:09] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase
2746[05:16:09] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
2747[05:16:09] [main/INFO] [BetterFps]: Patching net.minecraft.block.Block... (aow)
2748[05:16:09] [main/INFO] [STDOUT]: [team.chisel.ctm.client.asm.CTMTransformer:preTransform:230]: Transforming Class [net.minecraft.block.Block], Method [getExtendedState]
2749[05:16:09] [main/INFO] [STDOUT]: [team.chisel.ctm.client.asm.CTMTransformer:finishTransform:242]: Transforming net.minecraft.block.Block Finished.
2750[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.state.BlockStateContainer.createState
2751[05:16:10] [main/INFO] [FML]: [SecretRoomsTransformer] Running Transform on net.minecraft.block.state.BlockStateContainer$StateImplementation
2752[05:16:10] [main/INFO] [FML]: [SecretRoomsTransformer] Finished Transform on: net.minecraft.block.state.BlockStateContainer$StateImplementation
2753[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a
2754[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.equals
2755[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.hashCode
2756[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode
2757[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode_calced
2758[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyInteger.hashCode
2759[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode
2760[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode_calced
2761[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.equals
2762[05:16:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.hashCode
2763[05:16:10] [main/ERROR] [BetterFps]: The algorithm is invalid. We're going to use Vanilla Algorithm instead.
2764[05:16:11] [main/INFO] [FML]: [SecretRoomsTransformer] Running Transform on net.minecraft.block.BlockBreakable
2765[05:16:11] [main/INFO] [FML]: [SecretRoomsTransformer] Finished Transform on: net.minecraft.block.BlockBreakable
2766[05:16:11] [main/INFO] [BetterFps]: Patching net.minecraft.block.BlockHopper... (arl)
2767[05:16:11] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper
2768[05:16:11] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper
2769[05:16:11] [main/INFO] [BetterFps]: Patching net.minecraft.tileentity.TileEntityHopper... (avw)
2770[05:16:11] [main/WARN] [mixin]: Method overwrite conflict for accessor$dropRecordItem in mixins.common.core.json:block.BlockJukeboxAccessor, previously written by org.spongepowered.common.mixin.core.block.BlockJukeboxMixin. Skipping method.
2771[05:16:11] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.block.BlockBed.func_189540_a
2772[05:16:12] [main/INFO] [BetterFps]: Patching net.minecraft.tileentity.TileEntityBeacon... (avh)
2773[05:16:12] [main/WARN] [mixin]: Method overwrite conflict for accessor$getScoreboard in mixins.common.core.json:scoreboard.ScorePlayerTeamAccessor, previously written by org.spongepowered.common.mixin.core.scoreboard.ScorePlayerTeamMixin. Skipping method.
2774[05:16:12] [main/WARN] [mixin]: Method overwrite conflict for accessor$setScoreboard in mixins.common.core.json:scoreboard.ScorePlayerTeamAccessor, previously written by org.spongepowered.common.mixin.core.scoreboard.ScorePlayerTeamMixin. Skipping method.
2775[05:16:13] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:124]: Added INTERFACE: pl/asie/foamfix/api/IFoamFixMobSpawnerLogic
2776[05:16:13] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraft.tileentity.MobSpawnerBaseLogic.func_98279_f
2777[05:16:13] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCache
2778[05:16:13] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCachePESize
2779[05:16:13] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCacheTime
2780[05:16:13] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCache
2781[05:16:13] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:184]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCacheTime
2782[05:16:13] [main/INFO] [EnderCore ASM]: Transforming Class [net.minecraft.entity.ai.EntityAICreeperSwell], Method [func_75246_d]
2783[05:16:13] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.entity.ai.EntityAICreeperSwell Finished.
2784[05:16:15] [main/INFO] [BetterFps]: Patching net.minecraft.server.dedicated.DedicatedServer... (nz)
2785[05:16:15] [main/INFO] [EnderCore ASM]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b]
2786[05:16:15] [main/INFO] [EnderCore ASM]: Transforming net.minecraft.inventory.ContainerFurnace Finished.
2787[05:16:16] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.12.2
2788[05:16:16] [Server thread/INFO] [FML]: MinecraftForge v14.23.5.2838 Initialized
2789[05:16:16] [Server thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
2790[05:16:16] [Server thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient...
2791[05:16:16] [Server thread/INFO] [FML]: Replaced 1227 ore ingredients
2792[05:16:16] [Server thread/INFO] [Sponge]: Found mcmod.info at jar:file:/home/minecraft/multicraft/servers/server91171/./mods/spongeforge-1.12.2-2838-7.1.7-RC3926.jar!/mcmod.info
2793[05:16:16] [Server thread/INFO] [Sponge]: Creating injector in stage 'PRODUCTION'
2794[05:16:21] [Server thread/INFO] [FML]: Searching /home/minecraft/multicraft/servers/server91171/./mods for mods
2795[05:16:21] [Server thread/INFO] [FML]: Searching /home/minecraft/multicraft/servers/server91171/./mods/1.12.2 for mods
2796[05:16:21] [Server thread/INFO] [FML]: Searching %s for plugins
2797[05:16:21] [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
2798[05:16:22] [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
2799[05:16:22] [Server thread/INFO] [FML]: Disabling mod ctgui it is client side only.
2800[05:16:22] [Server thread/INFO] [FML]: Disabling mod ctm it is client side only.
2801[05:16:23] [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
2802[05:16:23] [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
2803[05:16:23] [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
2804[05:16:24] [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
2805[05:16:24] [Server thread/WARN] [FML]: Mod mekanismgenerators is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-9.8.2.389
2806[05:16:24] [Server thread/WARN] [FML]: Mod mekanismtools is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-9.8.2.389
2807[05:16:24] [Server thread/WARN] [FML]: Mod mrtjpcore is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.1.4.43
2808[05:16:25] [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
2809[05:16:25] [Server thread/WARN] [FML]: Mod projectred-core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2810[05:16:25] [Server thread/INFO] [FML]: Mod projectred-compat is missing the required element 'name'. Substituting projectred-compat
2811[05:16:25] [Server thread/WARN] [FML]: Mod projectred-compat is missing the required element 'version' and no fallback can be found. Substituting '1.0'.
2812[05:16:25] [Server thread/WARN] [FML]: Mod projectred-fabrication is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2813[05:16:25] [Server thread/WARN] [FML]: Mod projectred-integration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2814[05:16:25] [Server thread/WARN] [FML]: Mod projectred-transmission is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2815[05:16:25] [Server thread/WARN] [FML]: Mod projectred-illumination is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2816[05:16:25] [Server thread/WARN] [FML]: Mod projectred-expansion is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2817[05:16:25] [Server thread/WARN] [FML]: Mod projectred-relocation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2818[05:16:25] [Server thread/WARN] [FML]: Mod projectred-transportation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2819[05:16:25] [Server thread/WARN] [FML]: Mod projectred-exploration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.9.4.120
2820[05:16:25] [Server thread/WARN] [FML]: Mod refinedrelocation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.2.36
2821[05:16:26] [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
2822[05:16:27] [Server thread/INFO] [FML]: Forge Mod Loader has identified 119 mods to load
2823[05:16:27] [Server thread/WARN] [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang
2824[05:16:27] [Server thread/WARN] [FML]: Missing English translation for spongeapi: assets/spongeapi/lang/en_us.lang
2825[05:16:27] [Server thread/WARN] [FML]: Missing English translation for spongeforge: assets/spongeforge/lang/en_us.lang
2826[05:16:27] [Server thread/WARN] [FML]: Missing English translation for quarryplus_ct: assets/quarryplus_ct/lang/en_us.lang
2827[05:16:27] [Server thread/WARN] [FML]: Missing English translation for alib: assets/alib/lang/en_us.lang
2828[05:16:27] [Server thread/WARN] [FML]: Missing English translation for classiccombat: assets/classiccombat/lang/en_us.lang
2829[05:16:27] [Server thread/WARN] [FML]: Missing English translation for codechickenlib: assets/codechickenlib/lang/en_us.lang
2830[05:16:27] [Server thread/WARN] [FML]: Missing English translation for cofhcore: assets/cofhcore/lang/en_us.lang
2831[05:16:27] [Server thread/WARN] [FML]: Missing English translation for crafttweaker: assets/crafttweaker/lang/en_us.lang
2832[05:16:27] [Server thread/WARN] [FML]: Missing English translation for crafttweakerjei: assets/crafttweakerjei/lang/en_us.lang
2833[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderiobase: assets/enderiobase/lang/en_us.lang
2834[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderioconduitsappliedenergistics: assets/enderioconduitsappliedenergistics/lang/en_us.lang
2835[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderioconduitsopencomputers: assets/enderioconduitsopencomputers/lang/en_us.lang
2836[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderioconduitsrefinedstorage: assets/enderioconduitsrefinedstorage/lang/en_us.lang
2837[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderioconduits: assets/enderioconduits/lang/en_us.lang
2838[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderiointegrationforestry: assets/enderiointegrationforestry/lang/en_us.lang
2839[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderiointegrationtic: assets/enderiointegrationtic/lang/en_us.lang
2840[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderiointegrationticlate: assets/enderiointegrationticlate/lang/en_us.lang
2841[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderiomachines: assets/enderiomachines/lang/en_us.lang
2842[05:16:27] [Server thread/WARN] [FML]: Missing English translation for enderiopowertools: assets/enderiopowertools/lang/en_us.lang
2843[05:16:27] [Server thread/WARN] [FML]: Missing English translation for epicsiegemod: assets/epicsiegemod/lang/en_us.lang
2844[05:16:27] [Server thread/WARN] [FML]: Missing English translation for foamfix: assets/foamfix/lang/en_us.lang
2845[05:16:27] [Server thread/WARN] [FML]: Missing English translation for forgelin: assets/forgelin/lang/en_us.lang
2846[05:16:27] [Server thread/WARN] [FML]: Missing English translation for microblockcbe: assets/microblockcbe/lang/en_us.lang
2847[05:16:27] [Server thread/WARN] [FML]: Missing English translation for forgemultipartcbe: assets/forgemultipartcbe/lang/en_us.lang
2848[05:16:27] [Server thread/WARN] [FML]: Missing English translation for minecraftmultipartcbe: assets/minecraftmultipartcbe/lang/en_us.lang
2849[05:16:27] [Server thread/WARN] [FML]: Missing English translation for ic2: assets/ic2/lang/en_us.lang
2850[05:16:27] [Server thread/WARN] [FML]: Missing English translation for oredictinit: assets/oredictinit/lang/en_us.lang
2851[05:16:27] [Server thread/WARN] [FML]: Missing English translation for mantle: assets/mantle/lang/en_us.lang
2852[05:16:27] [Server thread/WARN] [FML]: Missing English translation for mekanismgenerators: assets/mekanismgenerators/lang/en_us.lang
2853[05:16:27] [Server thread/WARN] [FML]: Missing English translation for mekanismtools: assets/mekanismtools/lang/en_us.lang
2854[05:16:27] [Server thread/WARN] [FML]: Missing English translation for mrtjpcore: assets/mrtjpcore/lang/en_us.lang
2855[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-core: assets/projectred-core/lang/en_us.lang
2856[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-compat: assets/projectred-compat/lang/en_us.lang
2857[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-fabrication: assets/projectred-fabrication/lang/en_us.lang
2858[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-integration: assets/projectred-integration/lang/en_us.lang
2859[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-transmission: assets/projectred-transmission/lang/en_us.lang
2860[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-illumination: assets/projectred-illumination/lang/en_us.lang
2861[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-expansion: assets/projectred-expansion/lang/en_us.lang
2862[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-relocation: assets/projectred-relocation/lang/en_us.lang
2863[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-transportation: assets/projectred-transportation/lang/en_us.lang
2864[05:16:28] [Server thread/WARN] [FML]: Missing English translation for projectred-exploration: assets/projectred-exploration/lang/en_us.lang
2865[05:16:28] [Server thread/WARN] [FML]: Missing English translation for redstoneflux: assets/redstoneflux/lang/en_us.lang
2866[05:16:28] [Server thread/WARN] [FML]: Missing English translation for teslacorelib_registries: assets/teslacorelib_registries/lang/en_us.lang
2867[05:16:28] [Server thread/WARN] [FML]: Missing English translation for wrapup: assets/wrapup/lang/en_us.lang
2868[05:16:28] [Server thread/WARN] [FML]: Missing English translation for battlelog: assets/battlelog/lang/en_us.lang
2869[05:16:28] [Server thread/WARN] [FML]: Missing English translation for dupefixer: assets/dupefixer/lang/en_us.lang
2870[05:16:28] [Server thread/WARN] [FML]: Missing English translation for worldedit: assets/worldedit/lang/en_us.lang
2871[05:16:28] [Server thread/WARN] [FML]: Missing English translation for referrals: assets/referrals/lang/en_us.lang
2872[05:16:28] [Server thread/WARN] [FML]: Missing English translation for catclearlag: assets/catclearlag/lang/en_us.lang
2873[05:16:28] [Server thread/WARN] [FML]: Missing English translation for eaglefactions: assets/eaglefactions/lang/en_us.lang
2874[05:16:28] [Server thread/WARN] [FML]: Missing English translation for brotkasten: assets/brotkasten/lang/en_us.lang
2875[05:16:28] [Server thread/WARN] [FML]: Missing English translation for universeguard: assets/universeguard/lang/en_us.lang
2876[05:16:28] [Server thread/WARN] [FML]: Missing English translation for auction: assets/auction/lang/en_us.lang
2877[05:16:28] [Server thread/WARN] [FML]: Missing English translation for stormreferrals: assets/stormreferrals/lang/en_us.lang
2878[05:16:28] [Server thread/WARN] [FML]: Missing English translation for shabbyholograms: assets/shabbyholograms/lang/en_us.lang
2879[05:16:28] [Server thread/WARN] [FML]: Missing English translation for pjc: assets/pjc/lang/en_us.lang
2880[05:16:28] [Server thread/WARN] [FML]: Missing English translation for carrotshop: assets/carrotshop/lang/en_us.lang
2881[05:16:28] [Server thread/WARN] [FML]: Missing English translation for idgetter: assets/idgetter/lang/en_us.lang
2882[05:16:28] [Server thread/WARN] [FML]: Missing English translation for playerdatareset-plugin: assets/playerdatareset-plugin/lang/en_us.lang
2883[05:16:28] [Server thread/WARN] [FML]: Missing English translation for pjp: assets/pjp/lang/en_us.lang
2884[05:16:28] [Server thread/WARN] [FML]: Missing English translation for nucleus: assets/nucleus/lang/en_us.lang
2885[05:16:28] [Server thread/WARN] [FML]: Missing English translation for economylite: assets/economylite/lang/en_us.lang
2886[05:16:28] [Server thread/WARN] [FML]: Missing English translation for voxelsniper: assets/voxelsniper/lang/en_us.lang
2887[05:16:28] [Server thread/WARN] [Sponge]: The mod pjc was designed for spongeapi 7.2.0-SNAPSHOT but version 7.1.0-57b017778 is in use. It may not work properly.
2888[05:16:28] [Server thread/WARN] [Sponge]: The mod pjc was designed for spongeapi 7.2.0-SNAPSHOT but version 7.1.0-57b017778 is in use. It may not work properly.
2889[05:16:28] [Server thread/INFO] [FML]: FML has found a non-mod file CTM-MC1.12.2-0.3.3.22.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
2890[05:16:28] [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.
2891[05:16:28] [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.
2892[05:16:29] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, spongeapi, sponge, spongeforge, openmodscore, foamfixcore, srm-hooks, randompatches, quarryplus, quarryplus_ct, alchemistry, alib, appliedenergistics2, biomesoplenty, chickenchunks, chisel, classiccombat, codechickenlib, cofhcore, cofhworld, crafttweaker, crafttweakerjei, endercore, enderio, enderiobase, enderioconduitsappliedenergistics, enderioconduitsopencomputers, enderioconduitsrefinedstorage, enderioconduits, enderiointegrationforestry, enderiointegrationtic, enderiointegrationticlate, enderiomachines, enderiopowertools, energyconverters, epicsiegemod, bigreactors, flansmod, foamfix, forgelin, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, waila, icbmclassic, ic2, industrialforegoing, inventorytweaks, ironchest, jaopca, oredictinit, jei, mantle, mekanism, mekanismgenerators, mekanismtools, metallurgy, powersuits, mrtjpcore, nei, numina, omlib, openblocks, openmods, openmodularturrets, patchouli, projectred-core, projectred-compat, projectred-fabrication, projectred-integration, projectred-transmission, projectred-illumination, projectred-expansion, projectred-relocation, projectred-transportation, projectred-exploration, railcraft, redstonearsenal, redstoneflux, refinedrelocation, secretroomsmod, tconstruct, teslacorelib, teslacorelib_registries, thedragonlib, thermalcultivation, thermaldynamics, thermalexpansion, thermalfoundation, thermalinnovation, twilightforest, vanillafix, wawla, wrcbe, wrapup, zerocore, battlelog, dupefixer, worldedit, referrals, catclearlag, eaglefactions, brotkasten, universeguard, auction, stormreferrals, shabbyholograms, pjc, carrotshop, idgetter, playerdatareset-plugin, pjp, nucleus, economylite, voxelsniper, immersiveengineering] at CLIENT
2893[05:16:29] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, spongeapi, sponge, spongeforge, openmodscore, foamfixcore, srm-hooks, randompatches, quarryplus, quarryplus_ct, alchemistry, alib, appliedenergistics2, biomesoplenty, chickenchunks, chisel, classiccombat, codechickenlib, cofhcore, cofhworld, crafttweaker, crafttweakerjei, endercore, enderio, enderiobase, enderioconduitsappliedenergistics, enderioconduitsopencomputers, enderioconduitsrefinedstorage, enderioconduits, enderiointegrationforestry, enderiointegrationtic, enderiointegrationticlate, enderiomachines, enderiopowertools, energyconverters, epicsiegemod, bigreactors, flansmod, foamfix, forgelin, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, waila, icbmclassic, ic2, industrialforegoing, inventorytweaks, ironchest, jaopca, oredictinit, jei, mantle, mekanism, mekanismgenerators, mekanismtools, metallurgy, powersuits, mrtjpcore, nei, numina, omlib, openblocks, openmods, openmodularturrets, patchouli, projectred-core, projectred-compat, projectred-fabrication, projectred-integration, projectred-transmission, projectred-illumination, projectred-expansion, projectred-relocation, projectred-transportation, projectred-exploration, railcraft, redstonearsenal, redstoneflux, refinedrelocation, secretroomsmod, tconstruct, teslacorelib, teslacorelib_registries, thedragonlib, thermalcultivation, thermaldynamics, thermalexpansion, thermalfoundation, thermalinnovation, twilightforest, vanillafix, wawla, wrcbe, wrapup, zerocore, battlelog, dupefixer, worldedit, referrals, catclearlag, eaglefactions, brotkasten, universeguard, auction, stormreferrals, shabbyholograms, pjc, carrotshop, idgetter, playerdatareset-plugin, pjp, nucleus, economylite, voxelsniper, immersiveengineering] at SERVER
2894[05:16:29] [Server thread/WARN] [Sponge]: There's no certificate fingerprint available
2895[05:16:32] [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
2896[05:16:32] [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
2897[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
2898[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
2899[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.power.forge.item.InternalPoweredItemMixin
2900[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
2901[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.integration.thaumcraft.ThaumcraftArmorMixin
2902[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Skipping mixin due to missing dependencies: [thaumcraft]
2903[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
2904[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
2905[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.item.darksteel.upgrade.DarkSteelUpgradeMixin
2906[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
2907[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
2908[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
2909[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
2910[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
2911[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
2912[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
2913[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
2914[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
2915[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.power.forge.item.InternalPoweredItemMixin.
2916[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.power.forge.item.IInternalPoweredItem
2917[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.item.darksteel.upgrade.DarkSteelUpgradeMixin.
2918[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.api.upgrades.IDarkSteelItem
2919[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$ISolidBlockPaintableBlock
2920[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$IBlockPaintableBlock
2921[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$ITexturePaintableBlock
2922[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$INonSolidBlockPaintableBlock
2923[05:16:33] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderio is not accessible
2924java.lang.NoSuchMethodException: crazypants.enderio.base.EnderIO.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
2925 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
2926 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
2927 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
2928 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
2929 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
2930 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
2931 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
2932 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
2933 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
2934 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
2935 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
2936 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
2937 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
2938 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
2939 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
2940 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
2941 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
2942 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
2943 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
2944 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
2945 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
2946 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
2947 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
2948 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
2949 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
2950 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
2951 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
2952 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
2953 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
2954 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
2955 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
2956 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
2957 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
2958 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
2959 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
2960[05:16:33] [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]
2961[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelCrook
2962[05:16:33] [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]
2963[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
2964[05:16:33] [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]
2965[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemInventoryCharger
2966[05:16:33] [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]
2967[05:16:33] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
2968[05:16:34] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiointegrationtic is not accessible
2969java.lang.NoSuchMethodException: crazypants.enderio.integration.tic.EnderIOIntegrationTic.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
2970 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
2971 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
2972 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
2973 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
2974 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
2975 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
2976 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
2977 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
2978 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
2979 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
2980 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
2981 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
2982 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
2983 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
2984 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
2985 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
2986 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
2987 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
2988 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
2989 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
2990 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
2991 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
2992 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
2993 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
2994 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
2995 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
2996 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
2997 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
2998 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
2999 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3000 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3001 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3002 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3003 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3004 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3005[05:16:34] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderioconduits is not accessible
3006java.lang.NoSuchMethodException: crazypants.enderio.conduits.EnderIOConduits.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
3007 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
3008 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
3009 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
3010 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
3011 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
3012 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3013 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3014 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3015 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3016 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3017 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3018 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3019 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3020 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3021 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3022 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3023 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3024 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3025 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3026 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3027 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3028 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3029 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3030 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3031 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3032 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3033 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3034 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3035 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3036 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3037 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3038 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3039 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3040 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3041 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3042[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.conduit.me.conduit.MEMixin
3043[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Registered mixin.
3044[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.conduit.me.conduit.MEMixin.
3045[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.conduits.conduit.TileConduitBundle
3046[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Added 1 new interface: [appeng/api/networking/IGridHost]
3047[05:16:34] [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]
3048[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3049[05:16:34] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderioconduitsappliedenergistics is not accessible
3050java.lang.NoSuchMethodException: crazypants.enderio.conduit.me.EnderIOConduitsAppliedEnergistics.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
3051 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
3052 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
3053 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
3054 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
3055 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
3056 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3057 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3058 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3059 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3060 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3061 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3062 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3063 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3064 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3065 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3066 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3067 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3068 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3069 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3070 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3071 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3072 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3073 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3074 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3075 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3076 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3077 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3078 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3079 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3080 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3081 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3082 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3083 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3084 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3085 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3086[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.conduit.oc.conduit.OCMixin
3087[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Skipping mixin due to missing dependencies: [opencomputersapi|network]
3088[05:16:34] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderioconduitsopencomputers is not accessible
3089java.lang.NoSuchMethodException: crazypants.enderio.conduit.oc.EnderIOConduitsOpenComputers.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
3090 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
3091 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
3092 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
3093 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
3094 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
3095 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3096 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3097 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3098 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3099 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3100 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3101 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3102 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3103 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3104 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3105 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3106 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3107 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3108 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3109 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3110 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3111 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3112 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3113 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3114 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3115 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3116 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3117 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3118 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3119 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3120 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3121 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3122 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3123 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3124 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3125[05:16:34] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderioconduitsrefinedstorage is not accessible
3126java.lang.NoSuchMethodException: crazypants.enderio.conduit.refinedstorage.EnderIOConduitsRefinedStorage.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
3127 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
3128 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
3129 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
3130 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
3131 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
3132 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3133 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3134 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3135 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3136 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3137 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3138 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3139 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3140 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3141 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3142 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3143 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3144 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3145 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3146 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3147 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3148 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3149 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3150 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3151 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3152 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3153 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3154 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3155 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3156 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3157 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3158 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3159 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3160 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3161 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3162[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.integration.forestry.upgrades.ArmorMixin
3163[05:16:34] [Server thread/INFO] [EnderCore Mixins]: Skipping mixin due to missing dependencies: [forestry]
3164[05:16:34] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiointegrationforestry is not accessible
3165java.lang.NoSuchMethodException: crazypants.enderio.integration.forestry.EnderIOIntegrationForestry.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
3166 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
3167 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
3168 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
3169 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
3170 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
3171 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3172 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3173 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3174 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3175 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3176 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3177 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3178 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3179 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3180 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3181 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3182 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3183 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3184 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3185 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3186 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3187 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3188 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3189 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3190 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3191 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3192 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3193 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3194 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3195 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3196 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3197 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3198 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3199 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3200 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3201[05:16:35] [Server thread/INFO] [Pulsar-tconstruct]: Skipping Pulse chiselsandbitsIntegration; missing dependency: chiselsandbits
3202[05:16:35] [Server thread/INFO] [Pulsar-tconstruct]: Skipping Pulse craftingtweaksIntegration; missing dependency: craftingtweaks
3203[05:16:35] [Server thread/INFO] [Pulsar-tconstruct]: Skipping Pulse theoneprobeIntegration; missing dependency: theoneprobe
3204[05:16:35] [Server thread/INFO] [tconstruct]: Preparing to take over the world
3205[05:16:35] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiointegrationticlate is not accessible
3206java.lang.NoSuchMethodException: crazypants.enderio.integration.tic.EnderIOIntegrationTicLate.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
3207 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
3208 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
3209 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
3210 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
3211 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
3212 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3213 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3214 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3215 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3216 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3217 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3218 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3219 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3220 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3221 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3222 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3223 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3224 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3225 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3226 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3227 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3228 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3229 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3230 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3231 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3232 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3233 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3234 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3235 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3236 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3237 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3238 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3239 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3240 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3241 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3242[05:16:35] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiomachines is not accessible
3243java.lang.NoSuchMethodException: crazypants.enderio.machines.EnderIOMachines.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
3244 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
3245 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
3246 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
3247 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
3248 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
3249 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3250 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3251 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3252 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3253 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3254 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3255 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3256 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3257 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3258 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3259 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3260 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3261 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3262 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3263 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3264 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3265 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3266 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3267 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3268 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3269 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3270 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3271 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3272 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3273 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3274 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3275 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3276 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3277 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3278 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3279[05:16:35] [Server thread/WARN] [FML]: The declared version check handler method checkModLists on network mod id enderiopowertools is not accessible
3280java.lang.NoSuchMethodException: crazypants.enderio.powertools.EnderIOPowerTools.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
3281 at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_222]
3282 at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
3283 at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
3284 at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
3285 at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
3286 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3287 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3288 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3289 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3290 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3291 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3292 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3293 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3294 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3295 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3296 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3297 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3298 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3299 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3300 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3301 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3302 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3303 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3304 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3305 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3306 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3307 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3308 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3309 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3310 at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593) [Loader.class:?]
3311 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
3312 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3313 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3314 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3315 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3316[05:16:35] [Server thread/ERROR] [FML]: The mod flansmod appears to have an invalid event annotation EventHandler. This annotation can only apply to methods with recognized event arguments - it will not be called
3317[05:16:36] [Server thread/WARN] [mixin]: Method overwrite conflict for accessor$getPlayers in mixins.common.core.json:server.management.PlayerchunkMapEntryAccessor, previously written by org.spongepowered.common.mixin.core.server.management.PlayerChunkMapEntryMixin. Skipping method.
3318[05:16:36] [Server thread/WARN] [teslacorelib]: Annotated class 'net.ndrei.teslacorelib.blocks.multipart.MultiPartBlockEvents' not found!
3319[05:16:37] [Server thread/INFO] [thedragonlib]: Welcoming Minecraft
3320[05:16:39] [Server thread/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:137]: Spliced in METHOD: net.minecraftforge.common.property.ExtendedBlockState.createState
3321[05:16:40] [Server thread/INFO] [FML]: Processing ObjectHolder annotations
3322[05:16:40] [Server thread/WARN] [mixin]: @Inject(@At("INVOKE")) Shift.BY=2 on mixins.forge.core.json:forge.fluids.BlockFluidFiniteMixin_Forge::handler$onSetBlockForSwapping$baf000 exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning.
3323[05:16:40] [Server thread/WARN] [mixin]: Injection warning: LVT in net/minecraftforge/fluids/BlockFluidFinite::tryToFlowVerticallyInto(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;I)I has incompatible changes at opcode 7 in callback net/minecraftforge/fluids/BlockFluidFinite::handler$onSetBlockForSwapping$baf000.
3324Expected: [Lnet/minecraft/block/state/IBlockState;, Lnet/minecraft/util/math/BlockPos;, I, I, Lnet/minecraft/block/state/IBlockState;]
3325 Found: [Lnet/minecraft/block/state/IBlockState;]
3326[05:16:40] [Server thread/WARN] [mixin]: Injection warning: LVT in net/minecraftforge/fluids/BlockFluidFinite::tryToFlowVerticallyInto(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;I)I has incompatible changes at opcode 118 in callback net/minecraftforge/fluids/BlockFluidFinite::handler$onSetBlockForSwapping$baf000.
3327Expected: [Lnet/minecraft/block/state/IBlockState;, Lnet/minecraft/util/math/BlockPos;, I, I, Lnet/minecraft/block/state/IBlockState;]
3328 Found: [Lnet/minecraft/block/state/IBlockState;, Lnet/minecraft/util/math/BlockPos;, I, Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;]
3329[05:16:40] [Server thread/INFO] [FML]: Found 1742 ObjectHolder annotations
3330[05:16:40] [Server thread/INFO] [FML]: Identifying ItemStackHolder annotations
3331[05:16:40] [Server thread/INFO] [FML]: Found 2 ItemStackHolder annotations
3332[05:16:40] [Server thread/INFO] [FML]: Configured a dormant chunk cache size of 0
3333[05:16:41] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting Nucleus version 1.14.0-S7.1, running on Sponge API 7.1.0-57b017778.
3334[05:16:41] [Server thread/INFO] [nucleus]: Nucleus is now starting. Entering pre-init phase.
3335[05:16:41] [Server thread/INFO] [nucleus]: Starting QuickStart Module Loader version 0.11.0 subsystem.
3336[05:16:41] [Server thread/INFO] [catclearlag]: Setting up config...
3337[05:16:41] [Server thread/ERROR] [catclearlag]: Could not load config.
3338java.lang.NullPointerException: null
3339 at org.spongepowered.api.text.serializer.TextTemplateConfigSerializer.parse(TextTemplateConfigSerializer.java:104) ~[TextTemplateConfigSerializer.class:1.12.2-2838-7.1.7-RC3926]
3340 at org.spongepowered.api.text.serializer.TextTemplateConfigSerializer.deserialize(TextTemplateConfigSerializer.java:88) ~[TextTemplateConfigSerializer.class:1.12.2-2838-7.1.7-RC3926]
3341 at org.spongepowered.api.text.serializer.TextTemplateConfigSerializer.deserialize(TextTemplateConfigSerializer.java:60) ~[TextTemplateConfigSerializer.class:1.12.2-2838-7.1.7-RC3926]
3342 at ninja.leaping.configurate.objectmapping.ObjectMapper$FieldData.deserializeFrom(ObjectMapper.java:94) ~[spongeforge-1.12.2-2838-7.1.7-RC3926.jar:1.12.2-2838-7.1.7-RC3926]
3343 at ninja.leaping.configurate.objectmapping.ObjectMapper$BoundInstance.populate(ObjectMapper.java:155) ~[spongeforge-1.12.2-2838-7.1.7-RC3926.jar:1.12.2-2838-7.1.7-RC3926]
3344 at ninja.leaping.configurate.objectmapping.serialize.TypeSerializers$AnnotatedObjectSerializer.deserialize(TypeSerializers.java:283) ~[spongeforge-1.12.2-2838-7.1.7-RC3926.jar:1.12.2-2838-7.1.7-RC3926]
3345 at ninja.leaping.configurate.SimpleConfigurationNode.getValue(SimpleConfigurationNode.java:218) ~[spongeforge-1.12.2-2838-7.1.7-RC3926.jar:1.12.2-2838-7.1.7-RC3926]
3346 at me.time6628.clag.sponge.config.ConfigLoader.loadMessages(ConfigLoader.java:50) [ConfigLoader.class:?]
3347 at me.time6628.clag.sponge.CatClearLag.onPreInit(CatClearLag.java:90) [CatClearLag.class:?]
3348 at org.spongepowered.common.event.listener.GamePreInitializationEventListener_CatClearLag_onPreInit20.handle(Unknown Source) [?:?]
3349 at org.spongepowered.common.event.RegisteredListener.handle(RegisteredListener.java:95) [RegisteredListener.class:1.12.2-2838-7.1.7-RC3926]
3350 at org.spongepowered.mod.event.SpongeModEventManager.post(SpongeModEventManager.java:381) [SpongeModEventManager.class:1.12.2-2838-7.1.7-RC3926]
3351 at org.spongepowered.mod.event.SpongeModEventManager.extendedPost(SpongeModEventManager.java:454) [SpongeModEventManager.class:1.12.2-2838-7.1.7-RC3926]
3352 at org.spongepowered.mod.event.SpongeModEventManager.post(SpongeModEventManager.java:415) [SpongeModEventManager.class:1.12.2-2838-7.1.7-RC3926]
3353 at org.spongepowered.common.SpongeImpl.postEvent(SpongeImpl.java:253) [SpongeImpl.class:1.12.2-2838-7.1.7-RC3926]
3354 at org.spongepowered.mod.SpongeMod.onStateEvent(SpongeMod.java:374) [SpongeMod.class:1.12.2-2838-7.1.7-RC3926]
3355 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3356 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3357 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3358 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3359 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3360 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3361 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3362 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3363 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3364 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3365 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3366 at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
3367 at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
3368 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_222]
3369 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_222]
3370 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_222]
3371 at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_222]
3372 at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
3373 at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
3374 at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
3375 at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
3376 at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
3377 at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
3378 at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
3379 at net.minecraftforge.fml.common.LoadController.redirect$forgeImpl$PostEvent$zza000(LoadController.java:568) [LoadController.class:?]
3380 at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
3381 at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:627) [Loader.class:?]
3382 at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:99) [FMLServerHandler.class:?]
3383 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
3384 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
3385 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3386 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3387[05:16:41] [Server thread/INFO] [economylite]: EconomyLite 2.15.1 is initializing!
3388[05:16:41] [Server thread/INFO] [economylite]: Using currency: Coin
3389[05:16:41] [Server thread/INFO] [economylite]: The SQL module is disabled!
3390[05:16:41] [Server thread/INFO] [economylite]: The Loan module is disabled!
3391[05:16:41] [Server thread/INFO] [com.zaxxer.hikari.HikariDataSource]: HikariPool-1 - Starting...
3392[05:16:43] [Server thread/INFO] [com.zaxxer.hikari.HikariDataSource]: HikariPool-1 - Start completed.
3393[05:16:44] [Server thread/INFO] [shabbyholograms]: Loading configuration.
3394[05:16:44] [Server thread/WARN] [Sponge]: shabbyholograms: It is no longer required to include the plugin id when specifying a Key id through Key.Builder#id. This is deprecated and may be removed later. The plugin id will be retrieved from the current PluginContainer in the cause stack. Key: shabbyholograms:is_hologram
3395[05:16:44] [Server thread/INFO] [shabbyholograms]: ShabbyHolograms 1.0.0 initialized. Author: DefineEvil
3396[05:16:44] [Server thread/WARN] [Sponge]: Plugin 'stormreferrals' is attempting to register command 'referAdmin' with an uppercase character - adjusting to 'referadmin'
3397[05:16:46] [Server thread/INFO] [AE2:S]: Pre Initialization ( started )
3398[05:16:48] [Server thread/INFO] [AE2:S]: Pre Initialization ( ended after 2138ms )
3399[05:16:49] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: biomesoplenty:block_b_o_p_gem_ore_variant
3400[05:16:50] [Server thread/INFO] [FML]: Applying holder lookups
3401[05:16:50] [Server thread/INFO] [FML]: Holder lookups applied
3402[05:16:50] [Server thread/INFO] [CoFH World]: Registering default Feature Templates...
3403[05:16:50] [Server thread/INFO] [CoFH World]: Registering default World Generators...
3404[05:16:50] [Server thread/INFO] [CoFH World]: Verifying or creating base world generation directory...
3405[05:16:50] [Server thread/INFO] [CoFH World]: Complete.
3406[05:16:52] [Server thread/WARN] [enderio]: ========================================================
3407[05:16:52] [Server thread/WARN] [enderio]: == Debug Logging is ENABLED ============================
3408[05:16:52] [Server thread/WARN] [enderio]: ========================================================
3409[05:16:52] [Server thread/WARN] [enderio]: == This WILL slow down the game, so we recommend you ==
3410[05:16:52] [Server thread/WARN] [enderio]: == disable it unless you need it. A log level of INFO ==
3411[05:16:52] [Server thread/WARN] [enderio]: == is enough for normal operation. ==
3412[05:16:52] [Server thread/WARN] [enderio]: ========================================================
3413[05:16:52] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedFence from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3414[05:16:52] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedFence
3415[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3416[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3417[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedFenceGate from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3418[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedFenceGate
3419[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3420[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3421[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedWall from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3422[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedWall
3423[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3424[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3425[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedStairs from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3426[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedStairs
3427[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3428[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3429[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedSlab from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3430[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedSlab
3431[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3432[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3433[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedGlowstone from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
3434[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedGlowstone
3435[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3436[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3437[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedGlowstone$BlockPaintedGlowstoneSolid from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3438[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedGlowstone$BlockPaintedGlowstoneSolid
3439[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3440[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3441[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedGlowstone$BlockPaintedGlowstoneNonSolid from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3442[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedGlowstone$BlockPaintedGlowstoneNonSolid
3443[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3444[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3445[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedCarpet from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3446[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedCarpet
3447[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3448[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3449[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedPressurePlate from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3450[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedPressurePlate
3451[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3452[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3453[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedRedstone from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
3454[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedRedstone
3455[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3456[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3457[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedRedstone$BlockPaintedRedstoneSolid from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3458[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedRedstone$BlockPaintedRedstoneSolid
3459[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3460[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3461[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedRedstone$BlockPaintedRedstoneNonSolid from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3462[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedRedstone$BlockPaintedRedstoneNonSolid
3463[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3464[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3465[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedStone from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3466[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedStone
3467[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3468[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3469[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedTrapDoor from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3470[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedTrapDoor
3471[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3472[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3473[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedDoor from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ITexturePaintableBlock]
3474[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedDoor
3475[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3476[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3477[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedWorkbench from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3478[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedWorkbench
3479[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3480[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3481[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedReinforcedObsidian from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3482[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedReinforcedObsidian
3483[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3484[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3485[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.travelstaff.ItemTravelStaff from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3486[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.travelstaff.ItemTravelStaff
3487[05:16:53] [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]
3488[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3489[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.power.forge.item.AbstractPoweredItem from implemented interfaces: [crazypants/enderio/base/power/forge/item/IInternalPoweredItem]
3490[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.power.forge.item.AbstractPoweredItem
3491[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;]
3492[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3493[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.material.glass.BlockPaintedFusedQuartz from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
3494[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.material.glass.BlockPaintedFusedQuartz
3495[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3496[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3497[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.detector.BlockDetector from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3498[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.detector.BlockDetector
3499[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3500[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3501[05:16:53] [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]
3502[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelArmor
3503[05:16:53] [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]
3504[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3505[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelShield from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3506[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelShield
3507[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 2 new methods: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;, openUpgradeGui(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/EntityEquipmentSlot;)V]
3508[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3509[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelSword from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3510[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelSword
3511[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 2 new methods: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;, openUpgradeGui(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/EntityEquipmentSlot;)V]
3512[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3513[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelPickaxe from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3514[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelPickaxe
3515[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 5 new methods: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;, getAttributeModifiers(Lnet/minecraft/inventory/EntityEquipmentSlot;Lnet/minecraft/item/ItemStack;)Lcom/google/common/collect/Multimap;, addCommonEntries(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;Ljava/util/List;Z)V, addBasicEntries(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;Ljava/util/List;Z)V, openUpgradeGui(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/EntityEquipmentSlot;)V]
3516[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3517[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelAxe from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3518[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelAxe
3519[05:16:53] [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]
3520[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3521[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelBow from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3522[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelBow
3523[05:16:53] [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]
3524[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3525[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelShears from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3526[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelShears
3527[05:16:53] [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]
3528[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3529[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelTreetap from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3530[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelTreetap
3531[05:16:53] [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]
3532[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3533[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.darksteel.ItemDarkSteelHand from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3534[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelHand
3535[05:16:53] [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]
3536[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3537[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.item.staffoflevity.ItemStaffOfLevity from implemented interfaces: [crazypants/enderio/api/upgrades/IDarkSteelItem]
3538[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.staffoflevity.ItemStaffOfLevity
3539[05:16:53] [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]
3540[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3541[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.conduits.conduit.BlockConduitBundle from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
3542[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.conduits.conduit.BlockConduitBundle
3543[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3544[05:16:53] [Server thread/INFO] [com.enderio.core.common.transform.NoClassloadClassWriter]: Class 2 super was object or null
3545[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3546[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.alloy.BlockAlloySmelter from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3547[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.alloy.BlockAlloySmelter
3548[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3549[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3550[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.power.forge.item.PoweredBlockItem from implemented interfaces: [crazypants/enderio/base/power/forge/item/IInternalPoweredItem]
3551[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.power.forge.item.PoweredBlockItem
3552[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;]
3553[05:16:53] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3554[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.buffer.BlockBuffer from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3555[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.buffer.BlockBuffer
3556[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3557[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3558[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.farm.BlockFarmStation from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3559[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.farm.BlockFarmStation
3560[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3561[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3562[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.generator.combustion.BlockCombustionGenerator from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3563[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.generator.combustion.BlockCombustionGenerator
3564[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3565[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3566[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.generator.stirling.BlockStirlingGenerator from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3567[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.generator.stirling.BlockStirlingGenerator
3568[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3569[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3570[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.generator.lava.BlockLavaGenerator from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3571[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.generator.lava.BlockLavaGenerator
3572[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3573[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3574[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.painter.BlockPainter from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3575[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.painter.BlockPainter
3576[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3577[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3578[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.sagmill.BlockSagMill from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3579[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.sagmill.BlockSagMill
3580[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3581[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3582[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.slicensplice.BlockSliceAndSplice from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3583[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.slicensplice.BlockSliceAndSplice
3584[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3585[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3586[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.soul.BlockSoulBinder from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3587[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.soul.BlockSoulBinder
3588[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3589[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3590[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.spawner.BlockPoweredSpawner from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3591[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.spawner.BlockPoweredSpawner
3592[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3593[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3594[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.vat.BlockVat from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3595[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.vat.BlockVat
3596[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3597[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3598[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.wired.BlockWiredCharger from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3599[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.wired.BlockWiredCharger
3600[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3601[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3602[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.wireless.BlockWirelessCharger from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
3603[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.wireless.BlockWirelessCharger
3604[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3605[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3606[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.tank.BlockTank from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3607[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.tank.BlockTank
3608[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3609[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3610[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.transceiver.BlockTransceiver from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
3611[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.transceiver.BlockTransceiver
3612[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3613[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3614[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.vacuum.chest.BlockVacuumChest from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
3615[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.vacuum.chest.BlockVacuumChest
3616[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3617[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3618[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.vacuum.xp.BlockXPVacuum from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
3619[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.vacuum.xp.BlockXPVacuum
3620[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3621[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3622[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.teleport.anchor.BlockTravelAnchor from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
3623[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.teleport.anchor.BlockTravelAnchor
3624[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3625[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3626[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.teleport.telepad.BlockTelePad from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3627[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.teleport.telepad.BlockTelePad
3628[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3629[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3630[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.crafter.BlockCrafter from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3631[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.crafter.BlockCrafter
3632[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3633[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3634[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.machines.machine.spawner.creative.BlockCreativeSpawner from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3635[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.spawner.creative.BlockCreativeSpawner
3636[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3637[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3638[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.powertools.machine.capbank.BlockCapBank from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3639[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.powertools.machine.capbank.BlockCapBank
3640[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3641[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3642[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.powertools.machine.capbank.BlockItemCapBank from implemented interfaces: [crazypants/enderio/base/power/forge/item/IInternalPoweredItem]
3643[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.powertools.machine.capbank.BlockItemCapBank
3644[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;]
3645[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3646[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.powertools.machine.monitor.BlockPowerMonitor from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
3647[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.powertools.machine.monitor.BlockPowerMonitor
3648[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
3649[05:16:54] [Server thread/INFO] [EnderCore Mixins]: Successfully patched.
3650[05:16:55] [Server thread/WARN] [enderio]: TConstruct, you fail again, muhaha! The world is mine, mine!
3651[05:16:55] [Server thread/WARN] [enderio]: Applied Energistics conduits loaded. Let your networks connect!
3652[05:16:55] [Server thread/WARN] [enderio]: OpenComputers conduits NOT loaded. OpenComputers is not installed
3653[05:16:55] [Server thread/WARN] [enderio]: Refined Storage conduits NOT loaded. Refined Storage is not installed
3654[05:16:55] [Server thread/WARN] [enderio]: Forestry integration NOT loaded. Forestry is not installed
3655[05:16:55] [Server thread/INFO] [twilightforest]: It looks like you have Sponge installed! You may notice Hydras spawning incorrectly with floating heads.
3656If so, please update Sponge to resolve this issue. Have fun!
3657[05:16:56] [Server thread/INFO] [twilightforest]: Skipped compatibility for mod Baubles.
3658[05:16:56] [Server thread/INFO] [twilightforest]: Loaded compatibility for mod Chisel.
3659[05:16:56] [Server thread/INFO] [twilightforest]: Skipped compatibility for mod Forestry.
3660[05:16:56] [Server thread/INFO] [twilightforest]: Loaded compatibility for mod Immersive Engineering.
3661[05:16:56] [Server thread/INFO] [twilightforest]: Loaded compatibility for mod Just Enough Items.
3662[05:16:56] [Server thread/INFO] [twilightforest]: Loaded compatibility for mod Tinkers' Construct.
3663[05:16:56] [Server thread/INFO] [twilightforest]: Skipped compatibility for mod Thaumcraft.
3664[05:16:56] [Server thread/INFO] [BigReactors]: Loaded support for thermalexpansion
3665[05:16:56] [Server thread/INFO] [BigReactors]: Loaded support for mekanism
3666[05:16:56] [Server thread/INFO] [flansmod]: Loaded content pack : Modern.Warfare-Content.Pack-1.12.2-5.6.jar
3667[05:16:56] [Server thread/INFO] [flansmod]: Loaded content pack : Zombie-Content.Pack-1.12.2-5.6.jar
3668[05:16:56] [Server thread/INFO] [flansmod]: Loaded content pack : Simple.Parts-Content.Pack-1.12.2-5.6.jar
3669[05:16:56] [Server thread/INFO] [flansmod]: Loaded content pack : Ye.Olde-Content.Pack-1.12.2-5.6.jar
3670[05:16:56] [Server thread/INFO] [flansmod]: Loaded content pack : WW2-Content.Pack-1.12.2-5.6.jar
3671[05:16:56] [Server thread/INFO] [flansmod]: Loaded content pack list server side.
3672[05:16:56] [Server thread/INFO] [flansmod]: Loaded part.
3673[05:16:56] [Server thread/INFO] [flansmod]: Loaded bullet.
3674[05:16:56] [Server thread/INFO] [flansmod]: Loaded attachment.
3675[05:16:56] [Server thread/INFO] [flansmod]: Loaded grenade.
3676[05:16:57] [Server thread/INFO] [flansmod]: Loaded gun.
3677[05:16:57] [Server thread/INFO] [flansmod]: Loaded aa.
3678[05:16:57] [Server thread/INFO] [flansmod]: Loaded vehicle.
3679[05:16:57] [Server thread/INFO] [flansmod]: Loaded plane.
3680[05:16:57] [Server thread/INFO] [flansmod]: Loaded mechaItem.
3681[05:16:57] [Server thread/INFO] [flansmod]: Loaded mecha.
3682[05:16:57] [Server thread/INFO] [flansmod]: Loaded tool.
3683[05:16:57] [Server thread/INFO] [flansmod]: Loaded armour.
3684[05:16:57] [Server thread/WARN] [flansmod]: Could not find basicCPU when adding recipe for mwArmour
3685[05:16:57] [Server thread/INFO] [flansmod]: Loaded armourBox.
3686[05:16:57] [Server thread/INFO] [flansmod]: Loaded box.
3687[05:16:57] [Server thread/INFO] [flansmod]: Loaded playerClass.
3688[05:16:57] [Server thread/INFO] [flansmod]: Loaded team.
3689[05:16:57] [Server thread/INFO] [flansmod]: Loaded itemHolder.
3690[05:16:57] [Server thread/INFO] [flansmod]: Loaded rewardBox.
3691[05:16:57] [Server thread/INFO] [flansmod]: Loaded loadout.
3692[05:16:57] [Server thread/INFO] [STDOUT]: [pl.asie.foamfix.ProxyCommon:preInit:79]: minecraft:hopper
3693[05:16:57] [Server thread/INFO] [foamfix]: Removing LaunchWrapper package manifest map...
3694[05:16:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `ccmp` for name `saved_multipart`, expected `forgemultipartcbe`. This could be a intended override, but in most cases indicates a broken mod.
3695[05:17:07] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: ic2:block_ore_type
3696[05:17:07] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: ic2:block_scaffold_type
3697[05:17:07] [Server thread/WARN] [Sponge]: Could not find east owning class, assigning fallback id: ic2:block_i_c2_fence_east
3698[05:17:07] [Server thread/WARN] [Sponge]: Could not find north owning class, assigning fallback id: ic2:block_i_c2_fence_north
3699[05:17:07] [Server thread/WARN] [Sponge]: Could not find south owning class, assigning fallback id: ic2:block_i_c2_fence_south
3700[05:17:07] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: ic2:block_i_c2_fence_type
3701[05:17:07] [Server thread/WARN] [Sponge]: Could not find west owning class, assigning fallback id: ic2:block_i_c2_fence_west
3702[05:17:07] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: ic2:block_sheet_type
3703[05:17:07] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: ic2:block_tex_glass_type
3704[05:17:07] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: ic2:block_foam_type
3705[05:17:07] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: ic2:block_wall_type
3706[05:17:07] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: ic2:block_mining_pipe_type
3707[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 352 out of 352 recipes for shaped recipes
3708[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 79 out of 79 recipes for shapeless recipes
3709[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 41 out of 41 recipes for solid uu recipes
3710[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 27 out of 27 recipes for furnace recipes
3711[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 5 out of 5 recipes for blast furnace recipes
3712[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 14 out of 14 recipes for block cutter recipes
3713[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 51 out of 51 recipes for compressor recipes
3714[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 12 out of 12 recipes for extractor recipes
3715[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 74 out of 74 recipes for macerator recipes
3716[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 5 out of 5 recipes for metal former cutting recipes
3717[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 10 out of 10 recipes for metal former extruding recipes
3718[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 14 out of 14 recipes for metal former rolling recipes
3719[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 8 out of 8 recipes for ore washing recipes
3720[05:17:08] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 26 out of 26 recipes for thermal centrifuge recipes
3721[05:17:09] [Server thread/INFO] [metallurgy]: Metallurgy 4: Reforged is entering pre-initialization!
3722[05:17:09] [Server thread/INFO] [metallurgy]: Fluid registration complete!
3723[05:17:09] [Server thread/INFO] [metallurgy]: World generation successful!
3724[05:17:09] [Server thread/INFO] [metallurgy]: Tile Entities Registered!
3725[05:17:09] [Server thread/INFO] [metallurgy]: Tinkers' Construct integration has been pre-initialized
3726[05:17:09] [Server thread/INFO] [metallurgy]: Metallurgy ore are added to Laser Drill recipes
3727[05:17:09] [Server thread/INFO] [metallurgy]: Industrial Foregoing integration has been pre-initialized
3728[05:17:09] [Server thread/INFO] [metallurgy]: CraftTweaker Integration has been pre-initialized
3729[05:17:09] [Server thread/INFO] [metallurgy]: Metallurgy 4: Reforged: GUIs have been registered!
3730[05:17:09] [Server thread/INFO] [metallurgy]: Metallurgy 4: Reforged: Punch effect capability Registered
3731[05:17:10] [Server thread/INFO] [Mekanism]: Didn't detect MCMP, ignoring compatibility package
3732[05:17:14] [Server thread/INFO] [railcraft]: Module failed prerequisite check, disabling: railcraft:forestry
3733[05:17:14] [Server thread/INFO] [railcraft]: mods.railcraft.api.core.IRailcraftModule$MissingPrerequisiteException: Forestry not detected
3734[05:17:14] [Server thread/INFO] [railcraft]: Module failed prerequisite check, disabling: railcraft:thaumcraft
3735[05:17:14] [Server thread/INFO] [railcraft]: mods.railcraft.api.core.IRailcraftModule$MissingPrerequisiteException: Thaumcraft not detected
3736[05:17:15] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `commandblock_minecart`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
3737[05:17:15] [Server thread/INFO] [railcraft]: Successfully substituted minecraft:commandblock_minecart with railcraft:cart_command_block.
3738[05:17:15] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `minecart`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
3739[05:17:15] [Server thread/INFO] [railcraft]: Successfully substituted minecraft:minecart with railcraft:cart_basic.
3740[05:17:15] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `chest_minecart`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
3741[05:17:15] [Server thread/INFO] [railcraft]: Successfully substituted minecraft:chest_minecart with railcraft:cart_chest.
3742[05:17:15] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `furnace_minecart`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
3743[05:17:15] [Server thread/INFO] [railcraft]: Successfully substituted minecraft:furnace_minecart with railcraft:cart_furnace.
3744[05:17:15] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tnt_minecart`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
3745[05:17:15] [Server thread/INFO] [railcraft]: Successfully substituted minecraft:tnt_minecart with railcraft:cart_tnt.
3746[05:17:15] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `hopper_minecart`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
3747[05:17:15] [Server thread/INFO] [railcraft]: Successfully substituted minecraft:hopper_minecart with railcraft:cart_hopper.
3748[05:17:15] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `spawner_minecart`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
3749[05:17:15] [Server thread/INFO] [railcraft]: Successfully substituted minecraft:spawner_minecart with railcraft:cart_spawner.
3750[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_detector_variant
3751[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_machine_manipulator_variant
3752[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_machine_equipment_variant
3753[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_charge_feeder_variant
3754[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_worldspike_variant
3755[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_tank_iron_gauge_variant
3756[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_tank_iron_valve_variant
3757[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_tank_iron_wall_variant
3758[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_tank_steel_gauge_variant
3759[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_tank_steel_valve_variant
3760[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_tank_steel_wall_variant
3761[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_metal_variant
3762[05:17:16] [Server thread/WARN] [net.minecraft.network.datasync.EntityDataManager]: defineId called for: class mods.railcraft.common.carts.EntityTunnelBore from class mods.railcraft.common.plugins.forge.DataManagerPlugin
3763[05:17:16] [Server thread/WARN] [net.minecraft.network.datasync.EntityDataManager]: defineId called for: class mods.railcraft.common.carts.EntityTunnelBore from class mods.railcraft.common.plugins.forge.DataManagerPlugin
3764[05:17:16] [Server thread/WARN] [net.minecraft.network.datasync.EntityDataManager]: defineId called for: class mods.railcraft.common.carts.EntityTunnelBore from class mods.railcraft.common.plugins.forge.DataManagerPlugin
3765[05:17:16] [Server thread/WARN] [net.minecraft.network.datasync.EntityDataManager]: defineId called for: class mods.railcraft.common.carts.EntityTunnelBore from class mods.railcraft.common.plugins.forge.DataManagerPlugin
3766[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_machine_signal_railcraft_variant
3767[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_machine_signal_dual_railcraft_variant
3768[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_machine_signal_box_railcraft_variant
3769[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3770[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3771[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3772[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3773[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3774[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3775[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3776[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3777[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3778[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3779[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3780[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3781[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3782[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_brick_variant
3783[05:17:16] [Server thread/WARN] [Sponge]: Could not find color owning class, assigning fallback id: railcraft:block_strength_glass_color
3784[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_generic_variant
3785[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_reinforced_concrete_variant
3786[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_machine_actuator_variant
3787[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_ore_variant
3788[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_ore_metal_variant
3789[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_ore_metal_poor_variant
3790[05:17:16] [Server thread/WARN] [Sponge]: Could not find variant owning class, assigning fallback id: railcraft:block_ore_magic_variant
3791[05:17:16] [Server thread/INFO] [omlib]: Found the following mods: IC2
3792[05:17:17] [Server thread/WARN] [Sponge]: Could not find static owning class, assigning fallback id: openblocks:block_sprinkler_static
3793[05:17:18] [Server thread/INFO] [openmodularturrets]: Hi there, dV=V0B(t1-t0)! (Found ThermalExpansion)
3794[05:17:18] [Server thread/INFO] [openmodularturrets]: Not sure if iron ingot, or electrical steel ingot... (Found EnderIO)
3795[05:17:18] [Server thread/INFO] [openmodularturrets]: Mur omsimu, plz. (Found Mekanism)
3796[05:17:19] [Server thread/WARN] [ProjectRed]: Failed to load PR Plugin: ComputerCraft: bundled cable connections
3797[05:17:19] [Server thread/WARN] [ProjectRed]: Failed to load PR Plugin: Treecapitator: gem axe compat
3798[05:17:19] [Server thread/WARN] [Sponge]: Could not find tile_idx owning class, assigning fallback id: projectred-fabrication:block_i_c_machine_tile_idx
3799[05:17:19] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: projectred-exploration:block_ore_type
3800[05:17:19] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: projectred-exploration:block_decorative_stone_type
3801[05:17:21] [Server thread/WARN] [FML]: A mod has attempted to assign Block Block{minecraft:air} to the Fluid 'creosote' but this Fluid has already been linked to the Block Block{railcraft:creosote}. You may have duplicate Fluid Blocks as a result. It *may* be possible to configure your mods to avoid this.
3802[05:17:22] [Immersive Engineering Contributors Thread/INFO] [immersiveengineering]: Attempting to download special revolvers from GitHub
3803[05:17:22] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `electrolyzer`, expected `alchemistry`. This could be a intended override, but in most cases indicates a broken mod.
3804[05:17:22] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `chemical_dissolver`, expected `alchemistry`. This could be a intended override, but in most cases indicates a broken mod.
3805[05:17:22] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `chemical_combiner`, expected `alchemistry`. This could be a intended override, but in most cases indicates a broken mod.
3806[05:17:22] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `evaporator`, expected `alchemistry`. This could be a intended override, but in most cases indicates a broken mod.
3807[05:17:22] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `atomizer`, expected `alchemistry`. This could be a intended override, but in most cases indicates a broken mod.
3808[05:17:22] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `liquifier`, expected `alchemistry`. This could be a intended override, but in most cases indicates a broken mod.
3809[05:17:22] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fission_controller`, expected `alchemistry`. This could be a intended override, but in most cases indicates a broken mod.
3810[05:17:22] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fusion_controller`, expected `alchemistry`. This could be a intended override, but in most cases indicates a broken mod.
3811[05:17:22] [Server thread/INFO] [Chisel]: Loading blocks...
3812[05:17:22] [Server thread/INFO] [Chisel]: Skipping feature bloodMagic as its required mod bloodmagic was missing.
3813[05:17:22] [Server thread/INFO] [Chisel]: 71 Feature's blocks loaded.
3814[05:17:22] [Server thread/INFO] [Chisel]: Loading Tile Entities...
3815[05:17:22] [Server thread/INFO] [Chisel]: Tile Entities loaded.
3816[05:17:22] [Server thread/WARN] [Sponge]: Could not find iomode owning class, assigning fallback id: enderio:block_machine_i_o_iomode
3817[05:17:22] [Server thread/WARN] [Sponge]: Could not find sub owning class, assigning fallback id: enderio:block_machine_base_sub
3818[05:17:23] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: enderio:block_decoration_type
3819[05:17:23] [Server thread/WARN] [Sponge]: Could not find kind owning class, assigning fallback id: enderio:block_fused_quartz_kind
3820[05:17:23] [Server thread/WARN] [Sponge]: Could not find render owning class, assigning fallback id: enderio:block_fused_quartz_render
3821[05:17:23] [Server thread/WARN] [Sponge]: Could not find render owning class, assigning fallback id: enderio:_render
3822[05:17:23] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: enderio:block_buffer_type
3823[05:17:23] [Server thread/WARN] [Sponge]: Could not find kind owning class, assigning fallback id: enderio:block_solar_panel_kind
3824[05:17:23] [Server thread/WARN] [Sponge]: Could not find kind owning class, assigning fallback id: enderio:block_tank_kind
3825[05:17:23] [Server thread/WARN] [Sponge]: Could not find kind owning class, assigning fallback id: enderio:block_cap_bank_kind
3826[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.table`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3827[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.craftingstation`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3828[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.stenciltable`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3829[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.partbuilder`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3830[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.patternchest`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3831[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.partchest`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3832[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.toolstation`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3833[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.toolforge`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3834[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.smeltery_controller`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3835[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.smeltery_component`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3836[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.tank`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3837[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.faucet`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3838[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.channel`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3839[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.casting_table`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3840[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.casting_basin`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3841[05:17:23] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.smeltery_drain`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3842[05:17:24] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.seared_furnace`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3843[05:17:24] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.tinker_tank`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3844[05:17:24] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.item_rack`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3845[05:17:24] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.drying_rack`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3846[05:17:24] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.wooden_hopper`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3847[05:17:24] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tconstruct.slime_channel`, expected `tconstruct`. This could be a intended override, but in most cases indicates a broken mod.
3848[05:17:24] [Server thread/WARN] [Sponge]: Could not find casing owning class, assigning fallback id: bigreactors:block_multiblock_casing_casing
3849[05:17:24] [Server thread/WARN] [Sponge]: Could not find facings owning class, assigning fallback id: bigreactors:block_multiblock_glass_facings
3850[05:17:24] [Server thread/WARN] [Sponge]: Could not find afstate owning class, assigning fallback id: bigreactors:block_multiblock_controller_afstate
3851[05:17:24] [Server thread/WARN] [Sponge]: Could not find controller owning class, assigning fallback id: bigreactors:block_multiblock_controller_controller
3852[05:17:24] [Server thread/WARN] [Sponge]: Could not find powerstate owning class, assigning fallback id: bigreactors:block_multiblock_power_tap_powerstate
3853[05:17:24] [Server thread/WARN] [Sponge]: Could not find portdirection owning class, assigning fallback id: bigreactors:block_multiblock_i_o_port_portdirection
3854[05:17:24] [Server thread/WARN] [Sponge]: Could not find lit owning class, assigning fallback id: bigreactors:block_reactor_redstone_port_lit
3855[05:17:24] [Server thread/WARN] [Sponge]: Could not find fuelrodstate owning class, assigning fallback id: bigreactors:block_reactor_fuel_rod_fuelrodstate
3856[05:17:24] [Server thread/WARN] [Sponge]: Could not find state owning class, assigning fallback id: bigreactors:block_turbine_rotor_shaft_state
3857[05:17:24] [Server thread/WARN] [Sponge]: Could not find state owning class, assigning fallback id: bigreactors:block_turbine_rotor_blade_state
3858[05:17:24] [Server thread/WARN] [Sponge]: Could not find active owning class, assigning fallback id: mekanism:_active
3859[05:17:24] [Server thread/WARN] [Sponge]: Could not find facing owning class, assigning fallback id: mekanism:_facing
3860[05:17:24] [Server thread/WARN] [Sponge]: Could not find tier owning class, assigning fallback id: mekanism:_tier
3861[05:17:24] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanism:_type
3862[05:17:24] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanism:_type
3863[05:17:24] [Server thread/WARN] [Sponge]: Could not find active owning class, assigning fallback id: mekanism:_active
3864[05:17:24] [Server thread/WARN] [Sponge]: Could not find recipe owning class, assigning fallback id: mekanism:_recipe
3865[05:17:24] [Server thread/WARN] [Sponge]: Could not find tier owning class, assigning fallback id: mekanism:_tier
3866[05:17:24] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanism:_type
3867[05:17:24] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanism:_type
3868[05:17:24] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanism:_type
3869[05:17:24] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanism:block_ore_type
3870[05:17:24] [Server thread/WARN] [Sponge]: Could not find tier owning class, assigning fallback id: mekanism:block_energy_cube_tier
3871[05:17:24] [Server thread/WARN] [Sponge]: Could not find tier owning class, assigning fallback id: mekanism:block_transmitter_tier
3872[05:17:24] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanism:block_transmitter_type
3873[05:17:24] [Server thread/WARN] [Sponge]: Could not find advanced owning class, assigning fallback id: mekanism:block_bounding_advanced
3874[05:17:24] [Server thread/WARN] [Sponge]: Could not find tier owning class, assigning fallback id: mekanism:block_gas_tank_tier
3875[05:17:24] [Server thread/WARN] [Sponge]: Could not find storage owning class, assigning fallback id: mekanism:block_cardboard_box_storage
3876[05:17:24] [Server thread/WARN] [Sponge]: Could not find color owning class, assigning fallback id: mekanism:block_plastic_color
3877[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `portal`, expected `mekanism`. This could be a intended override, but in most cases indicates a broken mod.
3878[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.iron`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3879[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.gold`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3880[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.diamond`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3881[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.copper`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3882[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.silver`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3883[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.crystal`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3884[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.obsidian`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3885[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.dirtchest9000`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3886[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.iron`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3887[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.gold`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3888[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.diamond`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3889[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.copper`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3890[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.silver`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3891[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.crystal`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3892[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.obsidian`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
3893[05:17:25] [Server thread/WARN] [Sponge]: Could not find active owning class, assigning fallback id: mekanismgenerators:_active
3894[05:17:25] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanismgenerators:_type
3895[05:17:25] [Server thread/WARN] [Sponge]: Could not find active owning class, assigning fallback id: mekanismgenerators:_active
3896[05:17:25] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanismgenerators:_type
3897[05:17:25] [Server thread/WARN] [Sponge]: Could not find type owning class, assigning fallback id: mekanismgenerators:_type
3898[05:17:25] [Server thread/WARN] [Sponge]: Could not find _0multiblockslave owning class, assigning fallback id: immersiveengineering:block_stone_device__0multiblockslave
3899[05:17:25] [Server thread/WARN] [Sponge]: Could not find boolean0 owning class, assigning fallback id: immersiveengineering:block_stone_device_boolean0
3900[05:17:25] [Server thread/WARN] [Sponge]: Could not find facing owning class, assigning fallback id: immersiveengineering:block_stone_device_facing
3901[05:17:25] [Server thread/WARN] [Sponge]: Could not find facing owning class, assigning fallback id: immersiveengineering:block_wooden_device0_facing
3902[05:17:25] [Server thread/WARN] [Sponge]: Could not find int_4 owning class, assigning fallback id: immersiveengineering:block_wooden_device1_int_4
3903[05:17:25] [Server thread/WARN] [Sponge]: Could not find boolean1 owning class, assigning fallback id: immersiveengineering:block_connector_boolean1
3904[05:17:25] [Server thread/WARN] [Sponge]: Could not find _1dynamicrender owning class, assigning fallback id: immersiveengineering:block_metal_multiblocks__1dynamicrender
3905[05:17:25] [Server thread/WARN] [Sponge]: Could not find int_16 owning class, assigning fallback id: immersiveengineering:block_i_e_fluid_concrete_int_16
3906[05:17:25] [Server thread/INFO] [flansmod]: Registering Blocks
3907[05:17:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `conveyor_tile`, expected `industrialforegoing`. This could be a intended override, but in most cases indicates a broken mod.
3908[05:17:25] [Server thread/INFO] [FML]: Applying holder lookups
3909[05:17:25] [Server thread/INFO] [FML]: Holder lookups applied
3910[05:17:25] [Server thread/INFO] [Chisel]: Loading items...
3911[05:17:25] [Server thread/INFO] [Chisel]: Skipping feature bloodMagic as its required mod bloodmagic was missing.
3912[05:17:25] [Server thread/INFO] [Chisel]: 71 Feature's items loaded.
3913[05:17:26] [Server thread/INFO] [metallurgy]: Metallurgy 4: Reforged: OreDictionary has been initialized
3914[05:17:26] [Server thread/INFO] [flansmod]: Registering Items
3915[05:17:26] [Server thread/INFO] [FML]: Applying holder lookups
3916[05:17:26] [Server thread/INFO] [FML]: Holder lookups applied
3917[05:17:26] [Server thread/INFO] [enderio]: Farming Station: TechReborn integration not loaded
3918[05:17:26] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `ic2` for name `trees`, expected `enderio`. This could be a intended override, but in most cases indicates a broken mod.
3919[05:17:26] [Server thread/INFO] [enderio]: Farming Station: IC2 integration fully loaded
3920[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Extra Utilities 2 integration not loaded
3921[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Natura integration not loaded
3922[05:17:26] [Server thread/INFO] [enderio]: Farming Station: MFR integration not loaded
3923[05:17:26] [Server thread/INFO] [enderio]: Farming Station: IC2 classic integration not loaded
3924[05:17:26] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `immersiveengineering` for name `hemp`, expected `enderio`. This could be a intended override, but in most cases indicates a broken mod.
3925[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Immersive Engineering integration fully loaded
3926[05:17:26] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `botania` for name `petals`, expected `enderio`. This could be a intended override, but in most cases indicates a broken mod.
3927[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Botania integration for farming fully loaded
3928[05:17:26] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dye`, expected `enderio`. This could be a intended override, but in most cases indicates a broken mod.
3929[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Magicalcrops integration not loaded
3930[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Metallurgy integration not loaded
3931[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Actually Additions integration not loaded
3932[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Gardencore integration not loaded
3933[05:17:26] [Server thread/INFO] [enderio]: Farming Station: Botania integration for fertilizing not loaded
3934[05:17:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `sponge` for name `human`, expected `spongeforge`. This could be a intended override, but in most cases indicates a broken mod.
3935[05:17:27] [Server thread/INFO] [flansmod]: Registering Entities
3936[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: java.lang.NoSuchMethodException: slimeknights.tconstruct.common.TinkerOredict.doTheOredict(net.minecraftforge.fml.common.event.FMLInitializationEvent)
3937[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at java.lang.Class.getDeclaredMethod(Class.java:2130)
3938[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at thelm.oredictinit.compat.CompatTinkersConstruct.register(CompatTinkersConstruct.java:19)
3939[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at thelm.oredictinit.registry.OreDictRegisCore.initCompat(OreDictRegisCore.java:18)
3940[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at thelm.oredictinit.lib.EventHandler.onRegistryWrapUp(EventHandler.java:24)
3941[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_646_EventHandler_onRegistryWrapUp_Event0.invoke(.dynamic)
3942[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
3943[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144)
3944[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.EventBus.forgeBridge$post(EventBus.java:755)
3945[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:702)
3946[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at thelm.wrapup.WrapUp.onVillagerProfessionRegisterLowest(WrapUp.java:97)
3947[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_384_WrapUp_onVillagerProfessionRegisterLowest_Register.invoke(.dynamic)
3948[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
3949[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144)
3950[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.EventBus.forgeBridge$post(EventBus.java:755)
3951[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:702)
3952[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.registries.GameData.fireRegistryEvents(GameData.java:857)
3953[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:628)
3954[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:99)
3955[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333)
3956[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125)
3957[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)
3958[05:17:27] [Server thread/INFO] [STDERR]: [thelm.oredictinit.compat.CompatTinkersConstruct:register:24]: at java.lang.Thread.run(Thread.java:748)
3959[05:17:27] [Server thread/INFO] [OreDictInit]: Loading Custom Block Entries
3960[05:17:27] [Server thread/INFO] [OreDictInit]: Loading Custom Item Entries
3961[05:17:27] [Server thread/INFO] [FML]: Applying holder lookups
3962[05:17:27] [Server thread/INFO] [FML]: Holder lookups applied
3963[05:17:27] [Server thread/INFO] [FML]: Applying holder lookups
3964[05:17:27] [Server thread/INFO] [FML]: Holder lookups applied
3965[05:17:27] [Server thread/INFO] [FML]: Injecting itemstacks
3966[05:17:27] [Server thread/INFO] [FML]: Itemstack injection complete
3967[05:17:27] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Loading properties
3968[05:17:27] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Default game type: SURVIVAL
3969[05:17:27] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Generating keypair
3970[05:17:28] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting Minecraft server on 0.0.0.0:25574
3971[05:17:28] [Server thread/INFO] [net.minecraft.network.NetworkSystem]: Using epoll channel type
3972[05:17:28] [Server thread/INFO] [railcraft]: Fluid ingredient factory loaded
3973[05:17:28] [Server thread/INFO] [railcraft]: Remaining item shaped recipe factory loaded
3974[05:17:28] [Server thread/INFO] [railcraft]: Remaining item shaped recipe factory loaded
3975[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:tools/matter_cannon
3976com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:matter_cannon'
3977 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
3978 at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:254) ~[ShapedOreRecipe.class:?]
3979 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
3980 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
3981 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
3982 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
3983 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
3984 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
3985 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
3986 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
3987 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
3988 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
3989 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
3990 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
3991[05:17:28] [Server thread/WARN] [AE2:S]: Looking for ingredient with name 'material.cell2_spatial_part' ended up with a null item!
3992[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_storage_cell_2_cubed_storage
3993com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:spatial_storage_cell_2_cubed'
3994 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
3995 at net.minecraftforge.oredict.ShapelessOreRecipe.factory(ShapelessOreRecipe.java:157) ~[ShapelessOreRecipe.class:?]
3996 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
3997 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
3998 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
3999 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4000 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4001 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4002 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4003 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4004 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4005 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4006 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4007 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4008[05:17:28] [Server thread/WARN] [AE2:S]: Looking for ingredient with name 'material.cell2_spatial_part' ended up with a null item!
4009[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_storage_cell_2_cubed
4010com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:spatial_storage_cell_2_cubed'
4011 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
4012 at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:254) ~[ShapedOreRecipe.class:?]
4013 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4014 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4015 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4016 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4017 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4018 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4019 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4020 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4021 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4022 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4023 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4024 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4025[05:17:28] [Server thread/WARN] [AE2:S]: Looking for ingredient with name 'material.cell16_spatial_part' ended up with a null item!
4026[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_storage_cell_16_cubed_storage
4027com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:spatial_storage_cell_16_cubed'
4028 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
4029 at net.minecraftforge.oredict.ShapelessOreRecipe.factory(ShapelessOreRecipe.java:157) ~[ShapelessOreRecipe.class:?]
4030 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4031 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4032 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4033 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4034 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4035 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4036 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4037 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4038 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4039 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4040 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4041 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4042[05:17:28] [Server thread/WARN] [AE2:S]: Looking for ingredient with name 'material.cell16_spatial_part' ended up with a null item!
4043[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_storage_cell_16_cubed
4044com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:spatial_storage_cell_16_cubed'
4045 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
4046 at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:254) ~[ShapedOreRecipe.class:?]
4047 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4048 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4049 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4050 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4051 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4052 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4053 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4054 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4055 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4056 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4057 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4058 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4059[05:17:28] [Server thread/WARN] [AE2:S]: Looking for ingredient with name 'material.cell128_spatial_part' ended up with a null item!
4060[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_storage_cell_128_cubed_storage
4061com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:spatial_storage_cell_128_cubed'
4062 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
4063 at net.minecraftforge.oredict.ShapelessOreRecipe.factory(ShapelessOreRecipe.java:157) ~[ShapelessOreRecipe.class:?]
4064 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4065 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4066 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4067 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4068 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4069 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4070 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4071 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4072 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4073 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4074 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4075 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4076[05:17:28] [Server thread/WARN] [AE2:S]: Looking for ingredient with name 'material.cell128_spatial_part' ended up with a null item!
4077[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_storage_cell_128_cubed
4078com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:spatial_storage_cell_128_cubed'
4079 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
4080 at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:254) ~[ShapedOreRecipe.class:?]
4081 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4082 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4083 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4084 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4085 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4086 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4087 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4088 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4089 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4090 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4091 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4092 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4093[05:17:28] [Server thread/WARN] [AE2:S]: Looking for ingredient with name 'material.cell16_spatial_part' ended up with a null item!
4094[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_components_1
4095com.google.gson.JsonSyntaxException: Couldn't find the resulting item in AE. This means AE was provided a recipe that it shouldn't be handling.
4096Was looking for : 'material.cell128_spatial_part'.
4097 at appeng.recipes.factories.recipes.PartRecipeFactory.getPart(PartRecipeFactory.java:118) ~[PartRecipeFactory.class:?]
4098 at appeng.recipes.factories.recipes.PartRecipeFactory.getResult(PartRecipeFactory.java:86) ~[PartRecipeFactory.class:?]
4099 at appeng.recipes.factories.recipes.PartRecipeFactory.getResult(PartRecipeFactory.java:77) ~[PartRecipeFactory.class:?]
4100 at appeng.recipes.factories.recipes.PartRecipeFactory.shapedFactory(PartRecipeFactory.java:191) ~[PartRecipeFactory.class:?]
4101 at appeng.recipes.factories.recipes.PartRecipeFactory.parse(PartRecipeFactory.java:63) ~[PartRecipeFactory.class:?]
4102 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4103 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4104 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4105 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4106 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4107 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4108 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4109 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4110 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4111 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4112 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4113 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4114[05:17:28] [Server thread/WARN] [AE2:S]: Looking for ingredient with name 'material.cell2_spatial_part' ended up with a null item!
4115[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_components_0
4116com.google.gson.JsonSyntaxException: Couldn't find the resulting item in AE. This means AE was provided a recipe that it shouldn't be handling.
4117Was looking for : 'material.cell16_spatial_part'.
4118 at appeng.recipes.factories.recipes.PartRecipeFactory.getPart(PartRecipeFactory.java:118) ~[PartRecipeFactory.class:?]
4119 at appeng.recipes.factories.recipes.PartRecipeFactory.getResult(PartRecipeFactory.java:86) ~[PartRecipeFactory.class:?]
4120 at appeng.recipes.factories.recipes.PartRecipeFactory.getResult(PartRecipeFactory.java:77) ~[PartRecipeFactory.class:?]
4121 at appeng.recipes.factories.recipes.PartRecipeFactory.shapedFactory(PartRecipeFactory.java:191) ~[PartRecipeFactory.class:?]
4122 at appeng.recipes.factories.recipes.PartRecipeFactory.parse(PartRecipeFactory.java:63) ~[PartRecipeFactory.class:?]
4123 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4124 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4125 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4126 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4127 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4128 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4129 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4130 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4131 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4132 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4133 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4134 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4135[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/cells/spatial_components
4136com.google.gson.JsonSyntaxException: Couldn't find the resulting item in AE. This means AE was provided a recipe that it shouldn't be handling.
4137Was looking for : 'material.cell2_spatial_part'.
4138 at appeng.recipes.factories.recipes.PartRecipeFactory.getPart(PartRecipeFactory.java:118) ~[PartRecipeFactory.class:?]
4139 at appeng.recipes.factories.recipes.PartRecipeFactory.getResult(PartRecipeFactory.java:86) ~[PartRecipeFactory.class:?]
4140 at appeng.recipes.factories.recipes.PartRecipeFactory.getResult(PartRecipeFactory.java:77) ~[PartRecipeFactory.class:?]
4141 at appeng.recipes.factories.recipes.PartRecipeFactory.shapedFactory(PartRecipeFactory.java:191) ~[PartRecipeFactory.class:?]
4142 at appeng.recipes.factories.recipes.PartRecipeFactory.parse(PartRecipeFactory.java:63) ~[PartRecipeFactory.class:?]
4143 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4144 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4145 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4146 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4147 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4148 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4149 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4150 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4151 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4152 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4153 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4154 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4155[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/blocks/spatial_io_pylon
4156com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:spatial_pylon'
4157 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
4158 at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:254) ~[ShapedOreRecipe.class:?]
4159 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4160 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4161 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4162 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4163 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4164 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4165 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4166 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4167 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4168 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4169 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4170 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4171[05:17:28] [Server thread/ERROR] [FML]: Parsing error loading recipe appliedenergistics2:network/blocks/spatial_io_port
4172com.google.gson.JsonSyntaxException: Unknown item 'appliedenergistics2:spatial_io_port'
4173 at net.minecraftforge.common.crafting.CraftingHelper.getItemStack(CraftingHelper.java:213) ~[CraftingHelper.class:?]
4174 at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:254) ~[ShapedOreRecipe.class:?]
4175 at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?]
4176 at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
4177 at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?]
4178 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?]
4179 at java.util.ArrayList.forEach(ArrayList.java:1257) [?:1.8.0_222]
4180 at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?]
4181 at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
4182 at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
4183 at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
4184 at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:219) [nz.class:?]
4185 at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
4186 at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
4187[05:17:29] [Server thread/INFO] [FML]: Ignored smelting recipe with conflicting input: 1xic2.dust@8 = 1xitem.ingotIron@0
4188[05:17:29] [Server thread/INFO] [FML]: Ignored smelting recipe with conflicting input: 1xic2.dust@7 = 1xitem.ingotGold@0
4189[05:17:30] [Server thread/INFO] [Chisel]: Loading recipes...
4190[05:17:30] [Server thread/INFO] [Chisel]: Skipping feature bloodMagic as its required mod bloodmagic was missing.
4191[05:17:30] [Server thread/INFO] [Chisel]: 71 Feature's recipes loaded.
4192[05:17:30] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `enderio` for name `capbank_basic2normal`, expected `enderiopowertools`. This could be a intended override, but in most cases indicates a broken mod.
4193[05:17:30] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `enderio` for name `capbank_normal2vibrant`, expected `enderiopowertools`. This could be a intended override, but in most cases indicates a broken mod.
4194[05:17:30] [Server thread/INFO] [FML]: Ignored smelting recipe with conflicting input: 1xitem.Dust@0 = 1xitem.ingotIron@0
4195[05:17:30] [Server thread/INFO] [FML]: Ignored smelting recipe with conflicting input: 1xitem.Dust@1 = 1xitem.ingotGold@0
4196[05:17:30] [Server thread/INFO] [FML]: Ignored smelting recipe with conflicting input: 1xitem.immersiveengineering.metal@18 = 1xitem.ingotIron@0
4197[05:17:30] [Server thread/INFO] [FML]: Ignored smelting recipe with conflicting input: 1xitem.immersiveengineering.metal@19 = 1xitem.ingotGold@0
4198[05:17:30] [Server thread/INFO] [FML]: Ignored smelting recipe with conflicting input: 1xitem.thermalfoundation.material@0 = 1xitem.ingotIron@0
4199[05:17:30] [Server thread/INFO] [FML]: Ignored smelting recipe with conflicting input: 1xitem.thermalfoundation.material@1 = 1xitem.ingotGold@0
4200[05:17:30] [Server thread/INFO] [flansmod]: Registering Recipes.
4201[05:17:30] [Server thread/WARN] [mixin]: Method overwrite conflict for accessor$getListeners in mixins.common.core.json:world.border.WorldBorderAccessor, previously written by org.spongepowered.common.mixin.core.world.border.WorldBorderMixin. Skipping method.
4202[05:17:31] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `enderio` for name `gogglesOfRevealing`, expected `crafttweaker`. This could be a intended override, but in most cases indicates a broken mod.
4203[05:17:31] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `enderio` for name `thaumaturge_robes_chest`, expected `crafttweaker`. This could be a intended override, but in most cases indicates a broken mod.
4204[05:17:31] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `enderio` for name `thaumaturge_robes_legs`, expected `crafttweaker`. This could be a intended override, but in most cases indicates a broken mod.
4205[05:17:31] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `enderio` for name `thaumaturge_robes_feet`, expected `crafttweaker`. This could be a intended override, but in most cases indicates a broken mod.
4206[05:17:32] [Server thread/INFO] [FML]: Applying holder lookups
4207[05:17:32] [Server thread/INFO] [FML]: Holder lookups applied
4208[05:17:32] [Server thread/INFO] [nucleus]: Nucleus is now entering the init phase.
4209[05:17:33] [Server thread/INFO] [pjp]: Portal module activated
4210[05:17:33] [Server thread/INFO] [com.zaxxer.hikari.HikariDataSource]: HikariPool-2 - Starting...
4211[05:17:33] [Server thread/INFO] [com.zaxxer.hikari.HikariDataSource]: HikariPool-2 - Start completed.
4212[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: [EF] Preparing wings...
4213[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: [EF] Configs loaded...
4214[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: [EF] Loading managers and cache...
4215[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: [EF] HOCON storage has been initialized!
4216[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: [EF] Managers loaded...
4217[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: [EF] Commands loaded...
4218[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: ==========================================
4219[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Eagle Factions is ready to use!
4220[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Thank you for choosing this plugin!
4221[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Current version: 0.12.0
4222[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Have a great time with Eagle Factions! :D
4223[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: ==========================================
4224[05:17:33] [Server thread/INFO] [catclearlag]: Starting plugin...
4225[05:17:33] [Server thread/INFO] [catclearlag]: Registering commands...
4226[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Universe Guard 2[init]: Loading...
4227[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Universe Guard 2[init]: Loading Configuration
4228[05:17:33] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Universe Guard 2[init]: Configuration loaded!
4229[05:17:34] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Universe Guard 2[init]: Loaded!
4230[05:17:34] [Server thread/INFO] [voxelsniper]: Loading VoxelSniper configuration
4231[05:17:34] [Server thread/INFO] [voxelsniper]: Registered 58 Sniper Brushes with 116 handles.
4232[05:17:34] [Server thread/INFO] [nucleus]: Nucleus is now entering the post-init phase.
4233[05:17:34] [Server thread/INFO] [nucleus]: Nucleus is now loading and enabling modules. This may take a few seconds.
4234[05:17:34] [Server thread/INFO] [nucleus]: Starting phase: PREENABLE
4235[05:17:34] [Server thread/INFO] [nucleus]: Starting phase: ENABLE
4236[05:17:37] [Server thread/INFO] [nucleus]: Starting phase: POSTENABLE
4237[05:17:37] [Server thread/INFO] [nucleus]: Nucleus language set to "en-GB"
4238[05:17:37] [Server thread/INFO] [nucleus]: Nucleus has completed loading modules.
4239[05:17:37] [Server thread/INFO] [nucleus]: Nucleus has completed server initialisation tasks. Waiting for game server to start to complete the final tasks.
4240[05:17:38] [Server thread/INFO] [AE2:S]: Initialization ( started )
4241[05:17:38] [Server thread/INFO] [AE2:S]: Disabling item.csv export for custom recipes, since creative tab information is only available on the client.
4242[05:17:38] [Server thread/INFO] [AE2:S]: Initialization ( ended after 158ms )
4243[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Skipping class com.enderio.core.client.handlers.EnchantTooltipHandler, it is not loaded on this side.
4244[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Skipping class com.enderio.core.client.handlers.OreDictTooltipHandler, it is not loaded on this side.
4245[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Registering handler AutoSmeltHandler to busses: [FORGE]
4246[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Skipping class com.enderio.core.client.handlers.ClientHandler, it is not loaded on this side.
4247[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Skipping class com.enderio.core.client.handlers.FluidVisualsHandler, it is not loaded on this side.
4248[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Registering handler FireworkHandler to busses: [FORGE]
4249[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Skipping class com.enderio.core.client.handlers.SpecialTooltipHandler, it is not loaded on this side.
4250[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Registering handler XPBoostHandler to busses: [FORGE]
4251[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Registering handler JoinMessageHandler to busses: [FORGE]
4252[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Registering handler FluidSpawnHandler to busses: [FORGE]
4253[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Registering handler RightClickCropHandler to busses: [FORGE]
4254[05:17:38] [Server thread/INFO] [EnderCore]: [Handlers] Registering handler Scheduler to busses: [FORGE]
4255[05:17:38] [Server thread/INFO] [EnderCore]: Sending dummy event to all mods
4256[05:17:38] [Server thread/INFO] [EnderCore]: Reloading ingame configs for modid: endercore
4257[05:17:38] [Server thread/INFO] [enderio]: Reloading config file...
4258[05:17:38] [Server thread/INFO] [enderio]: Config reload finished
4259[05:17:38] [Server thread/INFO] [enderio]: Reloading config file...
4260[05:17:38] [Server thread/INFO] [enderio]: Config reload finished
4261[05:17:38] [Server thread/INFO] [enderio]: Reloading config file...
4262[05:17:38] [Server thread/INFO] [enderio]: Config reload finished
4263[05:17:38] [Server thread/INFO] [enderio]: Reloading config file...
4264[05:17:38] [Server thread/INFO] [enderio]: Config reload finished
4265[05:17:38] [Server thread/INFO] [enderio]: Reloading config file...
4266[05:17:38] [Server thread/INFO] [enderio]: Config reload finished
4267[05:17:38] [Server thread/WARN] [Sponge]: Plugin 'endercore' is attempting to register command 'reloadServerConfigs' with an uppercase character - adjusting to 'reloadserverconfigs'
4268[05:17:38] [Server thread/WARN] [org.dimdev.utils.ModIdentifier]: Failed to identify sun.reflect.GeneratedMethodAccessor10 (untransformed name: sun.reflect.GeneratedMethodAccessor10)
4269[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_dark_steel_anvil
4270[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_dark_paper_anvil
4271[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_basic_item_filter
4272[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_advanced_item_filter
4273[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_limited_item_filter
4274[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_big_item_filter
4275[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_big_advanced_item_filter
4276[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_existing_item_filter
4277[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_mod_item_filter
4278[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_power_item_filter
4279[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_soul_filter_normal
4280[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_soul_filter_big
4281[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_enchantment_filter_normal
4282[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_enchantment_filter_big
4283[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_fluid_filter
4284[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_not_filter
4285[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_or_filter
4286[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_and_filter
4287[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_nor_filter
4288[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_nand_filter
4289[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_xor_filter
4290[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_xnor_filter
4291[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_toggle_filter
4292[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_counting_filter
4293[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_sensor_filter
4294[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_redstone_timer_filter
4295[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_dark_steel_helmet
4296[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_dark_steel_chestplate
4297[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_dark_steel_leggings
4298[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_dark_steel_boots
4299[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_end_steel_helmet
4300[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_end_steel_chestplate
4301[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_end_steel_leggings
4302[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.item_end_steel_boots
4303[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_conduit_bundle
4304[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_simple_furnace
4305[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_simple_alloy_smelter
4306[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_alloy_smelter
4307[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_enhanced_alloy_smelter
4308[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_buffer
4309[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_enchanter
4310[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_farm_station
4311[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_combustion_generator
4312[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_enhanced_combustion_generator
4313[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_simple_stirling_generator
4314[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_stirling_generator
4315[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_zombie_generator
4316[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_franken_zombie_generator
4317[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_ender_generator
4318[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_lava_generator
4319[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_killer_joe
4320[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_attractor_obelisk
4321[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_aversion_obelisk
4322[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_inhibitor_obelisk
4323[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_relocator_obelisk
4324[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_weather_obelisk
4325[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_experience_obelisk
4326[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_painter
4327[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_simple_sag_mill
4328[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_sag_mill
4329[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_enhanced_sag_mill
4330[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_slice_and_splice
4331[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_soul_binder
4332[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_powered_spawner
4333[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_vat
4334[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_enhanced_vat
4335[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_simple_wired_charger
4336[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_wired_charger
4337[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_enhanced_wired_charger
4338[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_tank
4339[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_transceiver
4340[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_vacuum_chest
4341[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_xp_vacuum
4342[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_travel_anchor
4343[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_tele_pad
4344[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_dialing_device
4345[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_impulse_hopper
4346[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_simple_crafter
4347[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_crafter
4348[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_creative_spawner
4349[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_cap_bank
4350[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_power_monitor
4351[05:17:38] [Server thread/INFO] [enderio]: Registered permission enderio.gui.block_advanced_power_monitor
4352[05:17:38] [Server thread/INFO] [enderio]: Sending whitelist message to Chisel and Bits for block blockDecoration1
4353[05:17:38] [Server thread/INFO] [enderio]: Sending whitelist message to Chisel and Bits for block blockDecoration2
4354[05:17:38] [Server thread/INFO] [enderio]: Sending whitelist message to Chisel and Bits for block blockDecoration3
4355[05:17:39] [Server thread/INFO] [STDOUT]: [crazypants.enderio.conduit.me.EnderIOConduitsAppliedEnergistics:init:74]: Mixin successful? true
4356[05:17:39] [Server thread/WARN] [FML]: Overriding existing radiation moderator data for <redstone>
4357[05:17:39] [Server thread/WARN] [FML]: Overriding existing radiation moderator data for <glowstone>
4358[05:17:39] [Server thread/WARN] [FML]: Overriding existing radiation moderator data for <ender>
4359[05:17:39] [Server thread/INFO] [flansmod]: Initialising Flan's Mod.
4360[05:17:39] [Server thread/INFO] [flansmod]: Loading complete.
4361[05:17:39] [Server thread/INFO] [foamfix]: Deduplicated 550 property sets.
4362[05:17:39] [Server thread/INFO] [foamfix]: Weakening LaunchWrapper resource cache...
4363[05:17:39] [Server thread/INFO] [metallurgy]: Metallurgy 4: Reforged is entering initialization!
4364[05:17:39] [Server thread/INFO] [metallurgy]: Recipes loaded!
4365[05:17:40] [Server thread/INFO] [metallurgy]: Tinkers' Construct integration has been initialized
4366[05:17:40] [Server thread/INFO] [Mekanism]: Version 9.8.2 initializing...
4367[05:17:40] [Server thread/INFO] [Mekanism]: Loading complete.
4368[05:17:40] [Server thread/INFO] [Mekanism]: Mod loaded.
4369[05:17:40] [Server thread/INFO] [Mekanism]: Loaded MekanismGenerators module.
4370[05:17:40] [Server thread/INFO] [Mekanism]: Loaded 'Mekanism: Tools' module.
4371[05:17:40] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rail`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
4372[05:17:40] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `golden_rail`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
4373[05:17:40] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `detector_rail`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
4374[05:17:40] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `activator_rail`, expected `railcraft`. This could be a intended override, but in most cases indicates a broken mod.
4375[05:17:41] [Server thread/WARN] [railcraft]: Tried, but failed to register thaumcraft:alumentum as a Blast Furnace Fuel recipe. Reason: Input was null or empty.
4376[05:17:41] [Server thread/INFO] [railcraft]: Activating Halloween Seasonal Pack
4377[05:17:41] [Server thread/INFO] [railcraft]: Registered Mine Ore Generator at depth 40 called mine_iron
4378[05:17:41] [Server thread/INFO] [railcraft]: Registered Mine Ore Generator at depth 30 called mine_zinc
4379[05:17:41] [Server thread/INFO] [railcraft]: Registered Mine Ore Generator at depth 30 called mine_lead
4380[05:17:41] [Server thread/INFO] [railcraft]: Registered Mine Ore Generator at depth 20 called mine_silver
4381[05:17:41] [Server thread/INFO] [railcraft]: Registered Mine Ore Generator at depth 40 called mine_nickel
4382[05:17:41] [Server thread/INFO] [railcraft]: Registered Mine Ore Generator at depth 50 called mine_tin
4383[05:17:41] [Server thread/INFO] [railcraft]: Registered Mine Ore Generator at depth 15 called mine_gold
4384[05:17:41] [Server thread/INFO] [railcraft]: Registered Mine Ore Generator at depth 60 called mine_copper
4385[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyIntegerOrDefault:290]: Property config values missing:
4386[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyIntegerOrDefault:291]: property: aoePickUpgrade.aoeMiningDiameter.diameter.multiplier
4387[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyIntegerOrDefault:292]: getValue: 5
4388[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyIntegerOrDefault:290]: Property config values missing:
4389[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyIntegerOrDefault:291]: property: fortuneModule.fortuneLevel.enchLevel.multiplier
4390[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyIntegerOrDefault:292]: getValue: 3
4391[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:266]: Property config values missing:
4392[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:267]: property: chisel.slotPoints.base
4393[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:268]: getValue: 1.0
4394[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:266]: Property config values missing:
4395[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:267]: property: chisel.chiselEnergyCon.base
4396[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:268]: getValue: 500.0
4397[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:266]: Property config values missing:
4398[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:267]: property: chisel.chiselHarvSpd.base
4399[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:268]: getValue: 8.0
4400[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:266]: Property config values missing:
4401[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:267]: property: chisel.chiselEnergyCon.overclock.multiplier
4402[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:268]: getValue: 9500.0
4403[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:266]: Property config values missing:
4404[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:267]: property: chisel.chiselHarvSpd.overclock.multiplier
4405[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:268]: getValue: 22.0
4406[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:266]: Property config values missing:
4407[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:267]: property: omniProbe.slotPoints.base
4408[05:17:41] [Server thread/INFO] [STDOUT]: [net.machinemuse.powersuits.common.config.MPSConfig:getPropertyDoubleOrDefault:268]: getValue: 1.0
4409[05:17:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `secretroomsmodtileentityinfomationholder`, expected `secretroomsmod`. This could be a intended override, but in most cases indicates a broken mod.
4410[05:17:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `secretroomsmodtileentitysecretchest`, expected `secretroomsmod`. This could be a intended override, but in most cases indicates a broken mod.
4411[05:17:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `secretroomsmodtileentitysecretdispenser`, expected `secretroomsmod`. This could be a intended override, but in most cases indicates a broken mod.
4412[05:17:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `secretroomsmodtileentitysecretdaylightsensor`, expected `secretroomsmod`. This could be a intended override, but in most cases indicates a broken mod.
4413[05:17:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `secretroomsmodtileentitysecretpressureplate`, expected `secretroomsmod`. This could be a intended override, but in most cases indicates a broken mod.
4414[05:17:41] [Thread-10/INFO] [immersiveengineering]: Arc Recycling: Removed 0 old recipes
4415[05:17:42] [Thread-10/INFO] [immersiveengineering]: Finished recipe profiler for Arc Recycling, took 186 milliseconds
4416[05:17:42] [Server thread/INFO] [Chisel]: Received 5 IMC messages from mod projectred-compat.
4417[05:17:42] [Server thread/INFO] [Chisel]: Received 9 IMC messages from mod immersiveengineering.
4418[05:17:42] [Server thread/INFO] [Chisel]: Received 52 IMC messages from mod twilightforest.
4419[05:17:42] [Server thread/INFO] [Chisel]: Received 22 IMC messages from mod tconstruct.
4420[05:17:42] [Server thread/INFO] [thermalfoundation]: Thermal Foundation: Tinkers' Construct Plugin Enabled.
4421[05:17:42] [Server thread/WARN] [thermalexpansion]: Thermal Expansion received an invalid IMC from chisel! Key was addcompactorpressrecipe
4422[05:17:42] [Server thread/WARN] [thermalexpansion]: Thermal Expansion received an invalid IMC from chisel! Key was addcompactorpressrecipe
4423[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from endercore
4424[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from endercore
4425[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4426[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4427[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4428[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4429[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4430[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4431[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4432[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4433[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4434[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4435[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4436[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4437[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4438[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4439[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4440[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4441[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4442[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4443[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4444[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4445[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4446[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4447[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4448[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4449[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4450[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4451[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4452[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4453[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4454[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4455[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4456[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4457[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4458[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4459[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4460[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4461[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4462[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4463[05:17:42] [Server thread/INFO] [enderio]: Processing IMC message recipe:xml from jaopca
4464[05:17:43] [Server thread/INFO] [enderio]: Reading user recipe file user_recipes.xml
4465[05:17:43] [Server thread/INFO] [enderio]: Valid IMC recipes to be processed:
4466[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Alduorite Ore JAOPCA from IMC from mod 'jaopca'
4467[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Alduorite Dust JAOPCA from IMC from mod 'jaopca'
4468[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Alduorite Block Dust JAOPCA from IMC from mod 'jaopca'
4469[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: AstralSilver Ore JAOPCA from IMC from mod 'jaopca'
4470[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: AstralSilver Dust JAOPCA from IMC from mod 'jaopca'
4471[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: AstralSilver Block Dust JAOPCA from IMC from mod 'jaopca'
4472[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Eximite Ore JAOPCA from IMC from mod 'jaopca'
4473[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Eximite Dust JAOPCA from IMC from mod 'jaopca'
4474[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Eximite Block Dust JAOPCA from IMC from mod 'jaopca'
4475[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Infuscolium Ore JAOPCA from IMC from mod 'jaopca'
4476[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Infuscolium Dust JAOPCA from IMC from mod 'jaopca'
4477[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Infuscolium Block Dust JAOPCA from IMC from mod 'jaopca'
4478[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Iridium Dust JAOPCA from IMC from mod 'jaopca'
4479[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Iridium Block Dust JAOPCA from IMC from mod 'jaopca'
4480[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Lutetium Ore JAOPCA from IMC from mod 'jaopca'
4481[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Lutetium Dust JAOPCA from IMC from mod 'jaopca'
4482[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Lutetium Block Dust JAOPCA from IMC from mod 'jaopca'
4483[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Meutoite Ore JAOPCA from IMC from mod 'jaopca'
4484[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Meutoite Dust JAOPCA from IMC from mod 'jaopca'
4485[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Meutoite Block Dust JAOPCA from IMC from mod 'jaopca'
4486[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Amber Dust JAOPCA from IMC from mod 'jaopca'
4487[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Amber Block Dust JAOPCA from IMC from mod 'jaopca'
4488[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Amethyst Dust JAOPCA from IMC from mod 'jaopca'
4489[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Amethyst Block Dust JAOPCA from IMC from mod 'jaopca'
4490[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Malachite Dust JAOPCA from IMC from mod 'jaopca'
4491[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Malachite Block Dust JAOPCA from IMC from mod 'jaopca'
4492[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Peridot Dust JAOPCA from IMC from mod 'jaopca'
4493[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Peridot Block Dust JAOPCA from IMC from mod 'jaopca'
4494[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Ruby Dust JAOPCA from IMC from mod 'jaopca'
4495[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Ruby Block Dust JAOPCA from IMC from mod 'jaopca'
4496[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Sapphire Dust JAOPCA from IMC from mod 'jaopca'
4497[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Sapphire Block Dust JAOPCA from IMC from mod 'jaopca'
4498[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Tanzanite Dust JAOPCA from IMC from mod 'jaopca'
4499[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Tanzanite Block Dust JAOPCA from IMC from mod 'jaopca'
4500[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Topaz Dust JAOPCA from IMC from mod 'jaopca'
4501[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Topaz Block Dust JAOPCA from IMC from mod 'jaopca'
4502[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Electrotine Ore JAOPCA from IMC from mod 'jaopca'
4503[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Niter Ore JAOPCA from IMC from mod 'jaopca'
4504[05:17:43] [Server thread/INFO] [enderio]: * Sagmill: Potash Ore JAOPCA from IMC from mod 'jaopca'
4505[05:17:43] [Server thread/INFO] [enderio]: * Enchanter: endercore:xpboost from IMC from mod 'endercore'
4506[05:17:43] [Server thread/INFO] [enderio]: * Enchanter: endercore:autosmelt from IMC from mod 'endercore'
4507[05:17:43] [Server thread/INFO] [enderio]: Reading user recipe file user_recipes.xml
4508[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.railcraft.ore@1
4509[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Bronze Dust (1xic2.dust@0 => 1xitem.thermalfoundation.material@163) because another mod already has registered a recipe 1xic2.dust@0 => 1xic2.ingot@1.
4510[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Bronze Dust (1xitem.metallurgy.bronze_dust@0 => 1xitem.thermalfoundation.material@163) because another mod already has registered a recipe 1xitem.metallurgy.bronze_dust@0 => 1xitem.metallurgy.bronze_ingot@0.
4511[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Brass Dust (1xitem.metallurgy.brass_dust@0 => 1xitem.railcraft.ingot@9) because another mod already has registered a recipe 1xitem.metallurgy.brass_dust@0 => 1xitem.metallurgy.brass_ingot@0.
4512[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Electrum Dust (1xitem.metallurgy.electrum_dust@0 => 1xitem.thermalfoundation.material@161) because another mod already has registered a recipe 1xitem.metallurgy.electrum_dust@0 => 1xitem.metallurgy.electrum_ingot@0.
4513[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Electrum Dust (1xitem.immersiveengineering.metal@16 => 1xitem.thermalfoundation.material@161) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@16 => 1xitem.immersiveengineering.metal@7.
4514[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Copper Dust (1xic2.dust@4 => 1xitem.thermalfoundation.material@128) because another mod already has registered a recipe 1xic2.dust@4 => 1xic2.ingot@2.
4515[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Copper Dust (1xitem.metallurgy.copper_dust@0 => 1xitem.thermalfoundation.material@128) because another mod already has registered a recipe 1xitem.metallurgy.copper_dust@0 => 1xitem.metallurgy.copper_ingot@0.
4516[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Copper Dust (1xitem.Dust@3 => 1xitem.thermalfoundation.material@128) because another mod already has registered a recipe 1xitem.Dust@3 => 1xitem.Ingot@5.
4517[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Copper Dust (1xitem.immersiveengineering.metal@9 => 1xitem.thermalfoundation.material@128) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@9 => 1xitem.immersiveengineering.metal@0.
4518[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Tin Dust (1xic2.dust@17 => 1xitem.thermalfoundation.material@129) because another mod already has registered a recipe 1xic2.dust@17 => 1xic2.ingot@6.
4519[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Tin Dust (1xitem.metallurgy.tin_dust@0 => 1xitem.thermalfoundation.material@129) because another mod already has registered a recipe 1xitem.metallurgy.tin_dust@0 => 1xitem.metallurgy.tin_ingot@0.
4520[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Tin Dust (1xitem.Dust@4 => 1xitem.thermalfoundation.material@129) because another mod already has registered a recipe 1xitem.Dust@4 => 1xitem.Ingot@6.
4521[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Lead Dust (1xic2.dust@10 => 1xitem.thermalfoundation.material@131) because another mod already has registered a recipe 1xic2.dust@10 => 1xic2.ingot@3.
4522[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Lead Dust (1xitem.immersiveengineering.metal@11 => 1xitem.thermalfoundation.material@131) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@11 => 1xitem.immersiveengineering.metal@2.
4523[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Silver Dust (1xic2.dust@14 => 1xitem.thermalfoundation.material@130) because another mod already has registered a recipe 1xic2.dust@14 => 1xic2.ingot@4.
4524[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Silver Dust (1xitem.metallurgy.silver_dust@0 => 1xitem.thermalfoundation.material@130) because another mod already has registered a recipe 1xitem.metallurgy.silver_dust@0 => 1xitem.metallurgy.silver_ingot@0.
4525[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Silver Dust (1xitem.immersiveengineering.metal@12 => 1xitem.thermalfoundation.material@130) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@12 => 1xitem.immersiveengineering.metal@3.
4526[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Nickel Dust (1xitem.immersiveengineering.metal@13 => 1xitem.thermalfoundation.material@133) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@13 => 1xitem.immersiveengineering.metal@4.
4527[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Aluminium Dust (1xitem.immersiveengineering.metal@10 => 1xitem.thermalfoundation.material@132) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@10 => 1xitem.immersiveengineering.metal@1.
4528[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@4
4529[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.thermalfoundation.material@132
4530[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Aluminum Dust (1xitem.immersiveengineering.metal@10 => 1xitem.thermalfoundation.material@132) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@10 => 1xitem.immersiveengineering.metal@1.
4531[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.storage@4
4532[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.railcraft.ore@1
4533[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Zinc Dust (1xitem.metallurgy.zinc_dust@0 => 1xitem.railcraft.ingot@8) because another mod already has registered a recipe 1xitem.metallurgy.zinc_dust@0 => 1xitem.metallurgy.zinc_ingot@0.
4534[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Platinum Dust (1xitem.metallurgy.platinum_dust@0 => 1xitem.thermalfoundation.material@134) because another mod already has registered a recipe 1xitem.metallurgy.platinum_dust@0 => 1xitem.metallurgy.platinum_ingot@0.
4535[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.metallurgy.infuscolium_ore@0
4536[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.metallurgy.infuscolium_ingot@0
4537[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.metallurgy.infuscolium_block@0
4538[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.metallurgy.astral_silver_ore@0
4539[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.metallurgy.astral_silver_ingot@0
4540[05:17:44] [Server thread/WARN] [enderio]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.metallurgy.astral_silver_block@0
4541[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Mithril Dust (1xitem.metallurgy.mithril_dust@0 => 1xitem.thermalfoundation.material@136) because another mod already has registered a recipe 1xitem.metallurgy.mithril_dust@0 => 1xitem.metallurgy.mithril_ingot@0.
4542[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Osmium Dust (1xitem.Dust@2 => 1xitem.metallurgy.osmium_ingot@0) because another mod already has registered a recipe 1xitem.Dust@2 => 1xitem.Ingot@1.
4543[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Cobalt Dust (1xitem.jaopca.dust@0 => 1xitem.tconstruct.ingots@0) because another mod already has registered a recipe 1xitem.jaopca.dust@0 => 1xitem.alchemistry:ingot@27.
4544[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Uranium Dust (1xitem.bigreactors:dustyellorium@0 => 1xic2.ingot@8) because another mod already has registered a recipe 1xitem.bigreactors:dustyellorium@0 => 1xitem.bigreactors:ingotyellorium@0.
4545[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Uranium Dust (1xitem.immersiveengineering.metal@14 => 1xic2.ingot@8) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@14 => 1xitem.immersiveengineering.metal@5.
4546[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Steel Dust (1xitem.bigreactors:duststeel@0 => 1xitem.thermalfoundation.material@160) because another mod already has registered a recipe 1xitem.bigreactors:duststeel@0 => 1xitem.bigreactors:ingotsteel@0.
4547[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Steel Dust (1xitem.metallurgy.steel_dust@0 => 1xitem.thermalfoundation.material@160) because another mod already has registered a recipe 1xitem.metallurgy.steel_dust@0 => 1xitem.metallurgy.steel_ingot@0.
4548[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Steel Dust (1xitem.OtherDust@1 => 1xitem.thermalfoundation.material@160) because another mod already has registered a recipe 1xitem.OtherDust@1 => 1xitem.Ingot@4.
4549[05:17:44] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Smelting: Steel Dust (1xitem.immersiveengineering.metal@17 => 1xitem.thermalfoundation.material@160) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@17 => 1xitem.immersiveengineering.metal@8.
4550[05:17:45] [Server thread/INFO] [enderio]: Created 6 synthetic recipes for 3xitem.item_material@38 => 1xitem.item_material@3
4551[05:17:45] [Server thread/INFO] [enderio]: Created 6 synthetic recipes for 4xitem.netherquartz@0 => 1xtile.block_fused_quartz@0
4552[05:17:45] [Server thread/INFO] [enderio]: Created 6 synthetic recipes for 1xtile.quartzBlock@0 => 1xtile.block_fused_quartz@0
4553[05:17:45] [Server thread/INFO] [enderio]: Created 6 synthetic recipes for 1xtile.glass@0 => 1xtile.block_fused_glass@0
4554[05:17:45] [Server thread/INFO] [enderio]: Created 6 synthetic recipes for 1xtile.sapling@0 => 1xtile.deadbush@0
4555[05:17:45] [Server thread/INFO] [enderio]: Created 6 synthetic recipes for 9xitem.item_material@28 => 1xitem.enderPearl@0
4556[05:17:45] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Copper (1xic2.dust@4 => 1xitem.thermalfoundation.material@128) because another mod already has registered a recipe 1xic2.dust@4 => 1xic2.ingot@2.
4557[05:17:45] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Copper (1xitem.metallurgy.copper_dust@0 => 1xitem.thermalfoundation.material@128) because another mod already has registered a recipe 1xitem.metallurgy.copper_dust@0 => 1xitem.metallurgy.copper_ingot@0.
4558[05:17:45] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Copper (1xitem.Dust@3 => 1xitem.thermalfoundation.material@128) because another mod already has registered a recipe 1xitem.Dust@3 => 1xitem.Ingot@5.
4559[05:17:45] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Copper (1xitem.immersiveengineering.metal@9 => 1xitem.thermalfoundation.material@128) because another mod already has registered a recipe 1xitem.immersiveengineering.metal@9 => 1xitem.immersiveengineering.metal@0.
4560[05:17:45] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Tin (1xic2.dust@17 => 1xitem.thermalfoundation.material@129) because another mod already has registered a recipe 1xic2.dust@17 => 1xic2.ingot@6.
4561[05:17:45] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Tin (1xitem.metallurgy.tin_dust@0 => 1xitem.thermalfoundation.material@129) because another mod already has registered a recipe 1xitem.metallurgy.tin_dust@0 => 1xitem.metallurgy.tin_ingot@0.
4562[05:17:45] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Tin (1xitem.Dust@4 => 1xitem.thermalfoundation.material@129) because another mod already has registered a recipe 1xitem.Dust@4 => 1xitem.Ingot@6.
4563[05:17:45] [Server thread/ERROR] [enderio]: Cannot add smelting recipe Cobalt (1xitem.jaopca.dust@0 => 1xitem.tconstruct.ingots@0) because another mod already has registered a recipe 1xitem.jaopca.dust@0 => 1xitem.alchemistry:ingot@27.
4564[05:17:45] [Server thread/INFO] [Mekanism]: bigreactors added recipe of type EnrichmentChamber to the recipe list.
4565[05:17:45] [Server thread/INFO] [Mekanism]: bigreactors added recipe of type Crusher to the recipe list.
4566[05:17:45] [Server thread/INFO] [Mekanism]: bigreactors added recipe of type Crusher to the recipe list.
4567[05:17:45] [Server thread/INFO] [Mekanism]: bigreactors added recipe of type Crusher to the recipe list.
4568[05:17:45] [Server thread/INFO] [Mekanism]: bigreactors added recipe of type Crusher to the recipe list.
4569[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4570[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4571[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4572[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4573[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4574[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4575[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4576[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4577[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4578[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4579[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4580[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4581[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4582[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4583[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4584[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4585[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4586[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4587[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4588[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4589[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4590[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4591[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4592[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4593[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4594[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4595[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4596[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4597[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4598[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4599[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4600[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4601[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4602[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4603[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4604[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4605[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4606[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4607[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4608[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4609[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4610[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4611[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4612[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4613[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4614[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4615[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4616[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4617[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4618[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4619[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4620[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4621[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4622[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4623[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4624[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4625[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4626[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4627[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4628[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4629[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4630[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4631[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4632[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4633[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4634[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4635[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4636[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4637[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4638[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4639[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4640[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4641[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4642[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4643[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4644[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4645[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4646[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4647[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4648[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4649[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4650[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4651[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4652[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4653[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4654[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4655[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4656[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4657[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4658[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4659[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4660[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4661[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4662[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4663[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4664[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4665[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4666[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4667[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4668[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4669[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4670[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4671[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4672[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4673[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4674[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4675[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4676[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4677[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4678[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4679[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4680[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4681[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4682[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4683[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4684[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4685[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4686[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4687[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4688[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4689[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4690[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4691[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4692[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4693[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4694[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4695[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4696[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4697[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4698[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4699[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4700[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4701[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4702[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4703[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4704[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4705[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4706[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4707[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4708[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4709[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4710[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Combiner to the recipe list.
4711[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4712[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4713[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4714[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4715[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4716[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4717[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4718[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4719[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4720[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4721[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4722[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4723[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4724[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4725[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4726[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4727[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4728[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4729[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4730[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4731[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4732[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4733[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4734[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4735[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4736[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4737[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4738[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4739[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4740[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4741[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4742[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4743[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4744[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4745[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4746[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4747[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4748[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4749[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4750[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4751[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4752[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4753[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4754[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4755[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4756[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type EnrichmentChamber to the recipe list.
4757[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4758[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4759[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4760[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4761[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4762[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4763[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4764[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4765[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4766[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4767[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4768[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4769[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4770[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4771[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4772[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4773[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4774[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4775[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4776[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4777[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4778[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4779[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4780[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4781[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4782[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4783[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4784[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4785[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4786[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4787[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4788[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4789[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4790[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4791[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type Crusher to the recipe list.
4792[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4793[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4794[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4795[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4796[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4797[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4798[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4799[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4800[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4801[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4802[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4803[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4804[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4805[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4806[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4807[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4808[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4809[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4810[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4811[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4812[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4813[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4814[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4815[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4816[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4817[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4818[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4819[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4820[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4821[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4822[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4823[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4824[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4825[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4826[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4827[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4828[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4829[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4830[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4831[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4832[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4833[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4834[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4835[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4836[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4837[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4838[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4839[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4840[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4841[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4842[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4843[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4844[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4845[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4846[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4847[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4848[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4849[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4850[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4851[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4852[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4853[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4854[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4855[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4856[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4857[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4858[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4859[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4860[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4861[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4862[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4863[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4864[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4865[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4866[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type PurificationChamber to the recipe list.
4867[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4868[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4869[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4870[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4871[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4872[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4873[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4874[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4875[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4876[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4877[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4878[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4879[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4880[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4881[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4882[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4883[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4884[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4885[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4886[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4887[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4888[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4889[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4890[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4891[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4892[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4893[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4894[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4895[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4896[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4897[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4898[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4899[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4900[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4901[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4902[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4903[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4904[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4905[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4906[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4907[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4908[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4909[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4910[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4911[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4912[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4913[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4914[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4915[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4916[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4917[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4918[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4919[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4920[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4921[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4922[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4923[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4924[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4925[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4926[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4927[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4928[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4929[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4930[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4931[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4932[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4933[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4934[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4935[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4936[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4937[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4938[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4939[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4940[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4941[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalInjectionChamber to the recipe list.
4942[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4943[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4944[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4945[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4946[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4947[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4948[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4949[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4950[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4951[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4952[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4953[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4954[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4955[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4956[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4957[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4958[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4959[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4960[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4961[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4962[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4963[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4964[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4965[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4966[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4967[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4968[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4969[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4970[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4971[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4972[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4973[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4974[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4975[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalCrystallizer to the recipe list.
4976[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4977[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4978[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4979[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4980[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4981[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4982[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4983[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4984[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4985[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4986[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4987[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4988[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4989[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4990[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4991[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4992[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4993[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4994[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4995[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4996[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4997[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4998[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
4999[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5000[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5001[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5002[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5003[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5004[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5005[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5006[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5007[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5008[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5009[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalWasher to the recipe list.
5010[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5011[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5012[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5013[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5014[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5015[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5016[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5017[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5018[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5019[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5020[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5021[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5022[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5023[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5024[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5025[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5026[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5027[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5028[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5029[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5030[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5031[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5032[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5033[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5034[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5035[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5036[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5037[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5038[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5039[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5040[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5041[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5042[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5043[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5044[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5045[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5046[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5047[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5048[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5049[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5050[05:17:45] [Server thread/INFO] [Mekanism]: jaopca added recipe of type ChemicalDissolutionChamber to the recipe list.
5051[05:17:45] [Server thread/INFO] [FML]: Injecting itemstacks
5052[05:17:45] [Server thread/INFO] [FML]: Itemstack injection complete
5053[05:17:45] [Server thread/INFO] [worldedit]: WorldEdit for Sponge (version 6.1.10-SNAPSHOT) is loaded
5054[05:17:45] [Server thread/INFO] [DupeFixer]: Config saved
5055[05:17:46] [Server thread/INFO] [AE2:S]: Post Initialization ( started )
5056[05:17:46] [Server thread/INFO] [AE2:S]: Industrial Craft 2 - Integration Enable
5057[05:17:46] [Server thread/INFO] [AE2:S]: Railcraft - Integration Enable
5058[05:17:46] [Server thread/INFO] [AE2:S]: Mine Factory Reloaded - Integration Disabled
5059[05:17:46] [Server thread/INFO] [AE2:S]: Waila - Integration Enable
5060[05:17:46] [Server thread/INFO] [AE2:S]: Mekanism - Integration Enable
5061[05:17:46] [Server thread/INFO] [AE2:S]: OpenComputers - Integration Disabled
5062[05:17:46] [Server thread/INFO] [AE2:S]: TheOneProbe - Integration Disabled
5063[05:17:46] [Server thread/INFO] [AE2:S]: Tesla - Integration Disabled
5064[05:17:46] [Server thread/INFO] [AE2:S]: CraftTweaker - Integration Enable
5065[05:17:46] [Server thread/INFO] [AE2:S]: Post Initialization ( ended after 321ms )
5066[05:17:47] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: Applied Energistics 2 Plugin Enabled.
5067[05:17:47] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: Biomes O' Plenty Plugin Enabled.
5068[05:17:47] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: Chisel Plugin Enabled.
5069[05:17:47] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: Ender IO Plugin Enabled.
5070[05:17:47] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: IndustrialCraft 2 Plugin Enabled.
5071[05:17:47] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: Immersive Engineering Plugin Enabled.
5072[05:17:47] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: Tinkers' Construct Plugin Enabled.
5073[05:17:47] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: Twilight Forest Plugin Enabled.
5074[05:17:47] [Server thread/WARN] [enderio]: Could not find Build Craft Wrench definition. Wrench integration with other mods may fail
5075[05:17:47] [Server thread/INFO] [tconstruct-TinkerSmeltery]: Started adding oredict melting recipes
5076[05:17:57] [Server thread/INFO] [tconstruct-TinkerSmeltery]: Oredict melting recipes finished in 9730.661698 ms
5077[05:17:58] [Server thread/INFO] [ic2.Uu]: Loading predefined UU world scan values, run /ic2 uu-world-scan <small|medium|large> to calibrate them for your world.
5078[05:17:58] [Server thread/INFO] [ic2.General]: ic2 version 2.8.170-ex112 loaded.
5079[05:17:58] [Server thread/INFO] [metallurgy]: Metallurgy 4: Reforged is entering post-initialization!
5080[05:17:58] [Server thread/INFO] [metallurgy]: Metallurgy 4: Reforged's Network System Loaded
5081[05:17:58] [Server thread/INFO] [metallurgy]: Tinker Smeltery Recipes for Metallurgy Loaded
5082[05:17:58] [Server thread/INFO] [metallurgy]: Tinker's alloy recipes loaded
5083[05:17:58] [Server thread/INFO] [metallurgy]: Metallurgy 4: Reforged has been completely loaded
5084[05:17:58] [Server thread/INFO] [Mekanism]: Fake player readout: UUID = 46e82cd0-d480-3d48-800a-77431ede078e, name = [Mekanism]
5085[05:17:58] [Server thread/INFO] [Mekanism]: Hooked into IC2 successfully.
5086[05:17:58] [Server thread/INFO] [Mekanism]: Hooked into AE2 successfully.
5087[05:17:58] [Server thread/INFO] [Mekanism]: Hooked into Metallurgy successfully.
5088[05:17:58] [Server thread/INFO] [Mekanism]: Finished loading Cardboard Box blacklist (loaded 0 entries)
5089[05:17:58] [Server thread/INFO] [Mekanism]: Hooking complete.
5090[05:17:58] [Server thread/INFO] [railcraft]: Adding Standard Worldspike Fuel: [railcraft:dust#0]=2.0
5091[05:17:58] [Server thread/INFO] [railcraft]: Adding Standard Worldspike Fuel: [minecraft:ender_pearl]=4.0
5092[05:17:58] [Server thread/INFO] [railcraft]: Adding Standard Worldspike Fuel: [railcraft:dust#6]=8.0
5093[05:17:58] [Server thread/INFO] [railcraft]: Adding Standard Worldspike Fuel: [railcraft:dust#7]=12.0
5094[05:17:58] [Server thread/INFO] [railcraft]: Adding Personal Worldspike Fuel: [railcraft:dust#0]=2.0
5095[05:17:58] [Server thread/INFO] [railcraft]: Adding Personal Worldspike Fuel: [minecraft:ender_pearl]=4.0
5096[05:17:58] [Server thread/INFO] [railcraft]: Adding Personal Worldspike Fuel: [railcraft:dust#6]=8.0
5097[05:17:58] [Server thread/INFO] [railcraft]: Adding Personal Worldspike Fuel: [railcraft:dust#7]=12.0
5098[05:17:58] [Server thread/INFO] [railcraft]: Adding Passive Worldspike Fuel: [railcraft:dust#0]=2.0
5099[05:17:58] [Server thread/INFO] [railcraft]: Adding Passive Worldspike Fuel: [minecraft:ender_pearl]=4.0
5100[05:17:58] [Server thread/INFO] [railcraft]: Adding Passive Worldspike Fuel: [railcraft:dust#6]=8.0
5101[05:17:58] [Server thread/INFO] [railcraft]: Adding Passive Worldspike Fuel: [railcraft:dust#7]=12.0
5102[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: [minecraft:red_shulker_box, minecraft:light_blue_shulker_box, minecraft:white_shulker_box, minecraft:silver_shulker_box, minecraft:yellow_shulker_box, minecraft:magenta_shulker_box, minecraft:brown_shulker_box, minecraft:cyan_shulker_box, minecraft:black_shulker_box, minecraft:pink_shulker_box, minecraft:blue_shulker_box, minecraft:lime_shulker_box, minecraft:purple_shulker_box, minecraft:green_shulker_box, minecraft:gray_shulker_box, minecraft:orange_shulker_box]
5103[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: [minecraft:milk_bucket, minecraft:lava_bucket, minecraft:water_bucket]
5104[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: [forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled, forge:bucketfilled]
5105[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: [ic2:batpack, ic2:batpack, ic2:re_battery, ic2:re_battery, ic2:charging_re_battery, ic2:charging_re_battery, ic2:advanced_charging_re_battery, ic2:advanced_charging_re_battery, ic2:advanced_batpack, ic2:advanced_batpack, ic2:advanced_re_battery, ic2:advanced_re_battery, ic2:single_use_battery]
5106[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: [ic2:energy_crystal, ic2:energy_crystal, ic2:charging_energy_crystal, ic2:charging_energy_crystal, ic2:lapotron_crystal, ic2:lapotron_crystal, ic2:charging_lapotron_crystal, ic2:charging_lapotron_crystal]
5107[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: [ic2:jetpack_electric, ic2:jetpack_electric]
5108[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: [ic2:energy_pack, ic2:energy_pack]
5109[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: []
5110[05:17:58] [Server thread/INFO] [railcraft]: Blacklisting Cargo: [ic2:te#68, ic2:te#69, ic2:te#70, ic2:te#71, ic2:te#72, ic2:te#73, ic2:te#74, ic2:te#75]
5111[05:17:59] [Server thread/WARN] [openmodularturrets]: Tried to add duplicate mob to mob list: ArmorStand
5112[05:17:59] [Server thread/INFO] [immersiveengineering]: Couldn't fully analyze 1xitem.openblocks.sonic_glasses@32767, missing knowledge for {1xitem.helmetIron@0=1.0}
5113[05:17:59] [Server thread/INFO] [immersiveengineering]: Couldn't fully analyze 1xic2.alloy_chestplate@32767, missing knowledge for {1xitem.chestplateCloth@32767=1.0}
5114[05:17:59] [Server thread/INFO] [immersiveengineering]: Couldn't fully analyze 1xtile.immersiveengineering.metal_device1@10, missing knowledge for {1xtile.immersiveengineering.metal_device0@4=1.0}
5115[05:17:59] [Server thread/INFO] [immersiveengineering]: Couldn't fully analyze 1xitem.SteelPaxel@32767, missing knowledge for {1xitem.SteelShovel@0=1.0, 1xitem.SteelAxe@0=1.0, 1xitem.SteelPickaxe@0=1.0}
5116[05:17:59] [Server thread/INFO] [cofhcore]: CoFH Core: Load Complete.
5117[05:17:59] [Server thread/INFO] [CoFH World]: Accumulating world generation files from: "/home/minecraft/multicraft/servers/server91171/config/cofh/world"
5118[05:17:59] [Server thread/INFO] [CoFH World]: Found a total of 3 world generation files.
5119[05:17:59] [Server thread/INFO] [CoFH World]: Reading world generation info from: "cofh/world/03_thermalfoundation_clathrates.json":
5120[05:17:59] [Server thread/INFO] [CoFH World]: Reading world generation info from: "cofh/world/02_thermalfoundation_oil.json":
5121[05:17:59] [Server thread/INFO] [CoFH World]: Reading world generation info from: "cofh/world/01_thermalfoundation_ores.json":
5122[05:17:59] [Server thread/INFO] [CoFH World]: CoFH World: Load Complete.
5123[05:17:59] [Server thread/INFO] [thermalfoundation]: [Whitelist] Reading established Whitelist from file.
5124[05:17:59] [Server thread/INFO] [thermalfoundation]: Thermal Foundation: Load Complete.
5125[05:17:59] [Server thread/INFO] [thermalexpansion]: Thermal Expansion: Load Complete.
5126[05:17:59] [Server thread/INFO] [Waila]: Starting Waila...
5127[05:17:59] [Server thread/INFO] [Waila]: Gathering annotated plugins...
5128[05:17:59] [Server thread/INFO] [Waila]: Gathering wrapped IMC plugins...
5129[05:17:59] [Server thread/INFO] [Waila]: Registering plugins...
5130[05:17:59] [Server thread/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.core.PluginCore
5131[05:17:59] [Server thread/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.capability.PluginCapability
5132[05:17:59] [Server thread/INFO] [Waila]: Registering plugin at appeng.integration.modules.waila.WailaModule
5133[05:18:00] [Server thread/ERROR] [Waila]: Error registering wrapped plugin from appliedenergistics2 at appeng.integration.modules.waila.WailaModule.register
5134[05:18:00] [Server thread/INFO] [Waila]: Registering plugin at blusunrize.immersiveengineering.common.util.compat.waila.IEWailaDataProvider
5135[05:18:00] [Server thread/INFO] [Waila]: Registering plugin at com.wynprice.secretroomsmod.integration.walia.SecretWalia
5136[05:18:00] [Server thread/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.minecraft.PluginMinecraft
5137[05:18:00] [Server thread/INFO] [Waila]: Registering plugin at net.darkhax.wawla.engine.waila.EntityProvider
5138[05:18:00] [Server thread/INFO] [Waila]: Registering plugin at net.darkhax.wawla.engine.waila.TileProvider
5139[05:18:00] [Server thread/INFO] [Waila]: Registering plugin at omtteam.omlib.compatibility.hwyla.OMLibWailaPlugin
5140[05:18:00] [Server thread/INFO] [Waila]: Registering plugin at slimeknights.tconstruct.plugin.waila.WailaRegistrar
5141[05:18:00] [Server thread/INFO] [Waila]: Registering plugin at team.chisel.common.integration.waila.ChiselDataHandler
5142[05:18:00] [Server thread/INFO] [Waila]: Starting Waila took 162.1 ms
5143[05:18:00] [Server thread/INFO] [redstonearsenal]: Redstone Arsenal: Load Complete.
5144[05:18:00] [Server thread/INFO] [thermalcultivation]: Thermal Cultivation: Load Complete.
5145[05:18:00] [Server thread/INFO] [thermaldynamics]: Thermal Dynamics: Load Complete.
5146[05:18:00] [Server thread/INFO] [thermalinnovation]: Thermal Innovation: Load Complete.
5147[05:18:01] [Server thread/INFO] [FML]: Forge Mod Loader has successfully loaded 119 mods
5148[05:18:02] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Preparing level "world"
5149[05:18:02] [Server thread/INFO] [Sponge]: Checking for worlds that need to be migrated...
5150[05:18:02] [Server thread/INFO] [Sponge]: No worlds were found in need of migration.
5151[05:18:02] [Server thread/WARN] [Sponge]: World [DIM7] (7) is attempting to be registered as an existing dimension but it's dimension id has already been registered for folder [null]. This means the world has been copied outside of Sponge. This is not a supported configuration.
5152[05:18:02] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
5153[05:18:04] [Server thread/INFO] [FML]: Applying holder lookups
5154[05:18:04] [Server thread/INFO] [FML]: Holder lookups applied
5155[05:18:04] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.BiomeProviderBOP:<init>:61]: settings for world:
5156[05:18:04] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.BiomeProviderBOP:initialLandAndSeaLayer:93]: Setting up landmass VANILLA
5157[05:18:04] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.ChunkGeneratorOverworldBOP:<init>:89]: ChunkGeneratorOverworldBOP json:
5158[05:18:04] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.ChunkGeneratorOverworldBOP:<init>:96]: ChunkGeneratorOverworldBOP settings: {"landScheme":"vanilla","tempScheme":"medium_zones","rainScheme":"medium_zones","biomeSize":"medium","amplitude":1.0,"generateBopOre":true,"generatePoisonIvy":false,"generateBerryBushes":true,"generateThorns":true,"generateQuicksand":true,"generateLiquidPoison":true,"generateHotSprings":true,"generateNetherHives":true,"generateEndFeatures":true,"mainNoiseScaleX":80.0,"mainNoiseScaleY":160.0,"mainNoiseScaleZ":80.0,"coordinateScale":684.412,"heightScale":684.412,"upperLimitScale":512.0,"lowerLimitScale":512.0}
5159[05:18:04] [Server thread/INFO] [EnderCore ASM]: Transforming Class [net.minecraft.world.chunk.storage.ExtendedBlockStorage], Method [func_76663_a]
5160[05:18:04] [Server thread/INFO] [EnderCore ASM]: Transforming net.minecraft.world.chunk.storage.ExtendedBlockStorage Finished.
5161[05:18:04] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/simple_dungeon
5162[05:18:04] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/abandoned_mineshaft
5163[05:18:04] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/stronghold_corridor
5164[05:18:04] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/stronghold_crossing
5165[05:18:04] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/village_blacksmith
5166[05:18:05] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 1019 advancements
5167[05:18:05] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 220 advancement trees
5168[05:18:05] [Server thread/WARN] [Sponge]: No entity type is registered for class net.minecraftforge.common.util.FakePlayer
5169[05:18:05] [Server thread/WARN] [mixin]: @Redirect conflict. Skipping mixins.vanillafix.bugs.json:MixinBlockStateContainer->@Redirect::redirect$onGetStorageSize$FixVanillaBug$bbl001(Lnet/minecraft/util/BitArray;)I with priority 1000, already redirected by mixins.common.core.json:world.chunk.BlockStateContainerMixin->@Redirect::redirect$onGetStorageSize$FixVanillaBug$zln000(Lnet/minecraft/util/BitArray;)I with priority 1000
5170[05:18:09] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing start region for world world (minecraft:overworld/0)
5171[05:18:10] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 30%
5172[05:18:11] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 95%
5173[05:18:11] [Server thread/INFO] [Sponge]: Loading world [world] (minecraft:overworld/0)
5174[05:18:11] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.BiomeProviderBOPHell:<init>:32]: settings for hell world:
5175[05:18:11] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/simple_dungeon
5176[05:18:11] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/abandoned_mineshaft
5177[05:18:11] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/stronghold_corridor
5178[05:18:11] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/stronghold_crossing
5179[05:18:11] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/village_blacksmith
5180[05:18:11] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 1019 advancements
5181[05:18:11] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 220 advancement trees
5182[05:18:13] [Server thread/INFO] [Sponge]: Loading world [DIM-1] (biomesoplenty:nether/-1)
5183[05:18:13] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/simple_dungeon
5184[05:18:13] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/abandoned_mineshaft
5185[05:18:13] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/stronghold_corridor
5186[05:18:13] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/stronghold_crossing
5187[05:18:13] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/village_blacksmith
5188[05:18:14] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 1019 advancements
5189[05:18:14] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 220 advancement trees
5190[05:18:16] [Server thread/INFO] [Sponge]: Loading world [DIM1] (minecraft:the_end/1)
5191[05:18:16] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/simple_dungeon
5192[05:18:16] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/abandoned_mineshaft
5193[05:18:16] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/stronghold_corridor
5194[05:18:16] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/stronghold_crossing
5195[05:18:16] [Server thread/INFO] [railcraft]: Appending Loot Pools to minecraft:chests/village_blacksmith
5196[05:18:16] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 1019 advancements
5197[05:18:16] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 220 advancement trees
5198[05:18:18] [Server thread/INFO] [Sponge]: Loading world [DIM7] (twilightforest:twilight_forest/7)
5199[05:18:18] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Done (17.907s)! For help, type "help" or "?"
5200[05:18:19] [Server thread/INFO] [nucleus]: Nucleus is performing final tasks before server startup completes.
5201[05:18:19] [Server thread/INFO] [nucleus]: Nucleus has started.
5202[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: [EF] No PlaceholderAPI found. Skipping adding placeholders.
5203[05:18:19] [Server thread/INFO] [icbmclassic]: Starting threads
5204[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: /\
5205[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: / \
5206[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: / || \
5207[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: / || \
5208[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: / || \
5209[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: / || \
5210[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: / \
5211[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: / ** \
5212[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: ------------------
5213[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: ===================================================================
5214[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: WARNING: Nucleus could not detect a permissions plugin.
5215[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: While one is not required to use Nucleus, it is HIGHLY recommended.
5216[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: ===================================================================
5217[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: See https://nucleuspowered.org/docs/permsecon.html for more on what Nucleus is not, and suggested plugins that work with Nucleus.
5218[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: ===================================================================
5219[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: The command "/back" could not be registered as it has already been claimed by ProjectPortals - the fallback "/nucleus:back" is available.
5220[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: The command "/return" could not be registered as it has already been claimed by ProjectPortals - the fallback "/nucleus:back" is available.
5221[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: ===================================================================
5222[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Universe Guard 2[init]: Updating regions...
5223[05:18:19] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Universe Guard 2[init]: Regions updated!
5224[05:18:19] [BetterFps Update Checker/WARN] [BetterFps]: Could not check for updates: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 2 column 2 path $
5225[05:18:19] [Server thread/INFO] [battlelog]: === BattleLog Starting ===
5226[05:18:19] [Server thread/INFO] [battlelog]: Created by MrOnlineCoder
5227[05:18:19] [Server thread/INFO] [battlelog]: Loading configuration...
5228[05:18:19] [Server thread/INFO] [battlelog]: Loading locale EN
5229[05:18:19] [Server thread/INFO] [battlelog]: Creating commands...
5230[05:18:19] [Server thread/INFO] [battlelog]: Created /bl command
5231[05:18:19] [Server thread/INFO] [battlelog]: Setting listeners...
5232[05:18:19] [Server thread/INFO] [battlelog]: Adding Scheduler task
5233[05:18:19] [Server thread/INFO] [battlelog]: ! BattleLog loaded and started !
5234[05:18:19] [Server thread/INFO] [referrals]: Referrals is booting up!
5235[05:18:19] [Server thread/INFO] [com.zaxxer.hikari.HikariDataSource]: HikariPool-3 - Starting...
5236[05:18:19] [Server thread/INFO] [com.zaxxer.hikari.HikariDataSource]: HikariPool-3 - Start completed.
5237[05:18:19] [Server thread/INFO] [referrals]: Database Connection Established!
5238[05:18:19] [Server thread/INFO] [referrals]: Referrals is loading its data from the database!
5239[05:18:19] [Server thread/INFO] [worldedit]: Using com.sk89q.worldedit.sponge.adapter.impl.Sponge_1_12_Impl as the Sponge adapter
5240[05:18:19] [Server thread/INFO] [brotkasten]: Searching for updates...
5241[05:18:19] [Server thread/WARN] [brotkasten]: The automatic Version Checker for Brotkasten(brotkasten) is disabled!
5242[05:18:19] [Server thread/WARN] [brotkasten]: It is strongly recommended to activate the Version Checker to keep your server secure and up to date!
5243[05:18:19] [Server thread/INFO] [immersiveengineering]: WorldData loading
5244[05:18:19] [Server thread/INFO] [immersiveengineering]: WorldData retrieved