· 5 years ago · Sep 07, 2020, 03:56 PM
1
2Save New Duplicate & Edit Just Text1
32
43
54
65
76
87
98
109
1110
1211
1312
1413
1514
1615
1716
1817
1918
2019
2120
2221
2322
2423
2524
2625
2726
2827
2928
3029
3130
3231
3332
3433
3534
3635
3736
3837
3938
4039
4140
4241
4342
4443
4544
4645
4746
4847
4948
5049
5150
5251
5352
5453
5554
5655
5756
5857
5958
6059
6160
6261
6362
6463
6564
6665
6766
6867
6968
7069
7170
7271
7372
7473
7574
7675
7776
7877
7978
8079
8180
8281
8382
8483
8584
8685
8786
8887
8988
9089
9190
9291
9392
9493
9594
9695
9796
9897
9998
10099
101100
102101
103102
104103
105104
106105
107106
108107
109108
110109
111110
112111
113112
114113
115114
116115
117116
118117
119118
120119
121120
122121
123122
124123
125124
126125
127126
128127
129128
130129
131130
132131
133132
134133
135134
136135
137136
138137
139138
140139
141140
142141
143142
144143
145144
146145
147146
148147
149148
150149
151150
152151
153152
154153
155154
156155
157156
158157
159158
160159
161160
162161
163162
164163
165164
166165
167166
168167
169168
170169
171170
172171
173172
174173
175174
176175
177176
178177
179178
180179
181180
182181
183182
184183
185184
186185
187186
188187
189188
190189
191190
192191
193192
194193
195194
196195
197196
198197
199198
200199
201200
202201
203202
204203
205204
206205
207206
208207
209208
210209
211210
212211
213212
214213
215214
216215
217216
218217
219218
220219
221220
222221
223222
224223
225224
226225
227226
228227
229228
230229
231230
232231
233232
234233
235234
236235
237236
238237
239238
240239
241240
242241
243242
244243
245244
246245
247246
248247
249248
250249
251250
252251
253252
254253
255254
256255
257256
258257
259258
260259
261260
262261
263262
264263
265264
266265
267266
268267
269268
270269
271270
272271
273272
274273
275274
276275
277276
278277
279278
280279
281280
282281
283282
284283
285284
286285
287286
288287
289288
290289
291290
292291
293292
294293
295294
296295
297296
298297
299298
300299
301300
302301
303302
304303
305304
306305
307306
308307
309308
310309
311310
312311
313312
314313
315314
316315
317316
318317
319318
320319
321320
322321
323322
324323
325324
326325
327326
328327
329328
330329
331330
332331
333332
334333
335334
336335
337336
338337
339338
340339
341340
342341
343342
344343
345344
346345
347346
348347
349348
350349
351350
352351
353352
354353
355354
356355
357356
358357
359358
360359
361360
362361
363362
364363
365364
366365
367366
368367
369368
370369
371370
372371
373372
374373
375374
376375
377376
378377
379378
380379
381380
382381
383382
384383
385384
386385
387386
388387
389388
390389
391390
392391
393392
394393
395394
396395
397396
398397
399398
400399
401400
402401
403402
404403
405404
406405
407406
408407
409408
410409
411410
412411
413412
414413
415414
416415
417416
418417
419418
420419
421420
422421
423422
424423
425424
426425
427426
428427
429428
430429
431430
432431
433432
434433
435434
436435
437436
438437
439438
440439
441440
442441
443442
444443
445444
446445
447446
448447
449448
450449
451450
452451
453452
454453
455454
456455
457456
458457
459458
460459
461460
462461
463462
464463
465464
466465
467466
468467
469468
470469
471470
472471
473472
474473
475474
476475
477476
478477
479478
480479
481480
482481
483482
484483
485484
486485
487486
488487
489488
490489
491490
492491
493492
494493
495494
496495
497496
498497
499498
500499
501500
502501
503502
504503
505504
506505
507506
508507
509508
510509
511510
512511
513512
514513
515514
516515
517516
518517
519518
520519
521520
522521
523522
524523
525524
526525
527526
528527
529528
530529
531530
532531
533532
534533
535534
536535
537536
538537
539538
540539
541540
542541
543542
544543
545544
546545
547546
548547
549548
550549
551550
552551
553552
554553
555554
556555
557556
558557
559558
560559
561560
562561
563562
564563
565564
566565
567566
568567
569568
570569
571570
572571
573572
574573
575574
576575
577576
578577
579578
580579
581580
582581
583582
584583
585584
586585
587586
588587
589588
590589
591590
592591
593592
594593
595594
596595
597596
598597
599598
600599
601600
602601
603602
604603
605604
606605
607606
608607
609608
610609
611610
612611
613612
614613
615614
616615
617616
618617
619618
620619
621620
622621
623622
624623
625624
626625
627626
628627
629628
630629
631630
632631
633632
634633
635634
636635
637636
638637
639638
640639
641640
642641
643642
644643
645644
646645
647646
648647
649648
650649
651650
652651
653652
654653
655654
656655
657656
658657
659658
660659
661660
662661
663662
664663
665664
666665
667666
668667
669668
670669
671670
672671
673672
674673
675674
676675
677676
678677
679678
680679
681680
682681
683682
684683
685684
686685
687686
688687
689688
690689
691690
692691
693692
694693
695694
696695
697696
698697
699698
700699
701700
702701
703702
704703
705704
706705
707706
708707
709708
710709
711710
712711
713712
714713
715714
716715
717716
718717
719718
720719
721720
722721
723722
724723
725724
726725
727726
728727
729728
730729
731730
732731
733732
734733
735734
736735
737736
738737
739738
740739
741740
742741
743742
744743
745744
746745
747746
748747
749748
750749
751750
752751
753752
754753
755754
756755
757756
758757
759758
760759
761760
762761
763762
764763
765764
766765
767766
768767
769768
770769
771770
772771
773772
774773
775774
776775
777776
778777
779778
780779
781780
782781
783782
784783
785784
786785
787786
788787
789788
790789
791790
792791
793792
794793
795794
796795
797796
798797
799798
800799
801800
802801
803802
804803
805804
806805
807806
808807
809808
810809
811810
812811
813812
814813
815814
816815
817816
818817
819818
820819
821820
822821
823822
824823
825824
826825
827826
828827
829828
830829
831830
832831
833832
834833
835834
836835
837836
838837
839838
840839
841840
842841
843842
844843
845844
846845
847846
848847
849848
850849
851850
852851
853852
854853
855854
856855
857856
858857
859858
860859
861860
862861
863862
864863
865864
866865
867866
868867
869868
870869
871870
872871
873872
874873
875874
876875
877876
878877
879878
880879
881880
882881
883882
884883
885884
886885
887886
888887
889888
890889
891890
892891
893892
894893
895894
896895
897896
898897
899898
900899
901900
902901
903902
904903
905904
906905
907906
908907
909908
910909
911910
912911
913912
914913
915914
916915
917916
918917
919918
920919
921920
922921
923922
924923
925924
926925
927926
928927
929928
930929
931930
932931
933932
934933
935934
936935
937936
938937
939938
940939
941940
942941
943942
944943
945944
946945
947946
948947
949948
950949
951950
952951
953952
954953
955954
956955
957956
958957
959958
960959
961960
962961
963962
964963
965964
966965
967966
968967
969968
970969
971970
972971
973972
974973
975974
976975
977976
978977
979978
980979
981980
982981
983982
984983
985984
986985
987986
988987
989988
990989
991990
992991
993992
994993
995994
996995
997996
998997
999998
1000999
10011000
10021001
10031002
10041003
10051004
10061005
10071006
10081007
10091008
10101009
10111010
10121011
10131012
10141013
10151014
10161015
10171016
10181017
10191018
10201019
10211020
10221021
10231022
10241023
10251024
10261025
10271026
10281027
10291028
10301029
10311030
10321031
10331032
10341033
10351034
10361035
10371036
10381037
10391038
10401039
10411040
10421041
10431042
10441043
10451044
10461045
10471046
10481047
10491048
10501049
10511050
10521051
10531052
10541053
10551054
10561055
10571056
10581057
10591058
10601059
10611060
10621061
10631062
10641063
10651064
10661065
10671066
10681067
10691068
10701069
10711070
10721071
10731072
10741073
10751074
10761075
10771076
10781077
10791078
10801079
10811080
10821081
10831082
10841083
10851084
10861085
10871086
10881087
10891088
10901089
10911090
10921091
10931092
10941093
10951094
10961095
10971096
10981097
10991098
11001099
11011100
11021101
11031102
11041103
11051104
11061105
11071106
11081107
11091108
11101109
11111110
11121111
11131112
11141113
11151114
11161115
11171116
11181117
11191118
11201119
11211120
11221121
11231122
11241123
11251124
11261125
11271126
11281127
11291128
11301129
11311130
11321131
11331132
11341133
11351134
11361135
11371136
11381137
11391138
11401139
11411140
11421141
11431142
11441143
11451144
11461145
11471146
11481147
11491148
11501149
11511150
11521151
11531152
11541153
11551154
11561155
11571156
11581157
11591158
11601159
11611160
11621161
11631162
11641163
11651164
11661165
11671166
11681167
11691168
11701169
11711170
11721171
11731172
11741173
11751174
11761175
11771176
11781177
11791178
11801179
11811180
11821181
11831182
11841183
11851184
11861185
11871186
11881187
11891188
11901189
11911190
11921191
11931192
11941193
11951194
11961195
11971196
11981197
11991198
12001199
12011200
12021201
12031202
12041203
12051204
12061205
12071206
12081207
12091208
12101209
12111210
12121211
12131212
12141213
12151214
12161215
12171216
12181217
12191218
12201219
12211220
12221221
12231222
12241223
12251224
12261225
12271226
12281227
12291228
12301229
12311230
12321231
12331232
12341233
12351234
12361235
12371236
12381237
12391238
12401239
12411240
12421241
12431242
12441243
12451244
12461245
12471246
12481247
12491248
12501249
12511250
12521251
12531252
12541253
12551254
12561255
12571256
12581257
12591258
12601259
12611260
12621261
12631262
12641263
12651264
12661265
12671266
12681267
12691268
12701269
12711270
12721271
12731272
12741273
12751274
12761275
12771276
12781277
12791278
12801279
12811280
12821281
12831282
12841283
12851284
12861285
12871286
12881287
12891288
12901289
12911290
12921291
12931292
12941293
12951294
12961295
12971296
12981297
12991298
13001299
13011300
13021301
13031302
13041303
13051304
13061305
13071306
13081307
13091308
13101309
13111310
13121311
13131312
13141313
13151314
13161315
13171316
13181317
13191318
13201319
13211320
13221321
13231322
13241323
13251324
13261325
13271326
13281327
13291328
13301329
13311330
13321331
13331332
13341333
13351334
13361335
13371336
13381337
13391338
13401339
13411340
13421341
13431342
13441343
13451344
13461345
13471346
13481347
13491348
13501349
13511350
13521351
13531352
13541353
13551354
13561355
13571356
13581357
13591358
13601359
13611360
13621361
13631362
13641363
13651364
13661365
13671366
13681367
13691368
13701369
13711370
13721371
13731372
13741373
13751374
13761375
13771376
13781377
13791378
13801379
13811380
13821381
13831382
13841383
13851384
13861385
13871386
13881387
13891388
13901389
13911390
13921391
13931392
13941393
13951394
13961395
13971396
13981397
13991398
14001399
14011400
14021401
14031402
14041403
14051404
14061405
14071406
14081407
14091408
14101409
14111410
14121411
14131412
14141413
14151414
14161415
14171416
14181417
14191418
14201419
14211420
14221421
14231422
14241423
14251424
14261425
14271426
14281427
14291428
14301429
14311430
14321431
14331432
14341433
14351434
14361435
14371436
14381437
14391438
14401439
14411440
14421441
14431442
14441443
14451444
14461445
14471446
14481447
14491448
14501449
14511450
14521451
14531452
14541453
14551454
14561455
14571456
14581457
14591458
14601459
14611460
14621461
14631462
14641463
14651464
14661465
14671466
14681467
14691468
14701469
14711470
14721471
14731472
14741473
14751474
14761475
14771476
14781477
14791478
14801479
14811480
14821481
14831482
14841483
14851484
14861485
14871486
14881487
14891488
14901489
14911490
14921491
14931492
14941493
14951494
14961495
14971496
14981497
14991498
15001499
15011500
15021501
15031502
15041503
15051504
15061505
15071506
15081507
15091508
15101509
15111510
15121511
15131512
15141513
15151514
15161515
15171516
15181517
15191518
15201519
15211520
15221521
15231522
15241523
15251524
15261525
15271526
15281527
15291528
15301529
15311530
15321531
15331532
15341533
15351534
15361535
15371536
15381537
15391538
15401539
15411540
15421541
15431542
15441543
15451544
15461545
15471546
15481547
15491548
15501549
15511550
15521551
15531552
15541553
15551554
15561555
15571556
15581557
15591558
15601559
15611560
15621561
15631562
15641563
15651564
15661565
15671566
15681567
15691568
15701569
15711570
15721571
15731572
15741573
15751574
15761575
15771576
15781577
15791578
15801579
15811580
15821581
15831582
15841583
15851584
15861585
15871586
15881587
15891588
15901589
15911590
15921591
15931592
15941593
15951594
15961595
15971596
15981597
15991598
16001599
16011600
16021601
16031602
16041603
16051604
16061605
16071606
16081607
16091608
16101609
16111610
16121611
16131612
16141613
16151614
16161615
16171616
16181617
16191618
16201619
16211620
16221621
16231622
16241623
16251624
16261625
16271626
16281627
16291628
16301629
16311630
16321631
16331632
16341633
16351634
16361635
16371636
16381637
16391638
16401639
16411640
16421641
16431642
16441643
16451644
16461645
16471646
16481647
16491648
16501649
16511650
16521651
16531652
16541653
16551654
16561655
16571656
16581657
16591658
16601659
16611660
16621661
16631662
16641663
16651664
16661665
16671666
16681667
16691668
16701669
16711670
16721671
16731672
16741673
16751674
16761675
16771676
16781677
16791678
16801679
16811680
16821681
16831682
16841683
16851684
16861685
16871686
16881687
16891688
16901689
16911690
16921691
16931692
16941693
16951694
16961695
16971696
16981697
16991698
17001699
17011700
17021701
17031702
17041703
17051704
17061705
17071706
17081707
17091708
17101709
17111710
17121711
17131712
17141713
17151714
17161715
17171716
17181717
17191718
17201719
17211720
17221721
17231722
17241723
17251724
17261725
17271726
17281727
17291728
17301729
17311730
17321731
17331732
17341733
17351734
17361735
17371736
17381737
17391738
17401739
17411740
17421741
17431742
17441743
17451744
17461745
17471746
17481747
17491748
17501749
17511750
17521751
17531752
17541753
17551754
17561755
17571756
17581757
17591758
17601759
17611760
17621761
17631762
17641763
17651764
17661765
17671766
17681767
17691768
17701769
17711770
17721771
17731772
17741773
17751774
17761775
17771776
17781777
17791778
17801779
17811780
17821781
17831782
17841783
17851784
17861785
17871786
17881787
17891788
17901789
17911790
17921791
17931792
17941793
17951794
17961795
17971796
17981797
17991798
18001799
18011800
18021801
18031802
18041803
18051804
18061805
18071806
18081807
18091808
18101809
18111810
18121811
18131812
18141813
18151814
18161815
18171816
18181817
18191818
18201819
18211820
18221821
18231822
18241823
18251824
18261825
18271826
18281827
18291828
18301829
18311830
18321831
18331832
18341833
18351834
18361835
18371836
18381837
18391838
18401839
18411840
18421841
18431842
18441843
18451844
18461845
18471846
18481847
18491848
18501849
18511850
18521851
18531852
18541853
18551854
18561855
18571856
18581857
18591858
18601859
18611860
18621861
18631862
18641863
18651864
18661865
18671866
18681867
18691868
18701869
18711870
18721871
18731872
18741873
18751874
18761875
18771876
18781877
18791878
18801879
18811880
18821881
18831882
18841883
18851884
18861885
18871886
18881887
18891888
18901889
18911890
18921891
18931892
18941893
18951894
18961895
18971896
18981897
18991898
19001899
19011900
19021901
19031902
19041903
19051904
19061905
19071906
19081907
19091908
19101909
19111910
19121911
19131912
19141913
19151914
19161915
19171916
19181917
19191918
19201919
19211920
19221921
19231922
19241923
19251924
19261925
19271926
19281927
19291928
19301929
19311930
19321931
19331932
19341933
19351934
19361935
19371936
19381937
19391938
19401939
19411940
19421941
19431942
19441943
19451944
19461945
19471946
19481947
19491948
19501949
19511950
19521951
19531952
19541953
19551954
19561955
19571956
19581957
19591958
19601959
19611960
19621961
19631962
19641963
19651964
19661965
19671966
19681967
19691968
19701969
19711970
19721971
19731972
19741973
19751974
19761975
19771976
19781977
19791978
19801979
19811980
19821981
19831982
19841983
19851984
19861985
19871986
19881987
19891988
19901989
19911990
19921991
19931992
19941993
19951994
19961995
19971996
19981997
19991998
20001999
20012000
20022001
20032002
20042003
20052004
20062005
20072006
20082007
20092008
20102009
20112010
20122011
20132012
20142013
20152014
20162015
20172016
20182017
20192018
20202019
20212020
20222021
20232022
20242023
20252024
20262025
20272026
20282027
20292028
20302029
20312030
20322031
20332032
20342033
20352034
20362035
20372036
20382037
20392038
20402039
20412040
20422041
20432042
20442043
20452044
20462045
20472046
20482047
20492048
20502049
20512050
20522051
20532052
20542053
20552054
20562055
20572056
20582057
20592058
20602059
20612060
20622061
20632062
20642063
20652064
20662065
20672066
20682067
20692068
20702069
20712070
20722071
20732072
20742073
20752074
20762075
20772076
20782077
20792078
20802079
20812080
20822081
20832082
20842083
20852084
20862085
20872086
20882087
20892088
20902089
20912090
20922091
20932092
20942093
20952094
20962095
20972096
20982097
20992098
21002099
21012100
21022101
21032102
21042103
21052104
21062105
21072106
21082107
21092108
21102109
21112110
21122111
21132112
21142113
21152114
21162115
21172116
21182117
21192118
21202119
21212120
21222121
21232122
21242123
21252124
21262125
21272126
21282127
21292128
21302129
21312130
21322131
21332132
21342133
21352134
21362135
21372136
21382137
21392138
21402139
21412140
21422141
21432142
21442143
21452144
21462145
21472146
21482147
21492148
21502149
21512150
21522151
21532152
21542153
21552154
21562155
21572156
21582157
21592158
21602159
21612160
21622161
21632162
21642163
21652164
21662165
21672166
21682167
21692168
21702169
21712170
21722171
21732172
21742173
21752174
21762175
21772176
21782177
21792178
21802179
21812180
21822181
21832182
21842183
21852184
21862185
21872186
21882187
21892188
21902189
21912190
21922191
21932192
21942193
21952194
21962195
21972196
21982197
21992198
22002199
22012200
22022201
22032202
22042203
22052204
22062205
22072206
22082207
22092208
22102209
22112210
22122211
22132212
22142213
22152214
22162215
22172216
22182217
22192218
22202219
22212220
22222221
22232222
22242223
22252224
22262225
22272226
22282227
22292228
22302229
22312230
22322231
22332232
22342233
22352234
22362235
22372236
22382237
22392238
22402239
22412240
22422241
22432242
22442243
22452244
22462245
22472246
22482247
22492248
22502249
22512250
22522251
22532252
22542253
22552254
22562255
22572256
22582257
22592258
22602259
22612260
22622261
22632262
22642263
22652264
22662265
22672266
22682267
22692268
22702269
22712270
22722271
22732272
22742273
22752274
22762275
22772276
22782277
22792278
22802279
22812280
22822281
22832282
22842283
22852284
22862285
22872286
22882287
22892288
22902289
22912290
22922291
22932292
22942293
22952294
22962295
22972296
22982297
22992298
23002299
23012300
23022301
23032302
23042303
23052304
23062305
23072306
23082307
23092308
23102309
23112310
23122311
23132312
23142313
23152314
23162315
23172316
23182317
23192318
23202319
23212320
23222321
23232322
23242323
23252324
23262325
23272326
23282327
23292328
23302329
23312330
23322331
23332332
23342333
23352334
23362335
23372336
23382337
23392338
23402339
23412340
23422341
23432342
23442343
23452344
23462345
23472346
23482347
23492348
23502349
23512350
23522351
23532352
23542353
23552354
23562355
23572356
23582357
23592358
23602359
23612360
23622361
23632362
23642363
23652364
23662365
23672366
23682367
23692368
23702369
23712370
23722371
23732372
23742373
23752374
23762375
23772376
23782377
23792378
23802379
23812380
23822381
23832382
23842383
23852384
23862385
23872386
23882387
23892388
23902389
23912390
23922391
23932392
23942393
23952394
23962395
23972396
23982397
23992398
24002399
24012400
24022401
24032402
24042403
24052404
24062405
24072406
24082407
24092408
24102409
24112410
24122411
24132412
24142413
24152414
24162415
24172416
24182417
24192418
24202419
24212420
24222421
24232422
24242423
24252424
24262425
24272426
24282427
24292428
24302429
24312430
24322431
24332432
24342433
24352434
24362435
24372436
24382437
24392438
24402439
24412440
24422441
24432442
24442443
24452444
24462445
24472446
24482447
24492448
24502449
24512450
24522451
24532452
24542453
24552454
24562455
24572456
24582457
24592458
24602459
24612460
24622461
24632462
24642463
24652464
24662465
24672466
24682467
24692468
24702469
24712470
24722471
24732472
24742473
24752474
24762475
24772476
24782477
24792478
24802479
24812480
24822481
24832482
24842483
24852484
24862485
24872486
24882487
24892488
24902489
24912490
24922491
24932492
24942493
24952494
24962495
24972496
24982497
24992498
25002499
25012500
25022501
25032502
25042503
25052504
25062505
25072506
25082507
25092508
25102509
25112510
25122511
25132512
25142513
25152514
25162515
25172516
25182517
25192518
25202519
25212520
25222521
25232522
25242523
25252524
25262525
25272526
25282527
25292528
25302529
25312530
25322531
25332532
25342533
25352534
25362535
25372536
25382537
25392538
25402539
25412540
25422541
25432542
25442543
25452544
25462545
25472546
25482547
25492548
25502549
25512550
25522551
25532552
25542553
25552554
25562555
25572556
25582557
25592558
25602559
25612560
25622561
25632562
25642563
25652564
25662565
25672566
25682567
25692568
25702569
25712570
25722571
25732572
25742573
25752574
25762575
25772576
25782577
25792578
25802579
25812580
25822581
25832582
25842583
25852584
25862585
25872586
25882587
25892588
25902589
25912590
25922591
25932592
25942593
25952594
25962595
25972596
25982597
25992598
26002599
26012600
26022601
26032602
26042603
26052604
26062605
26072606
26082607
26092608
26102609
26112610
26122611
26132612
26142613
26152614
26162615
26172616
26182617
26192618
26202619
26212620
26222621
26232622
26242623
26252624
26262625
26272626
26282627
26292628
26302629
26312630
26322631
26332632
26342633
26352634
26362635
26372636
26382637
26392638
26402639
26412640
26422641
26432642
26442643
26452644
26462645
26472646
26482647
26492648
26502649
26512650
26522651
26532652
26542653
26552654
26562655
26572656
26582657
26592658
26602659
26612660
26622661
26632662
26642663
26652664
26662665
26672666
26682667
26692668
26702669
26712670
26722671
26732672
26742673
26752674
26762675
26772676
26782677
26792678
26802679
26812680
26822681
26832682
26842683
26852684
26862685
26872686
26882687
26892688
26902689
26912690
26922691
26932692
26942693
26952694
26962695
26972696
26982697
26992698
27002699
27012700
27022701
27032702
27042703
27052704
27062705
27072706
27082707
27092708
27102709
27112710
27122711
27132712
27142713
27152714
27162715
27172716
27182717
27192718
27202719
27212720
27222721
27232722
27242723
27252724
27262725
27272726
27282727
27292728
27302729
27312730
27322731
27332732
27342733
27352734
27362735
27372736
27382737
27392738
27402739
27412740
27422741
27432742
27442743
27452744
27462745
27472746
27482747
27492748
27502749
27512750
27522751
27532752
27542753
27552754
27562755
27572756
27582757
27592758
27602759
27612760
27622761
27632762
27642763
27652764
27662765
27672766
27682767
27692768
27702769
27712770
27722771
27732772
27742773
27752774
27762775
27772776
27782777
27792778
27802779
27812780
27822781
27832782
27842783
27852784
27862785
27872786
27882787
27892788
27902789
27912790
27922791
27932792
27942793
27952794
27962795
27972796
27982797
27992798
28002799
28012800
28022801
28032802
28042803
28052804
28062805
28072806
28082807
28092808
28102809
28112810
28122811
28132812
28142813
28152814
28162815
28172816
28182817
28192818
28202819
28212820
28222821
28232822
28242823
28252824
28262825
28272826
28282827
28292828
28302829
28312830
28322831
28332832
28342833
28352834
28362835
28372836
28382837
28392838
28402839
28412840
28422841
28432842
28442843
28452844
28462845
28472846
28482847
28492848
28502849
28512850
28522851
28532852
28542853
28552854
28562855
28572856
28582857
28592858
28602859
28612860
28622861
28632862
28642863
28652864
28662865
28672866
28682867
28692868
28702869
28712870
28722871
28732872
28742873
28752874
28762875
28772876
28782877
28792878
28802879
28812880
28822881
28832882
28842883
28852884
28862885
28872886
28882887
28892888
28902889
28912890
28922891
28932892
28942893
28952894
28962895
28972896
28982897
28992898
29002899
29012900
29022901
29032902
29042903
29052904
29062905
29072906
29082907
29092908
29102909
29112910
29122911
29132912
29142913
29152914
29162915
29172916
29182917
29192918
29202919
29212920
29222921
29232922
29242923
29252924
29262925
29272926
29282927
29292928
29302929
29312930
29322931
29332932
29342933
29352934
29362935
29372936
29382937
29392938
29402939
29412940
29422941
29432942
29442943
29452944
29462945
29472946
29482947
29492948
29502949
29512950
29522951
29532952
29542953
29552954
29562955
29572956
29582957
29592958
29602959
29612960
29622961
29632962
29642963
29652964
29662965
29672966
29682967
29692968
29702969
29712970
29722971
29732972
29742973
29752974
29762975
29772976
29782977
29792978
29802979
29812980
29822981
29832982
29842983
29852984
29862985
29872986
29882987
29892988
29902989
29912990
29922991
29932992
29942993
29952994
29962995
29972996
29982997
29992998
30002999
30013000
30023001
30033002
30043003
30053004
30063005
30073006
30083007
30093008
30103009
30113010
30123011
30133012
30143013
30153014
30163015
30173016
30183017
30193018
30203019
30213020
30223021
30233022
30243023
30253024
30263025
30273026
30283027
30293028
30303029
30313030
30323031
30333032
30343033
30353034
30363035
30373036
30383037
30393038
30403039
30413040
30423041
30433042
30443043
30453044
30463045
30473046
30483047
30493048
30503049
30513050
30523051
30533052
30543053
30553054
30563055
30573056
30583057
30593058
30603059
30613060
30623061
30633062
30643063
30653064
30663065
30673066
30683067
30693068
30703069
30713070
30723071
30733072
30743073
30753074
30763075
30773076
30783077
30793078
30803079
30813080
30823081
30833082
30843083
30853084
30863085
30873086
30883087
30893088
30903089
30913090
30923091
30933092
30943093
30953094
30963095
30973096
30983097
30993098
31003099
31013100
31023101
31033102
31043103
31053104
31063105
31073106
31083107
31093108
31103109
31113110
31123111
31133112
31143113
31153114
31163115
31173116
31183117
31193118
31203119
31213120
31223121
31233122
31243123
31253124
31263125
31273126
31283127
31293128
31303129
31313130
31323131
31333132
31343133
31353134
31363135
31373136
31383137
31393138
31403139
31413140
31423141
31433142
31443143
31453144
31463145
31473146
31483147
31493148
31503149
31513150
31523151
31533152
31543153
31553154
31563155
31573156
31583157
31593158
31603159
31613160
31623161
31633162
31643163
31653164
31663165
31673166
31683167
31693168
31703169
31713170
31723171
31733172
31743173
31753174
31763175
31773176
31783177
31793178
31803179
31813180
31823181
31833182
31843183
31853184
31863185
31873186
31883187
31893188
31903189
31913190
31923191
31933192
31943193
31953194
31963195
31973196
31983197
31993198
32003199
32013200
32023201
32033202
32043203
32053204
32063205
32073206
32083207
32093208
32103209
32113210
32123211
32133212
32143213
32153214
32163215
32173216
32183217
32193218
32203219
32213220
32223221
32233222
32243223
32253224
32263225
32273226
32283227
32293228
32303229
32313230
32323231
32333232
32343233
32353234
32363235
32373236
32383237
32393238
32403239
32413240
32423241
32433242
32443243
32453244
32463245
32473246
32483247
32493248
32503249
32513250
32523251
32533252
32543253
32553254
32563255
32573256
32583257
32593258
32603259
32613260
32623261
32633262
32643263
32653264
32663265
32673266
32683267
32693268
32703269
32713270
32723271
32733272
32743273
32753274
32763275
32773276
32783277
32793278
32803279
32813280
32823281
32833282
32843283
32853284
32863285
32873286
32883287
32893288
32903289
32913290
32923291
32933292
32943293
32953294
32963295
32973296
32983297
32993298
33003299
33013300
33023301
33033302
33043303
33053304
33063305
33073306
33083307
33093308
33103309
33113310
33123311
33133312
33143313
33153314
33163315
33173316
33183317
33193318
33203319
33213320
33223321
33233322
33243323
33253324
33263325
33273326
33283327
33293328
33303329
33313330
33323331
33333332
33343333
33353334
33363335
33373336
33383337
33393338
33403339
33413340
33423341
33433342
33443343
33453344
33463345
334707.09 15:12:20 [Server] INFO 2020-09-07 15:12:20,341 main WARN Disabling terminal, you're running in an unsupported environment.
334807.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
334907.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
335007.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
335107.09 15:12:22 [Server] main/INFO [FML]: Forge Mod Loader version 14.23.5.2847 for Minecraft 1.12.2 loading
335207.09 15:12:22 [Server] main/INFO [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_211, running on Linux:amd64:4.9.177-xxxx-std-ipv6-64, installed at /usr/local/oracle-java-8/jdk1.8.0_211/jre
335307.09 15:12:29 [Server] main/WARN [FML]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed!
335407.09 15:12:29 [Server] main/WARN [FML]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed!
335507.09 15:12:29 [Server] main/INFO [FML]: Searching /./mods for mods
335607.09 15:12:29 [Server] main/INFO [FML]: Searching /./mods/1.12.2 for mods
335707.09 15:12:29 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in AdvancedRocketry-1.12.2-1.7.0-232-universal.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
335807.09 15:12:29 [Server] main/WARN [FML]: The coremod AdvancedRocketryPlugin (zmaster587.advancedRocketry.asm.AdvancedRocketryPlugin) is not signed!
335907.09 15:12:30 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Apotheosis-1.12.2-1.12.5.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
336007.09 15:12:30 [Server] main/WARN [FML]: The coremod ApotheosisCore (shadows.ApotheosisCore) is not signed!
336107.09 15:12:30 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in AppleCore-mc1.12.2-3.2.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
336207.09 15:12:30 [Server] main/WARN [FML]: The coremod AppleCore (squeek.applecore.AppleCore) is not signed!
336307.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in astralsorcery-1.12.2-1.10.25.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
336407.09 15:12:31 [Server] main/WARN [FML]: The coremod hellfirepvp.astralsorcery.core.AstralCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft
336507.09 15:12:31 [Server] main/INFO [Astral Core]: [AstralCore] Initialized.
336607.09 15:12:31 [Server] main/INFO [FML]: Loading tweaker guichaguri.betterfps.tweaker.BetterFpsTweaker from BetterFps-1.4.8.jar
336707.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in biggerpacketsplz-since1.8-1.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
336807.09 15:12:31 [Server] main/WARN [FML]: The coremod net.elnounch.mc.biggerpacketsplz.BiggerPacketsPlzCoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
336907.09 15:12:31 [Server] main/WARN [FML]: The coremod com.bloodnbonesgaming.bnbgamingcore.core.BNBGamingCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
337007.09 15:12:31 [Server] main/WARN [FML]: The coremod BNBGamingCore (com.bloodnbonesgaming.bnbgamingcore.core.BNBGamingCorePlugin) is not signed!
337107.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in botaniatweaks-1.9.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
337207.09 15:12:31 [Server] main/WARN [FML]: The coremod Botania Tweaks Core (quaternary.botaniatweaks.asm.BotaniaTweakerPlugin) is not signed!
337307.09 15:12:31 [Server] main/INFO [FML]: Loading tweaker codechicken.asm.internal.Tweaker from ChickenASM-1.12-1.0.2.7.jar
337407.09 15:12:32 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in CreativeCore_v1.10.16_mc1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
337507.09 15:12:32 [Server] main/WARN [FML]: The coremod com.creativemd.creativecore.core.CreativePatchingLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
337607.09 15:12:32 [Server] main/WARN [FML]: The coremod CreativePatchingLoader (com.creativemd.creativecore.core.CreativePatchingLoader) is not signed!
337707.09 15:12:32 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in CTM-MC1.12.2-1.0.2.31.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
337807.09 15:12:32 [Server] 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
337907.09 15:12:32 [Server] main/WARN [FML]: The coremod CTMCorePlugin (team.chisel.ctm.client.asm.CTMCorePlugin) is not signed!
338007.09 15:12:38 [Server] main/WARN [FML]: The coremod F5FixLoadingPlugin (de.morrien.f5fix.F5FixLoadingPlugin) is not signed!
338107.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in foamfix-0.10.10-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
338207.09 15:12:38 [Server] 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
338307.09 15:12:38 [Server] 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.
338407.09 15:12:38 [Server] 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
338507.09 15:12:38 [Server] main/WARN [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
338607.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in gregtech-1.12.2-1.10.0.546.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
338707.09 15:12:38 [Server] main/WARN [FML]: The coremod GTCELoadingPlugin (gregtech.common.asm.GTCELoadingPlugin) is not signed!
338807.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in HardcoreDarkness-MC1.12.2-2.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
338907.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.hardcoredarkness.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
339007.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in iceandfire-1.9.1-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
339107.09 15:12:38 [Server] main/WARN [FML]: The coremod iceandfire (com.github.alexthe666.iceandfire.asm.IceAndFirePlugin) is not signed!
339207.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.64+dev.146.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
339307.09 15:12:38 [Server] main/WARN [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
339407.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in librarianlib-1.12.2-4.21.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
339507.09 15:12:38 [Server] main/WARN [FML]: The coremod com.teamwizardry.librarianlib.asm.LibLibCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
339607.09 15:12:38 [Server] main/WARN [FML]: The coremod LibrarianLib Plugin (com.teamwizardry.librarianlib.asm.LibLibCorePlugin) is not signed!
339707.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in LittleTiles_v1.5.0-pre199_34_mc1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
339807.09 15:12:38 [Server] main/WARN [FML]: The coremod com.creativemd.littletiles.LittlePatchingLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
339907.09 15:12:38 [Server] main/WARN [FML]: The coremod LittlePatchingLoader (com.creativemd.littletiles.LittlePatchingLoader) is not signed!
340007.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in logisticspipes-0.10.3.62.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
340107.09 15:12:38 [Server] main/WARN [FML]: The coremod logisticspipes.asm.LogisticsPipesCoreLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
340207.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Mekanism-1.12.2-9.8.3.390.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
340307.09 15:12:38 [Server] main/WARN [FML]: The coremod mekanism.coremod.MekanismCoremod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
340407.09 15:12:38 [Server] main/WARN [FML]: The coremod MekanismCoremod (mekanism.coremod.MekanismCoremod) is not signed!
340507.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from MixinBootstrap-1.0.3.jar
340607.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.12.2-1.7.5.192.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
340707.09 15:12:38 [Server] main/WARN [FML]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
340807.09 15:12:38 [Server] main/WARN [FML]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!
340907.09 15:12:38 [Server] 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.
341007.09 15:12:38 [Server] main/WARN [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
341107.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Quark-r1.6-179.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
341207.09 15:12:38 [Server] main/WARN [FML]: The coremod Quark Plugin (vazkii.quark.base.asm.LoadingPlugin) is not signed!
341307.09 15:12:38 [Server] 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
341407.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in RandomThings-MC1.12.2-4.2.7.4.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
341507.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.randomthings.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
341607.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in ResourceLoader-MC1.12.1-1.5.3.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
341707.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.resourceloader.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
341807.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from Sledgehammer-1.12.2-2.0.6.jar
341907.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in SqueezerPatch-1.12.2-1.0.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
342007.09 15:12:38 [Server] main/WARN [FML]: The coremod SqueezerCore (shadows.squeezer.SqueezerCore) is not signed!
342107.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from VanillaFix-1.0.10-150.jar
342207.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in wizardry-0.11.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
342307.09 15:12:38 [Server] main/WARN [FML]: The coremod com.teamwizardry.wizardry.asm.WizardryCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
342407.09 15:12:38 [Server] main/WARN [FML]: The coremod Wizardry Plugin (com.teamwizardry.wizardry.asm.WizardryCorePlugin) is not signed!
342507.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Xaeros_Minimap_20.20.1_Forge_1.12.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
342607.09 15:12:38 [Server] main/WARN [FML]: The coremod XaeroMinimapPlugin (xaero.common.core.XaeroMinimapPlugin) is not signed!
342707.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in XaerosWorldMap_1.10.1_Forge_1.12.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
342807.09 15:12:38 [Server] main/WARN [FML]: The coremod XaeroWorldMapPlugin (xaero.map.core.XaeroWorldMapPlugin) is not signed!
342907.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from phosphor-forge-mc1.12.2-0.2.7-universal.jar
343007.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
343107.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name guichaguri.betterfps.tweaker.BetterFpsTweaker
343207.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name codechicken.asm.internal.Tweaker
343307.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.launch.MixinTweaker
343407.09 15:12:38 [Server] main/INFO [mixin]: SpongePowered MIXIN Subsystem Version=0.8 Source=file:/./mods/MixinBootstrap-1.0.3.jar Service=LaunchWrapper Env=SERVER
343507.09 15:12:38 [Server] main/INFO [VanillaFix]: Initializing VanillaFix
343607.09 15:12:38 [Server] main/INFO [VanillaFix]: Initializing StacktraceDeobfuscator
343707.09 15:12:38 [Server] main/INFO [VanillaFix]: Found MCP method mappings: methods-stable_39.csv
343807.09 15:12:39 [Server] main/INFO [VanillaFix]: Done initializing StacktraceDeobfuscator
343907.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Bug Fix Mixins
344007.09 15:12:39 [Server] main/INFO [mixin]: Compatibility level set to JAVA_8
344107.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Crash Fix Mixins
344207.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Profiler Improvement Mixins
344307.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Texture Fix Mixins
344407.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Mod Support Mixins
344507.09 15:12:39 [Server] main/WARN [FML]: The coremod VanillaFixLoadingPlugin (org.dimdev.vanillafix.VanillaFixLoadingPlugin) is not signed!
344607.09 15:12:39 [Server] main/WARN [FML]: The coremod PhosphorFMLLoadingPlugin (me.jellysquid.mods.phosphor.core.PhosphorFMLLoadingPlugin) is not signed!
344707.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
344807.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
344907.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
345007.09 15:12:39 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
345107.09 15:12:39 [Server] main/INFO [LaunchWrapper]: Calling tweak class io.github.lxgaming.sledgehammer.launch.SledgehammerTweaker
345207.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
345307.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
345407.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
345507.09 15:12:46 [Server] main/INFO [Sledgehammer]: Successfully loaded configuration file.
345607.09 15:12:46 [Server] main/INFO [Sledgehammer]: Successfully saved configuration file.
3457Couldn't get log: Authentication failed (auth: Empty response)
3458
345907.09 15:12:20 [Server] INFO 2020-09-07 15:12:20,341 main WARN Disabling terminal, you're running in an unsupported environment.
346007.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
346107.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
346207.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
346307.09 15:12:22 [Server] main/INFO [FML]: Forge Mod Loader version 14.23.5.2847 for Minecraft 1.12.2 loading
346407.09 15:12:22 [Server] main/INFO [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_211, running on Linux:amd64:4.9.177-xxxx-std-ipv6-64, installed at /usr/local/oracle-java-8/jdk1.8.0_211/jre
346507.09 15:12:29 [Server] main/WARN [FML]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed!
346607.09 15:12:29 [Server] main/WARN [FML]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed!
346707.09 15:12:29 [Server] main/INFO [FML]: Searching /./mods for mods
346807.09 15:12:29 [Server] main/INFO [FML]: Searching /./mods/1.12.2 for mods
346907.09 15:12:29 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in AdvancedRocketry-1.12.2-1.7.0-232-universal.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
347007.09 15:12:29 [Server] main/WARN [FML]: The coremod AdvancedRocketryPlugin (zmaster587.advancedRocketry.asm.AdvancedRocketryPlugin) is not signed!
347107.09 15:12:30 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Apotheosis-1.12.2-1.12.5.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
347207.09 15:12:30 [Server] main/WARN [FML]: The coremod ApotheosisCore (shadows.ApotheosisCore) is not signed!
347307.09 15:12:30 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in AppleCore-mc1.12.2-3.2.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
347407.09 15:12:30 [Server] main/WARN [FML]: The coremod AppleCore (squeek.applecore.AppleCore) is not signed!
347507.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in astralsorcery-1.12.2-1.10.25.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
347607.09 15:12:31 [Server] main/WARN [FML]: The coremod hellfirepvp.astralsorcery.core.AstralCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft
347707.09 15:12:31 [Server] main/INFO [Astral Core]: [AstralCore] Initialized.
347807.09 15:12:31 [Server] main/INFO [FML]: Loading tweaker guichaguri.betterfps.tweaker.BetterFpsTweaker from BetterFps-1.4.8.jar
347907.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in biggerpacketsplz-since1.8-1.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
348007.09 15:12:31 [Server] main/WARN [FML]: The coremod net.elnounch.mc.biggerpacketsplz.BiggerPacketsPlzCoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
348107.09 15:12:31 [Server] main/WARN [FML]: The coremod com.bloodnbonesgaming.bnbgamingcore.core.BNBGamingCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
348207.09 15:12:31 [Server] main/WARN [FML]: The coremod BNBGamingCore (com.bloodnbonesgaming.bnbgamingcore.core.BNBGamingCorePlugin) is not signed!
348307.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in botaniatweaks-1.9.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
348407.09 15:12:31 [Server] main/WARN [FML]: The coremod Botania Tweaks Core (quaternary.botaniatweaks.asm.BotaniaTweakerPlugin) is not signed!
348507.09 15:12:31 [Server] main/INFO [FML]: Loading tweaker codechicken.asm.internal.Tweaker from ChickenASM-1.12-1.0.2.7.jar
348607.09 15:12:32 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in CreativeCore_v1.10.16_mc1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
348707.09 15:12:32 [Server] main/WARN [FML]: The coremod com.creativemd.creativecore.core.CreativePatchingLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
348807.09 15:12:32 [Server] main/WARN [FML]: The coremod CreativePatchingLoader (com.creativemd.creativecore.core.CreativePatchingLoader) is not signed!
348907.09 15:12:32 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in CTM-MC1.12.2-1.0.2.31.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
349007.09 15:12:32 [Server] 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
349107.09 15:12:32 [Server] main/WARN [FML]: The coremod CTMCorePlugin (team.chisel.ctm.client.asm.CTMCorePlugin) is not signed!
349207.09 15:12:38 [Server] main/WARN [FML]: The coremod F5FixLoadingPlugin (de.morrien.f5fix.F5FixLoadingPlugin) is not signed!
349307.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in foamfix-0.10.10-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
349407.09 15:12:38 [Server] 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
349507.09 15:12:38 [Server] 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.
349607.09 15:12:38 [Server] 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
349707.09 15:12:38 [Server] main/WARN [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
349807.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in gregtech-1.12.2-1.10.0.546.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
349907.09 15:12:38 [Server] main/WARN [FML]: The coremod GTCELoadingPlugin (gregtech.common.asm.GTCELoadingPlugin) is not signed!
350007.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in HardcoreDarkness-MC1.12.2-2.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
350107.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.hardcoredarkness.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
350207.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in iceandfire-1.9.1-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
350307.09 15:12:38 [Server] main/WARN [FML]: The coremod iceandfire (com.github.alexthe666.iceandfire.asm.IceAndFirePlugin) is not signed!
350407.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.64+dev.146.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
350507.09 15:12:38 [Server] main/WARN [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
350607.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in librarianlib-1.12.2-4.21.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
350707.09 15:12:38 [Server] main/WARN [FML]: The coremod com.teamwizardry.librarianlib.asm.LibLibCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
350807.09 15:12:38 [Server] main/WARN [FML]: The coremod LibrarianLib Plugin (com.teamwizardry.librarianlib.asm.LibLibCorePlugin) is not signed!
350907.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in LittleTiles_v1.5.0-pre199_34_mc1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
351007.09 15:12:38 [Server] main/WARN [FML]: The coremod com.creativemd.littletiles.LittlePatchingLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
351107.09 15:12:38 [Server] main/WARN [FML]: The coremod LittlePatchingLoader (com.creativemd.littletiles.LittlePatchingLoader) is not signed!
351207.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in logisticspipes-0.10.3.62.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
351307.09 15:12:38 [Server] main/WARN [FML]: The coremod logisticspipes.asm.LogisticsPipesCoreLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
351407.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Mekanism-1.12.2-9.8.3.390.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
351507.09 15:12:38 [Server] main/WARN [FML]: The coremod mekanism.coremod.MekanismCoremod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
351607.09 15:12:38 [Server] main/WARN [FML]: The coremod MekanismCoremod (mekanism.coremod.MekanismCoremod) is not signed!
351707.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from MixinBootstrap-1.0.3.jar
351807.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.12.2-1.7.5.192.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
351907.09 15:12:38 [Server] main/WARN [FML]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
352007.09 15:12:38 [Server] main/WARN [FML]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!
352107.09 15:12:38 [Server] 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.
352207.09 15:12:38 [Server] main/WARN [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
352307.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Quark-r1.6-179.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
352407.09 15:12:38 [Server] main/WARN [FML]: The coremod Quark Plugin (vazkii.quark.base.asm.LoadingPlugin) is not signed!
352507.09 15:12:38 [Server] 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
352607.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in RandomThings-MC1.12.2-4.2.7.4.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
352707.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.randomthings.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
352807.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in ResourceLoader-MC1.12.1-1.5.3.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
352907.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.resourceloader.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
353007.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from Sledgehammer-1.12.2-2.0.6.jar
353107.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in SqueezerPatch-1.12.2-1.0.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
353207.09 15:12:38 [Server] main/WARN [FML]: The coremod SqueezerCore (shadows.squeezer.SqueezerCore) is not signed!
353307.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from VanillaFix-1.0.10-150.jar
353407.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in wizardry-0.11.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
353507.09 15:12:38 [Server] main/WARN [FML]: The coremod com.teamwizardry.wizardry.asm.WizardryCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
353607.09 15:12:38 [Server] main/WARN [FML]: The coremod Wizardry Plugin (com.teamwizardry.wizardry.asm.WizardryCorePlugin) is not signed!
353707.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Xaeros_Minimap_20.20.1_Forge_1.12.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
353807.09 15:12:38 [Server] main/WARN [FML]: The coremod XaeroMinimapPlugin (xaero.common.core.XaeroMinimapPlugin) is not signed!
353907.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in XaerosWorldMap_1.10.1_Forge_1.12.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
354007.09 15:12:38 [Server] main/WARN [FML]: The coremod XaeroWorldMapPlugin (xaero.map.core.XaeroWorldMapPlugin) is not signed!
354107.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from phosphor-forge-mc1.12.2-0.2.7-universal.jar
354207.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
354307.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name guichaguri.betterfps.tweaker.BetterFpsTweaker
354407.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name codechicken.asm.internal.Tweaker
354507.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.launch.MixinTweaker
354607.09 15:12:38 [Server] main/INFO [mixin]: SpongePowered MIXIN Subsystem Version=0.8 Source=file:/./mods/MixinBootstrap-1.0.3.jar Service=LaunchWrapper Env=SERVER
354707.09 15:12:38 [Server] main/INFO [VanillaFix]: Initializing VanillaFix
354807.09 15:12:38 [Server] main/INFO [VanillaFix]: Initializing StacktraceDeobfuscator
354907.09 15:12:38 [Server] main/INFO [VanillaFix]: Found MCP method mappings: methods-stable_39.csv
355007.09 15:12:39 [Server] main/INFO [VanillaFix]: Done initializing StacktraceDeobfuscator
355107.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Bug Fix Mixins
355207.09 15:12:39 [Server] main/INFO [mixin]: Compatibility level set to JAVA_8
355307.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Crash Fix Mixins
355407.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Profiler Improvement Mixins
355507.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Texture Fix Mixins
355607.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Mod Support Mixins
355707.09 15:12:39 [Server] main/WARN [FML]: The coremod VanillaFixLoadingPlugin (org.dimdev.vanillafix.VanillaFixLoadingPlugin) is not signed!
355807.09 15:12:39 [Server] main/WARN [FML]: The coremod PhosphorFMLLoadingPlugin (me.jellysquid.mods.phosphor.core.PhosphorFMLLoadingPlugin) is not signed!
355907.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
356007.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
356107.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
356207.09 15:12:39 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
356307.09 15:12:39 [Server] main/INFO [LaunchWrapper]: Calling tweak class io.github.lxgaming.sledgehammer.launch.SledgehammerTweaker
356407.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
356507.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
356607.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
356707.09 15:12:46 [Server] main/INFO [Sledgehammer]: Successfully loaded configuration file.
356807.09 15:12:46 [Server] main/INFO [Sledgehammer]: Successfully saved configuration file.
356907.09 15:13:27 [Server] main/ERROR [FML]: FML appears to be missing any signature data. This is not a good thing
357007.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357107.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357207.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357307.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357407.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357507.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357607.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357707.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357807.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
357907.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
358007.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class codechicken.asm.internal.Tweaker
358107.09 15:13:27 [Server] main/INFO [STDOUT]: [codechicken.asm.internal.Tweaker:injectIntoClassLoader:30]: false
358207.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class org.spongepowered.asm.launch.MixinTweaker
358307.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
358407.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class guichaguri.betterfps.tweaker.BetterFpsTweaker
358507.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
358607.09 15:13:28 [Server] main/INFO [Astral Core]: [AstralTransformer] Loading patches...
358707.09 15:13:28 [Server] main/INFO [Astral Core]: [AstralTransformer] Initialized! Loaded 14 class patches!
358807.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
358907.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
359007.09 15:13:28 [Server] main/INFO [BnBGamingCore]: Minecraft version is 1.12.2 and BNBGamingCore accepts versions 1.12, . It will be registered.
359107.09 15:13:28 [Server] main/INFO [BnBGamingCore]: Minecraft version is 1.12.2 and BNBGamingCore accepts versions 1.12, . It will be registered.
359207.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
359307.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
359407.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
359507.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
359607.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
359707.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
359807.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
359907.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360007.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360107.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360207.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360307.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360407.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360507.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360607.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360707.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360807.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
360907.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
361007.09 15:13:34 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
361107.09 15:13:34 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
361207.09 15:13:35 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
361307.09 15:13:35 [Server] main/INFO [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.mixin.EnvironmentStateTweaker
361407.09 15:13:35 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
361507.09 15:13:35 [Server] main/INFO [LaunchWrapper]: Calling tweak class org.spongepowered.asm.mixin.EnvironmentStateTweaker
361607.09 15:13:37 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming alm : net.minecraft.enchantment.EnchantmentHelper with 1 patches!
361707.09 15:13:37 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHMODIFYENCHANTMENTLEVELS
361807.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: Transforming EnchantmentHelper...
361907.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EnchantmentHelper.calcItemStackEnchantability
362007.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EnchantmentHelper.getEnchantmentDatas
362107.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: [Deadly] Transforming EnchantmentHelper...
362207.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: [Deadly] Transforming EnchantmentHelper...
362307.09 15:13:38 [Server] main/INFO [Apotheosis : Core]: [Deadly] Successfully transformed EnchantmentHelper
362407.09 15:13:38 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EnchantmentHelper
362507.09 15:13:38 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.enchantment.EnchantmentHelper
362607.09 15:13:38 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [getEnchantments, func_82781_a] Descriptor (Lnet/minecraft/item/ItemStack;)Ljava/util/Map;)
362707.09 15:13:38 [Server] main/INFO [Quark ASM]: Located Method, patching...
362807.09 15:13:38 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/item/ItemStack.func_77986_q ()Lnet/minecraft/nbt/NBTTagList;
362907.09 15:13:38 [Server] main/INFO [Quark ASM]: Patch result: true
363007.09 15:13:39 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.player.EntityPlayerMP ...
363107.09 15:13:40 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.Entity ...
363207.09 15:13:41 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.Entity
363307.09 15:13:41 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [move, func_70091_d] Descriptor (Lnet/minecraft/entity/MoverType;DDD)V)
363407.09 15:13:41 [Server] main/INFO [Quark ASM]: Located Method, patching...
363507.09 15:13:41 [Server] main/INFO [Quark ASM]: Patch result: true
363607.09 15:13:41 [Server] main/INFO [Quark ASM]: Located Method, patching...
363707.09 15:13:41 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/Entity.func_145775_I ()V
363807.09 15:13:41 [Server] main/INFO [Quark ASM]: Patch result: true
363907.09 15:13:41 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [onEntityUpdate, func_70030_z] Descriptor ()V)
364007.09 15:13:41 [Server] main/INFO [Quark ASM]: Located Method, patching...
364107.09 15:13:41 [Server] main/INFO [Quark ASM]: Patch result: true
364207.09 15:13:41 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_70091_d', 'move' with '(Lnet/minecraft/entity/MoverType;DDD)V'
364307.09 15:13:42 [Server] main/INFO [mixin]: A re-entrant transformer '$wrapper.lumien.randomthings.asm.ClassTransformer' was detected and will no longer process meta class data
364407.09 15:13:42 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.world.chunk.BlockStateContainer.func_186018_a
364507.09 15:13:43 [Server] 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@3b545206 from coremod FMLCorePlugin)
364607.09 15:13:43 [Server] main/WARN [mixin]: @Mixin target net.minecraft.server.integrated.IntegratedServer was not found mixins.vanillafix.crashes.json:MixinIntegratedServer
364707.09 15:13:43 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a
364807.09 15:13:44 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming amu : net.minecraft.world.World with 2 patches!
364907.09 15:13:44 [Server] main/INFO [Astral Core]: [AstralTransformer] Skipping PATCHSUNBRIGHTNESSWORLDCLIENT as it can't be applied for side SERVER
365007.09 15:13:44 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSUNBRIGHTNESSWORLDCOMMON
365107.09 15:13:44 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable
365207.09 15:13:44 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:135]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities
365307.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Transforming World
365407.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [updateEntities, func_72939_s] Descriptor ()V)
365507.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
365607.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Patch result: Success
365707.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [updateEntityWithOptionalForce, func_72866_a] Descriptor (Lnet/minecraft/entity/Entity;Z)V)
365807.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
365907.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Patch result: Success
366007.09 15:13:45 [Server] main/INFO [BetterFps]: Patching net.minecraft.server.dedicated.DedicatedServer... (nz)
366107.09 15:13:45 [Server] main/INFO [mixin]: A re-entrant transformer 'guichaguri.betterfps.transformers.PatcherTransformer' was detected and will no longer process meta class data
366207.09 15:13:46 [Server] main/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.world.chunk.Chunk
366307.09 15:13:47 [Server] main/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.world.chunk.Chunk
366407.09 15:13:47 [Server] 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
366507.09 15:13:47 [Server] 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
366607.09 15:13:47 [Server] main/INFO [mixin]: A re-entrant transformer '$wrapper.pl.asie.foamfix.coremod.FoamFixTransformer' was detected and will no longer process meta class data
366707.09 15:13:47 [Server] main/INFO [EnderCore ASM]: Transforming Class [net.minecraft.world.chunk.storage.ExtendedBlockStorage], Method [func_76663_a]
366807.09 15:13:47 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.world.chunk.storage.ExtendedBlockStorage Finished.
366907.09 15:13:49 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming amu : net.minecraft.world.World with 2 patches!
367007.09 15:13:49 [Server] main/INFO [Astral Core]: [AstralTransformer] Skipping PATCHSUNBRIGHTNESSWORLDCLIENT as it can't be applied for side SERVER
367107.09 15:13:49 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSUNBRIGHTNESSWORLDCOMMON
367207.09 15:13:49 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable
367307.09 15:13:49 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:135]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities
367407.09 15:13:49 [Server] main/INFO [LibrarianLib ASM]: Transforming World
367507.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [updateEntities, func_72939_s] Descriptor ()V)
367607.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
367707.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Patch result: Success
367807.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [updateEntityWithOptionalForce, func_72866_a] Descriptor (Lnet/minecraft/entity/Entity;Z)V)
367907.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
368007.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Patch result: Success
368107.09 15:13:51 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.util.ITickable ...
368207.09 15:13:52 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.patches.WorldServerRemovalPatch:apply:62]: Patched updateEntities in net/minecraft/world/WorldServer func_72939_s
368307.09 15:13:52 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.world.WorldServer
368407.09 15:13:52 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [areAllPlayersAsleep, func_73056_e] Descriptor ()Z)
368507.09 15:13:52 [Server] main/INFO [Quark ASM]: Located Method, patching...
368607.09 15:13:52 [Server] main/INFO [Quark ASM]: Patch result: true
368707.09 15:13:52 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [wakeAllPlayers, func_73053_d] Descriptor ()V)
368807.09 15:13:52 [Server] main/INFO [Quark ASM]: Located Method, patching...
368907.09 15:13:52 [Server] main/INFO [Quark ASM]: Patch result: true
369007.09 15:13:55 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.util.ITickable ...
369107.09 15:13:55 [Server] main/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.server.management.PlayerList
369207.09 15:13:55 [Server] main/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.server.management.PlayerList
369307.09 15:13:56 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.player.EntityPlayer ...
369407.09 15:13:56 [Server] main/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.entity.player.EntityPlayer
369507.09 15:13:56 [Server] main/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.entity.player.EntityPlayer
369607.09 15:13:57 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_70071_h_', 'onUpdate' with '()V'
369707.09 15:13:57 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase
369807.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming vp : net.minecraft.entity.EntityLivingBase with 4 patches!
369907.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHAPPLYPOTIONEFFECTEVENT
370007.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHENTITYLIVINGBASEWATERSLOWDOWN
370107.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSETPLAYERATTRIBUTE
370207.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHUPDATEELYTRA
370307.09 15:13:58 [Server] main/INFO [Apotheosis : Core]: Transforming EntityLivingBase...
370407.09 15:13:58 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EntityLivingBase
370507.09 15:13:58 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_191986_a', 'travel' with '(FFF)V'
370607.09 15:13:59 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.Entity ...
370707.09 15:14:00 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.Entity
370807.09 15:14:00 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [move, func_70091_d] Descriptor (Lnet/minecraft/entity/MoverType;DDD)V)
370907.09 15:14:00 [Server] main/INFO [Quark ASM]: Located Method, patching...
371007.09 15:14:00 [Server] main/INFO [Quark ASM]: Patch result: true
371107.09 15:14:00 [Server] main/INFO [Quark ASM]: Located Method, patching...
371207.09 15:14:00 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/Entity.func_145775_I ()V
371307.09 15:14:00 [Server] main/INFO [Quark ASM]: Patch result: true
371407.09 15:14:00 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [onEntityUpdate, func_70030_z] Descriptor ()V)
371507.09 15:14:00 [Server] main/INFO [Quark ASM]: Located Method, patching...
371607.09 15:14:00 [Server] main/INFO [Quark ASM]: Patch result: true
371707.09 15:14:00 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_70091_d', 'move' with '(Lnet/minecraft/entity/MoverType;DDD)V'
371807.09 15:14:01 [Server] main/INFO [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
371907.09 15:14:02 [Server] main/INFO [BetterFps]: Patching net.minecraft.block.Block... (aow)
372007.09 15:14:03 [Server] main/INFO [STDOUT]: [team.chisel.ctm.client.asm.CTMTransformer:preTransform:230]: Transforming Class [net.minecraft.block.Block], Method [getExtendedState]
372107.09 15:14:03 [Server] main/INFO [STDOUT]: [team.chisel.ctm.client.asm.CTMTransformer:finishTransform:242]: Transforming net.minecraft.block.Block Finished.
372207.09 15:14:04 [Server] main/INFO [Apotheosis : Core]: Transforming Item...
372307.09 15:14:04 [Server] main/INFO [Apotheosis : Core]: Successfully transformed Item
372407.09 15:14:05 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.enchantment.Enchantment
372507.09 15:14:05 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [canApply, func_92089_a] Descriptor (Lnet/minecraft/item/ItemStack;)Z)
372607.09 15:14:05 [Server] main/INFO [Quark ASM]: Located Method, patching...
372707.09 15:14:05 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
372807.09 15:14:05 [Server] main/INFO [Quark ASM]: Patch result: true
372907.09 15:14:06 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.item.EntityItem
373007.09 15:14:06 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [onUpdate, func_70071_h_] Descriptor ()V)
373107.09 15:14:06 [Server] main/INFO [Quark ASM]: Located Method, patching...
373207.09 15:14:06 [Server] main/INFO [Quark ASM]: Patch result: true
373307.09 15:14:07 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.util.math.AxisAlignedBB ...
373407.09 15:14:08 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.state.BlockStateContainer.createState
373507.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.equals
373607.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.hashCode
373707.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode
373807.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode_calced
373907.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyInteger.hashCode
374007.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode
374107.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode_calced
374207.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.equals
374307.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.hashCode
374407.09 15:14:09 [Server] main/INFO [BetterFps]: Patching math utils with "RIVENS_HALF" algorithm
374507.09 15:14:10 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming aip : net.minecraft.item.ItemStack with 2 patches!
374607.09 15:14:10 [Server] main/INFO [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIP as it can't be applied for side SERVER
374707.09 15:14:10 [Server] main/INFO [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIPEVENT as it can't be applied for side SERVER
374807.09 15:14:10 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.item.ItemStack
374907.09 15:14:10 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [getTextComponent, func_151000_E] Descriptor ()Lnet/minecraft/util/text/ITextComponent;)
375007.09 15:14:10 [Server] main/INFO [Quark ASM]: Located Method, patching...
375107.09 15:14:10 [Server] main/INFO [Quark ASM]: Located patch target node ARETURN
375207.09 15:14:10 [Server] main/INFO [Quark ASM]: Patch result: true
375307.09 15:14:10 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.block.BlockDynamicLiquid
375407.09 15:14:10 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [isBlocked, func_176372_g] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)Z)
375507.09 15:14:10 [Server] main/INFO [Quark ASM]: Located Method, patching...
375607.09 15:14:10 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
375707.09 15:14:10 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
375807.09 15:14:10 [Server] main/INFO [Quark ASM]: Patch result: true
375907.09 15:14:10 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a
376007.09 15:14:11 [Server] main/INFO [Apotheosis : Core]: Transforming BlockBed...
376107.09 15:14:11 [Server] main/INFO [Apotheosis : Core]: Successfully transformed BlockBed
376207.09 15:14:11 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.BlockBed.func_189540_a
376307.09 15:14:11 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.block.BlockPistonBase
376407.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [canPush, func_185646_a] Descriptor (Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;ZLnet/minecraft/util/EnumFacing;)Z)
376507.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
376607.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/block/Block.hasTileEntity (Lnet/minecraft/block/state/IBlockState;)Z
376707.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
376807.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [doMove, func_176319_a] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)Z)
376907.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
377007.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/block/state/BlockPistonStructureHelper.func_177254_c ()Ljava/util/List;
377107.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
377207.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [doMove, func_176319_a] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)Z)
377307.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
377407.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKESPECIAL net/minecraft/block/state/BlockPistonStructureHelper.<init> (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)V
377507.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
377607.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [checkForMove, func_176316_e] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V)
377707.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
377807.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKESPECIAL net/minecraft/block/state/BlockPistonStructureHelper.<init> (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)V
377907.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
378007.09 15:14:11 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.tileentity.TileEntityPiston
378107.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V)
378207.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
378307.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
378407.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [clearPistonTileEntity, func_145866_f] Descriptor ()V)
378507.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
378607.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/world/World.func_180501_a (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)Z
378707.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
378807.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V)
378907.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
379007.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/world/World.func_180501_a (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)Z
379107.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
379207.09 15:14:11 [Server] main/ERROR [randompatches]: Failed to transform class: net.minecraft.tileentity.TileEntityPiston
379307.09 15:14:11 [Server] INFO java.lang.NullPointerException: null
379407.09 15:14:11 [Server] INFO at org.objectweb.asm.tree.InsnList.insert(Unknown Source) ~[asm-all-5.2.jar:5.2]
379507.09 15:14:11 [Server] INFO at com.therandomlabs.randompatches.patch.TileEntityPistonPatch.patchUpdateSignalFix(TileEntityPistonPatch.java:121) ~[TileEntityPistonPatch.class:?]
379607.09 15:14:11 [Server] INFO at com.therandomlabs.randompatches.patch.TileEntityPistonPatch.apply(TileEntityPistonPatch.java:30) ~[TileEntityPistonPatch.class:?]
379707.09 15:14:11 [Server] INFO at com.therandomlabs.randompatches.core.RPTransformer.transform(RPTransformer.java:37) [randompatches-1.12.2-1.22.1.2.jar:?]
379807.09 15:14:11 [Server] INFO at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:256) [ASMTransformerWrapper$TransformerWrapper.class:?]
379907.09 15:14:11 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279) [launchwrapper-1.12.jar:?]
380007.09 15:14:11 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176) [launchwrapper-1.12.jar:?]
380107.09 15:14:11 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:424) [?:1.8.0_211]
380207.09 15:14:11 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:357) [?:1.8.0_211]
380307.09 15:14:11 [Server] INFO at net.minecraft.block.Block.registerBlocks(Block.java:2378) [aow.class:?]
380407.09 15:14:11 [Server] INFO at net.minecraft.init.Bootstrap.register(Bootstrap.java:498) [ni.class:?]
380507.09 15:14:11 [Server] INFO at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:1470) [MinecraftServer.class:?]
380607.09 15:14:11 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
380707.09 15:14:11 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
380807.09 15:14:11 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
380907.09 15:14:11 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
381007.09 15:14:11 [Server] INFO at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
381107.09 15:14:11 [Server] INFO at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
381207.09 15:14:11 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
381307.09 15:14:11 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
381407.09 15:14:11 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
381507.09 15:14:11 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
381607.09 15:14:11 [Server] INFO at net.minecraftforge.fml.relauncher.ServerLaunchWrapper.run(ServerLaunchWrapper.java:70) [forge-1.12.2-14.23.5.2847-universal.jar:?]
381707.09 15:14:11 [Server] INFO at net.minecraftforge.fml.relauncher.ServerLaunchWrapper.main(ServerLaunchWrapper.java:34) [forge-1.12.2-14.23.5.2847-universal.jar:?]
381807.09 15:14:16 [Server] main/INFO [OpenComputers]: Successfully patched net/minecraft/entity/EntityLiving.recreateLeash.
381907.09 15:14:19 [Server] main/INFO [BetterFps]: Patching net.minecraft.tileentity.TileEntityBeacon... (avh)
382007.09 15:14:20 [Server] main/INFO [BetterFps]: Patching net.minecraft.block.BlockHopper... (arl)
382107.09 15:14:20 [Server] main/INFO [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper
382207.09 15:14:20 [Server] main/INFO [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper
382307.09 15:14:20 [Server] main/INFO [BetterFps]: Patching net.minecraft.tileentity.TileEntityHopper... (avw)
382407.09 15:14:22 [Server] main/INFO [Apotheosis : Core]: Transforming SharedMonsterAttributes...
382507.09 15:14:22 [Server] main/INFO [Apotheosis : Core]: Successfully transformed SharedMonsterAttributes
382607.09 15:14:22 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.enchantment.EnchantmentDamage
382707.09 15:14:22 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [canApply, func_92089_a] Descriptor (Lnet/minecraft/item/ItemStack;)Z)
382807.09 15:14:22 [Server] main/INFO [Quark ASM]: Located Method, patching...
382907.09 15:14:22 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
383007.09 15:14:22 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
383107.09 15:14:22 [Server] main/INFO [Quark ASM]: Patch result: true
383207.09 15:14:24 [Server] main/INFO [Apotheosis : Core]: Transforming ItemArrow...
383307.09 15:14:24 [Server] main/INFO [Apotheosis : Core]: Successfully transformed ItemArrow
383407.09 15:14:24 [Server] main/INFO [EnderCore ASM]: Transforming Class [net.minecraft.entity.item.EntityItemFrame], Method [func_184230_a]
383507.09 15:14:24 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.entity.item.EntityItemFrame Finished.
383607.09 15:14:24 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.item.EntityMinecart
383707.09 15:14:24 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [killMinecart, func_94095_a] Descriptor (Lnet/minecraft/util/DamageSource;)V)
383807.09 15:14:24 [Server] main/INFO [Quark ASM]: Located Method, patching...
383907.09 15:14:24 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/item/EntityMinecart.func_70099_a (Lnet/minecraft/item/ItemStack;F)Lnet/minecraft/entity/item/EntityItem;
384007.09 15:14:24 [Server] main/INFO [Quark ASM]: Patch result: true
384107.09 15:14:24 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.item.EntityBoat
384207.09 15:14:24 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [attackEntityFrom, func_70097_a] Descriptor (Lnet/minecraft/util/DamageSource;F)Z)
384307.09 15:14:24 [Server] main/INFO [Quark ASM]: Located Method, patching...
384407.09 15:14:24 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/item/EntityBoat.func_145778_a (Lnet/minecraft/item/Item;IF)Lnet/minecraft/entity/item/EntityItem;
384507.09 15:14:24 [Server] main/INFO [Quark ASM]: Patch result: true
384607.09 15:14:25 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.player.EntityPlayerMP ...
384707.09 15:14:25 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.player.EntityPlayer ...
384807.09 15:14:25 [Server] main/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.entity.player.EntityPlayer
384907.09 15:14:25 [Server] main/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.entity.player.EntityPlayer
385007.09 15:14:25 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_70071_h_', 'onUpdate' with '()V'
385107.09 15:14:25 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase
385207.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming vp : net.minecraft.entity.EntityLivingBase with 4 patches!
385307.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHAPPLYPOTIONEFFECTEVENT
385407.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHENTITYLIVINGBASEWATERSLOWDOWN
385507.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSETPLAYERATTRIBUTE
385607.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHUPDATEELYTRA
385707.09 15:14:25 [Server] main/INFO [Apotheosis : Core]: Transforming EntityLivingBase...
385807.09 15:14:25 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EntityLivingBase
385907.09 15:14:25 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_191986_a', 'travel' with '(FFF)V'
386007.09 15:14:26 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.util.DamageSource
386107.09 15:14:26 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [causePlayerDamage, func_76365_a] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;)Lnet/minecraft/util/DamageSource;)
386207.09 15:14:26 [Server] main/INFO [Quark ASM]: Located Method, patching...
386307.09 15:14:26 [Server] main/INFO [Quark ASM]: Patch result: true
386407.09 15:14:26 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.world.WorldServer
386507.09 15:14:26 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [areAllPlayersAsleep, func_73056_e] Descriptor ()Z)
386607.09 15:14:26 [Server] main/INFO [Quark ASM]: Located Method, patching...
386707.09 15:14:26 [Server] main/INFO [Quark ASM]: Patch result: true
386807.09 15:14:26 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [wakeAllPlayers, func_73053_d] Descriptor ()V)
386907.09 15:14:26 [Server] main/INFO [Quark ASM]: Located Method, patching...
387007.09 15:14:26 [Server] main/INFO [Quark ASM]: Patch result: true
387107.09 15:14:27 [Server] main/INFO [Apotheosis : Core]: Transforming PotionEffect...
387207.09 15:14:27 [Server] main/INFO [Apotheosis : Core]: Successfully transformed PotionEffect
387307.09 15:14:27 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.item.ItemBanner
387407.09 15:14:27 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [appendHoverTextFromTileEntityTag, func_185054_a] Descriptor (Lnet/minecraft/item/ItemStack;Ljava/util/List;)V)
387507.09 15:14:28 [Server] main/INFO [Quark ASM]: Failed to locate the method!
387607.09 15:14:30 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming wg : net.minecraft.entity.ai.attributes.AbstractAttributeMap with 1 patches!
387707.09 15:14:30 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHADDPLAYERATTRIBUTE
387807.09 15:14:31 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.ai.EntityAITarget
387907.09 15:14:31 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [isSuitableTarget, func_179445_a] Descriptor (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/entity/EntityLivingBase;ZZ)Z)
388007.09 15:14:31 [Server] main/INFO [Quark ASM]: Located Method, patching...
388107.09 15:14:31 [Server] main/INFO [Quark ASM]: Patch result: true
388207.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/api/IFoamFixMobSpawnerLogic
388307.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.MobSpawnerBaseLogic.func_98279_f
388407.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCache
388507.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCachePESize
388607.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCacheTime
388707.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCache
388807.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCacheTime
388907.09 15:14:36 [Server] main/INFO [EnderCore ASM]: Transforming Class [net.minecraft.entity.ai.EntityAICreeperSwell], Method [func_75246_d]
389007.09 15:14:36 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.entity.ai.EntityAICreeperSwell Finished.
389107.09 15:14:37 [Server] main/INFO [Apotheosis : Core]: Transforming EntityAITempt...
389207.09 15:14:37 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EntityAITempt
389307.09 15:14:42 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern
389407.09 15:14:42 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [matches, func_77569_a] Descriptor (Lnet/minecraft/inventory/InventoryCrafting;Lnet/minecraft/world/World;)Z)
389507.09 15:14:42 [Server] main/INFO [Quark ASM]: Located Method, patching...
389607.09 15:14:42 [Server] main/INFO [Quark ASM]: Located patch target node INVOKESTATIC net/minecraft/tileentity/TileEntityBanner.func_175113_c (Lnet/minecraft/item/ItemStack;)I
389707.09 15:14:42 [Server] main/INFO [Quark ASM]: Patch result: true
389807.09 15:14:46 [Server] main/INFO [BetterFps]: Patching net.minecraft.server.dedicated.DedicatedServer... (nz)
389907.09 15:14:47 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.inventory.ContainerMerchant
390007.09 15:14:47 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [transferStackInSlot, func_82846_b] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;I)Lnet/minecraft/item/ItemStack;)
390107.09 15:14:47 [Server] main/INFO [Quark ASM]: Located Method, patching...
390207.09 15:14:47 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
390307.09 15:14:47 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
390407.09 15:14:47 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
390507.09 15:14:47 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
390607.09 15:14:47 [Server] main/INFO [Quark ASM]: Patch result: true
390707.09 15:14:48 [Server] main/INFO [EnderCore ASM]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b]
390807.09 15:14:48 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.inventory.ContainerFurnace Finished.
390907.09 15:14:48 [Server] main/INFO [Apotheosis : Core]: Transforming TileEntityMobSpawner$2...
391007.09 15:14:48 [Server] main/INFO [Apotheosis : Core]: Successfully transformed TileEntityMobSpawner$2
391107.09 15:14:51 [Server] Server thread/INFO [minecraft/DedicatedServer]: Starting minecraft server version 1.12.2
391207.09 15:14:51 [Server] Server thread/INFO [FML]: MinecraftForge v14.23.5.2847 Initialized
391307.09 15:14:51 [Server] Server thread/INFO [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
391407.09 15:14:53 [Server] Server thread/INFO [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient...
391507.09 15:14:56 [Server] Server thread/INFO [FML]: Replaced 1227 ore ingredients
391607.09 15:14:56 [Server] Server thread/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraftforge.common.ForgeHooks ...
391707.09 15:14:57 [Server] Server thread/INFO [STDOUT]: [zmaster587.advancedRocketry.asm.ModContainer:<init>:23]: ********* CoreDummyContainer. OK
391807.09 15:14:58 [Server] Server thread/INFO [FML]: Searching /./mods for mods
391907.09 15:14:58 [Server] Server thread/INFO [FML]: Searching /./mods/1.12.2 for mods
392007.09 15:15:06 [Server] Server thread/INFO [FML]: Disabling mod betteradvancements it is client side only.
392107.09 15:15:10 [Server] Server thread/INFO [FML]: Disabling mod cleanview it is client side only.
392207.09 15:15:10 [Server] 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
392307.09 15:15:12 [Server] Server thread/INFO [FML]: Disabling mod controlling it is client side only.
392407.09 15:15:12 [Server] Server thread/WARN [FML]: Mod cookingforblockheads is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 6.5.0
392507.09 15:15:12 [Server] Server thread/WARN [FML]: Mod cosmeticarmorreworked is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-v5a
392607.09 15:15:12 [Server] Server thread/INFO [FML]: Disabling mod ctgui it is client side only.
392707.09 15:15:13 [Server] Server thread/INFO [FML]: Disabling mod ctm it is client side only.
392807.09 15:15:13 [Server] Server thread/INFO [FML]: Disabling mod custommainmenu it is client side only.
392907.09 15:15:13 [Server] Server thread/WARN [FML]: Mod cyclicmagic is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.20.3
393007.09 15:15:14 [Server] Server thread/INFO [FML]: Disabling mod discord it is client side only.
393107.09 15:15:15 [Server] Server thread/WARN [FML]: Mod emberroot is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.3.9
3932Couldn't get log: Authentication failed (auth: Empty response)
3933
393407.09 15:12:20 [Server] INFO 2020-09-07 15:12:20,341 main WARN Disabling terminal, you're running in an unsupported environment.
393507.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
393607.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
393707.09 15:12:22 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
393807.09 15:12:22 [Server] main/INFO [FML]: Forge Mod Loader version 14.23.5.2847 for Minecraft 1.12.2 loading
393907.09 15:12:22 [Server] main/INFO [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_211, running on Linux:amd64:4.9.177-xxxx-std-ipv6-64, installed at /usr/local/oracle-java-8/jdk1.8.0_211/jre
394007.09 15:12:29 [Server] main/WARN [FML]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed!
394107.09 15:12:29 [Server] main/WARN [FML]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed!
394207.09 15:12:29 [Server] main/INFO [FML]: Searching /./mods for mods
394307.09 15:12:29 [Server] main/INFO [FML]: Searching /./mods/1.12.2 for mods
394407.09 15:12:29 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in AdvancedRocketry-1.12.2-1.7.0-232-universal.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
394507.09 15:12:29 [Server] main/WARN [FML]: The coremod AdvancedRocketryPlugin (zmaster587.advancedRocketry.asm.AdvancedRocketryPlugin) is not signed!
394607.09 15:12:30 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Apotheosis-1.12.2-1.12.5.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
394707.09 15:12:30 [Server] main/WARN [FML]: The coremod ApotheosisCore (shadows.ApotheosisCore) is not signed!
394807.09 15:12:30 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in AppleCore-mc1.12.2-3.2.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
394907.09 15:12:30 [Server] main/WARN [FML]: The coremod AppleCore (squeek.applecore.AppleCore) is not signed!
395007.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in astralsorcery-1.12.2-1.10.25.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
395107.09 15:12:31 [Server] main/WARN [FML]: The coremod hellfirepvp.astralsorcery.core.AstralCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft
395207.09 15:12:31 [Server] main/INFO [Astral Core]: [AstralCore] Initialized.
395307.09 15:12:31 [Server] main/INFO [FML]: Loading tweaker guichaguri.betterfps.tweaker.BetterFpsTweaker from BetterFps-1.4.8.jar
395407.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in biggerpacketsplz-since1.8-1.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
395507.09 15:12:31 [Server] main/WARN [FML]: The coremod net.elnounch.mc.biggerpacketsplz.BiggerPacketsPlzCoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
395607.09 15:12:31 [Server] main/WARN [FML]: The coremod com.bloodnbonesgaming.bnbgamingcore.core.BNBGamingCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
395707.09 15:12:31 [Server] main/WARN [FML]: The coremod BNBGamingCore (com.bloodnbonesgaming.bnbgamingcore.core.BNBGamingCorePlugin) is not signed!
395807.09 15:12:31 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in botaniatweaks-1.9.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
395907.09 15:12:31 [Server] main/WARN [FML]: The coremod Botania Tweaks Core (quaternary.botaniatweaks.asm.BotaniaTweakerPlugin) is not signed!
396007.09 15:12:31 [Server] main/INFO [FML]: Loading tweaker codechicken.asm.internal.Tweaker from ChickenASM-1.12-1.0.2.7.jar
396107.09 15:12:32 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in CreativeCore_v1.10.16_mc1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
396207.09 15:12:32 [Server] main/WARN [FML]: The coremod com.creativemd.creativecore.core.CreativePatchingLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
396307.09 15:12:32 [Server] main/WARN [FML]: The coremod CreativePatchingLoader (com.creativemd.creativecore.core.CreativePatchingLoader) is not signed!
396407.09 15:12:32 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in CTM-MC1.12.2-1.0.2.31.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
396507.09 15:12:32 [Server] 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
396607.09 15:12:32 [Server] main/WARN [FML]: The coremod CTMCorePlugin (team.chisel.ctm.client.asm.CTMCorePlugin) is not signed!
396707.09 15:12:38 [Server] main/WARN [FML]: The coremod F5FixLoadingPlugin (de.morrien.f5fix.F5FixLoadingPlugin) is not signed!
396807.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in foamfix-0.10.10-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
396907.09 15:12:38 [Server] 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
397007.09 15:12:38 [Server] 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.
397107.09 15:12:38 [Server] 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
397207.09 15:12:38 [Server] main/WARN [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
397307.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in gregtech-1.12.2-1.10.0.546.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
397407.09 15:12:38 [Server] main/WARN [FML]: The coremod GTCELoadingPlugin (gregtech.common.asm.GTCELoadingPlugin) is not signed!
397507.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in HardcoreDarkness-MC1.12.2-2.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
397607.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.hardcoredarkness.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
397707.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in iceandfire-1.9.1-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
397807.09 15:12:38 [Server] main/WARN [FML]: The coremod iceandfire (com.github.alexthe666.iceandfire.asm.IceAndFirePlugin) is not signed!
397907.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.64+dev.146.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
398007.09 15:12:38 [Server] main/WARN [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
398107.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in librarianlib-1.12.2-4.21.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
398207.09 15:12:38 [Server] main/WARN [FML]: The coremod com.teamwizardry.librarianlib.asm.LibLibCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
398307.09 15:12:38 [Server] main/WARN [FML]: The coremod LibrarianLib Plugin (com.teamwizardry.librarianlib.asm.LibLibCorePlugin) is not signed!
398407.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in LittleTiles_v1.5.0-pre199_34_mc1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
398507.09 15:12:38 [Server] main/WARN [FML]: The coremod com.creativemd.littletiles.LittlePatchingLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
398607.09 15:12:38 [Server] main/WARN [FML]: The coremod LittlePatchingLoader (com.creativemd.littletiles.LittlePatchingLoader) is not signed!
398707.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in logisticspipes-0.10.3.62.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
398807.09 15:12:38 [Server] main/WARN [FML]: The coremod logisticspipes.asm.LogisticsPipesCoreLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
398907.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Mekanism-1.12.2-9.8.3.390.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
399007.09 15:12:38 [Server] main/WARN [FML]: The coremod mekanism.coremod.MekanismCoremod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
399107.09 15:12:38 [Server] main/WARN [FML]: The coremod MekanismCoremod (mekanism.coremod.MekanismCoremod) is not signed!
399207.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from MixinBootstrap-1.0.3.jar
399307.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.12.2-1.7.5.192.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
399407.09 15:12:38 [Server] main/WARN [FML]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
399507.09 15:12:38 [Server] main/WARN [FML]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!
399607.09 15:12:38 [Server] 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.
399707.09 15:12:38 [Server] main/WARN [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
399807.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Quark-r1.6-179.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
399907.09 15:12:38 [Server] main/WARN [FML]: The coremod Quark Plugin (vazkii.quark.base.asm.LoadingPlugin) is not signed!
400007.09 15:12:38 [Server] 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
400107.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in RandomThings-MC1.12.2-4.2.7.4.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
400207.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.randomthings.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
400307.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in ResourceLoader-MC1.12.1-1.5.3.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
400407.09 15:12:38 [Server] main/WARN [FML]: The coremod lumien.resourceloader.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
400507.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from Sledgehammer-1.12.2-2.0.6.jar
400607.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in SqueezerPatch-1.12.2-1.0.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
400707.09 15:12:38 [Server] main/WARN [FML]: The coremod SqueezerCore (shadows.squeezer.SqueezerCore) is not signed!
400807.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from VanillaFix-1.0.10-150.jar
400907.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in wizardry-0.11.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
401007.09 15:12:38 [Server] main/WARN [FML]: The coremod com.teamwizardry.wizardry.asm.WizardryCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
401107.09 15:12:38 [Server] main/WARN [FML]: The coremod Wizardry Plugin (com.teamwizardry.wizardry.asm.WizardryCorePlugin) is not signed!
401207.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in Xaeros_Minimap_20.20.1_Forge_1.12.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
401307.09 15:12:38 [Server] main/WARN [FML]: The coremod XaeroMinimapPlugin (xaero.common.core.XaeroMinimapPlugin) is not signed!
401407.09 15:12:38 [Server] main/WARN [FML]: Found FMLCorePluginContainsFMLMod marker in XaerosWorldMap_1.10.1_Forge_1.12.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
401507.09 15:12:38 [Server] main/WARN [FML]: The coremod XaeroWorldMapPlugin (xaero.map.core.XaeroWorldMapPlugin) is not signed!
401607.09 15:12:38 [Server] main/INFO [FML]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from phosphor-forge-mc1.12.2-0.2.7-universal.jar
401707.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
401807.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name guichaguri.betterfps.tweaker.BetterFpsTweaker
401907.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name codechicken.asm.internal.Tweaker
402007.09 15:12:38 [Server] main/INFO [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.launch.MixinTweaker
402107.09 15:12:38 [Server] main/INFO [mixin]: SpongePowered MIXIN Subsystem Version=0.8 Source=file:/./mods/MixinBootstrap-1.0.3.jar Service=LaunchWrapper Env=SERVER
402207.09 15:12:38 [Server] main/INFO [VanillaFix]: Initializing VanillaFix
402307.09 15:12:38 [Server] main/INFO [VanillaFix]: Initializing StacktraceDeobfuscator
402407.09 15:12:38 [Server] main/INFO [VanillaFix]: Found MCP method mappings: methods-stable_39.csv
402507.09 15:12:39 [Server] main/INFO [VanillaFix]: Done initializing StacktraceDeobfuscator
402607.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Bug Fix Mixins
402707.09 15:12:39 [Server] main/INFO [mixin]: Compatibility level set to JAVA_8
402807.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Crash Fix Mixins
402907.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Profiler Improvement Mixins
403007.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Texture Fix Mixins
403107.09 15:12:39 [Server] main/INFO [VanillaFix]: Initializing Mod Support Mixins
403207.09 15:12:39 [Server] main/WARN [FML]: The coremod VanillaFixLoadingPlugin (org.dimdev.vanillafix.VanillaFixLoadingPlugin) is not signed!
403307.09 15:12:39 [Server] main/WARN [FML]: The coremod PhosphorFMLLoadingPlugin (me.jellysquid.mods.phosphor.core.PhosphorFMLLoadingPlugin) is not signed!
403407.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
403507.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
403607.09 15:12:39 [Server] main/WARN [LaunchWrapper]: Tweak class name org.spongepowered.asm.launch.MixinTweaker has already been visited -- skipping
403707.09 15:12:39 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
403807.09 15:12:39 [Server] main/INFO [LaunchWrapper]: Calling tweak class io.github.lxgaming.sledgehammer.launch.SledgehammerTweaker
403907.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
404007.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
404107.09 15:12:40 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
404207.09 15:12:46 [Server] main/INFO [Sledgehammer]: Successfully loaded configuration file.
404307.09 15:12:46 [Server] main/INFO [Sledgehammer]: Successfully saved configuration file.
404407.09 15:13:27 [Server] main/ERROR [FML]: FML appears to be missing any signature data. This is not a good thing
404507.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
404607.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
404707.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
404807.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
404907.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
405007.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
405107.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
405207.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
405307.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
405407.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
405507.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class codechicken.asm.internal.Tweaker
405607.09 15:13:27 [Server] main/INFO [STDOUT]: [codechicken.asm.internal.Tweaker:injectIntoClassLoader:30]: false
405707.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class org.spongepowered.asm.launch.MixinTweaker
405807.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
405907.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class guichaguri.betterfps.tweaker.BetterFpsTweaker
406007.09 15:13:27 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
406107.09 15:13:28 [Server] main/INFO [Astral Core]: [AstralTransformer] Loading patches...
406207.09 15:13:28 [Server] main/INFO [Astral Core]: [AstralTransformer] Initialized! Loaded 14 class patches!
406307.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
406407.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
406507.09 15:13:28 [Server] main/INFO [BnBGamingCore]: Minecraft version is 1.12.2 and BNBGamingCore accepts versions 1.12, . It will be registered.
406607.09 15:13:28 [Server] main/INFO [BnBGamingCore]: Minecraft version is 1.12.2 and BNBGamingCore accepts versions 1.12, . It will be registered.
406707.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
406807.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
406907.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407007.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407107.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407207.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407307.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407407.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407507.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407607.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407707.09 15:13:28 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407807.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
407907.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
408007.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
408107.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
408207.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
408307.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
408407.09 15:13:29 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
408507.09 15:13:34 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
408607.09 15:13:34 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
408707.09 15:13:35 [Server] main/INFO [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
408807.09 15:13:35 [Server] main/INFO [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.mixin.EnvironmentStateTweaker
408907.09 15:13:35 [Server] main/INFO [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
409007.09 15:13:35 [Server] main/INFO [LaunchWrapper]: Calling tweak class org.spongepowered.asm.mixin.EnvironmentStateTweaker
409107.09 15:13:37 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming alm : net.minecraft.enchantment.EnchantmentHelper with 1 patches!
409207.09 15:13:37 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHMODIFYENCHANTMENTLEVELS
409307.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: Transforming EnchantmentHelper...
409407.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EnchantmentHelper.calcItemStackEnchantability
409507.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EnchantmentHelper.getEnchantmentDatas
409607.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: [Deadly] Transforming EnchantmentHelper...
409707.09 15:13:37 [Server] main/INFO [Apotheosis : Core]: [Deadly] Transforming EnchantmentHelper...
409807.09 15:13:38 [Server] main/INFO [Apotheosis : Core]: [Deadly] Successfully transformed EnchantmentHelper
409907.09 15:13:38 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EnchantmentHelper
410007.09 15:13:38 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.enchantment.EnchantmentHelper
410107.09 15:13:38 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [getEnchantments, func_82781_a] Descriptor (Lnet/minecraft/item/ItemStack;)Ljava/util/Map;)
410207.09 15:13:38 [Server] main/INFO [Quark ASM]: Located Method, patching...
410307.09 15:13:38 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/item/ItemStack.func_77986_q ()Lnet/minecraft/nbt/NBTTagList;
410407.09 15:13:38 [Server] main/INFO [Quark ASM]: Patch result: true
410507.09 15:13:39 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.player.EntityPlayerMP ...
410607.09 15:13:40 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.Entity ...
410707.09 15:13:41 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.Entity
410807.09 15:13:41 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [move, func_70091_d] Descriptor (Lnet/minecraft/entity/MoverType;DDD)V)
410907.09 15:13:41 [Server] main/INFO [Quark ASM]: Located Method, patching...
411007.09 15:13:41 [Server] main/INFO [Quark ASM]: Patch result: true
411107.09 15:13:41 [Server] main/INFO [Quark ASM]: Located Method, patching...
411207.09 15:13:41 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/Entity.func_145775_I ()V
411307.09 15:13:41 [Server] main/INFO [Quark ASM]: Patch result: true
411407.09 15:13:41 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [onEntityUpdate, func_70030_z] Descriptor ()V)
411507.09 15:13:41 [Server] main/INFO [Quark ASM]: Located Method, patching...
411607.09 15:13:41 [Server] main/INFO [Quark ASM]: Patch result: true
411707.09 15:13:41 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_70091_d', 'move' with '(Lnet/minecraft/entity/MoverType;DDD)V'
411807.09 15:13:42 [Server] main/INFO [mixin]: A re-entrant transformer '$wrapper.lumien.randomthings.asm.ClassTransformer' was detected and will no longer process meta class data
411907.09 15:13:42 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.world.chunk.BlockStateContainer.func_186018_a
412007.09 15:13:43 [Server] 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@3b545206 from coremod FMLCorePlugin)
412107.09 15:13:43 [Server] main/WARN [mixin]: @Mixin target net.minecraft.server.integrated.IntegratedServer was not found mixins.vanillafix.crashes.json:MixinIntegratedServer
412207.09 15:13:43 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a
412307.09 15:13:44 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming amu : net.minecraft.world.World with 2 patches!
412407.09 15:13:44 [Server] main/INFO [Astral Core]: [AstralTransformer] Skipping PATCHSUNBRIGHTNESSWORLDCLIENT as it can't be applied for side SERVER
412507.09 15:13:44 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSUNBRIGHTNESSWORLDCOMMON
412607.09 15:13:44 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable
412707.09 15:13:44 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:135]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities
412807.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Transforming World
412907.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [updateEntities, func_72939_s] Descriptor ()V)
413007.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
413107.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Patch result: Success
413207.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [updateEntityWithOptionalForce, func_72866_a] Descriptor (Lnet/minecraft/entity/Entity;Z)V)
413307.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
413407.09 15:13:44 [Server] main/INFO [LibrarianLib ASM]: Patch result: Success
413507.09 15:13:45 [Server] main/INFO [BetterFps]: Patching net.minecraft.server.dedicated.DedicatedServer... (nz)
413607.09 15:13:45 [Server] main/INFO [mixin]: A re-entrant transformer 'guichaguri.betterfps.transformers.PatcherTransformer' was detected and will no longer process meta class data
413707.09 15:13:46 [Server] main/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.world.chunk.Chunk
413807.09 15:13:47 [Server] main/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.world.chunk.Chunk
413907.09 15:13:47 [Server] 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
414007.09 15:13:47 [Server] 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
414107.09 15:13:47 [Server] main/INFO [mixin]: A re-entrant transformer '$wrapper.pl.asie.foamfix.coremod.FoamFixTransformer' was detected and will no longer process meta class data
414207.09 15:13:47 [Server] main/INFO [EnderCore ASM]: Transforming Class [net.minecraft.world.chunk.storage.ExtendedBlockStorage], Method [func_76663_a]
414307.09 15:13:47 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.world.chunk.storage.ExtendedBlockStorage Finished.
414407.09 15:13:49 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming amu : net.minecraft.world.World with 2 patches!
414507.09 15:13:49 [Server] main/INFO [Astral Core]: [AstralTransformer] Skipping PATCHSUNBRIGHTNESSWORLDCLIENT as it can't be applied for side SERVER
414607.09 15:13:49 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSUNBRIGHTNESSWORLDCOMMON
414707.09 15:13:49 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable
414807.09 15:13:49 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:135]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities
414907.09 15:13:49 [Server] main/INFO [LibrarianLib ASM]: Transforming World
415007.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [updateEntities, func_72939_s] Descriptor ()V)
415107.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
415207.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Patch result: Success
415307.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [updateEntityWithOptionalForce, func_72866_a] Descriptor (Lnet/minecraft/entity/Entity;Z)V)
415407.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
415507.09 15:13:50 [Server] main/INFO [LibrarianLib ASM]: Patch result: Success
415607.09 15:13:51 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.util.ITickable ...
415707.09 15:13:52 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.patches.WorldServerRemovalPatch:apply:62]: Patched updateEntities in net/minecraft/world/WorldServer func_72939_s
415807.09 15:13:52 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.world.WorldServer
415907.09 15:13:52 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [areAllPlayersAsleep, func_73056_e] Descriptor ()Z)
416007.09 15:13:52 [Server] main/INFO [Quark ASM]: Located Method, patching...
416107.09 15:13:52 [Server] main/INFO [Quark ASM]: Patch result: true
416207.09 15:13:52 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [wakeAllPlayers, func_73053_d] Descriptor ()V)
416307.09 15:13:52 [Server] main/INFO [Quark ASM]: Located Method, patching...
416407.09 15:13:52 [Server] main/INFO [Quark ASM]: Patch result: true
416507.09 15:13:55 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.util.ITickable ...
416607.09 15:13:55 [Server] main/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.server.management.PlayerList
416707.09 15:13:55 [Server] main/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.server.management.PlayerList
416807.09 15:13:56 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.player.EntityPlayer ...
416907.09 15:13:56 [Server] main/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.entity.player.EntityPlayer
417007.09 15:13:56 [Server] main/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.entity.player.EntityPlayer
417107.09 15:13:57 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_70071_h_', 'onUpdate' with '()V'
417207.09 15:13:57 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase
417307.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming vp : net.minecraft.entity.EntityLivingBase with 4 patches!
417407.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHAPPLYPOTIONEFFECTEVENT
417507.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHENTITYLIVINGBASEWATERSLOWDOWN
417607.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSETPLAYERATTRIBUTE
417707.09 15:13:58 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHUPDATEELYTRA
417807.09 15:13:58 [Server] main/INFO [Apotheosis : Core]: Transforming EntityLivingBase...
417907.09 15:13:58 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EntityLivingBase
418007.09 15:13:58 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_191986_a', 'travel' with '(FFF)V'
418107.09 15:13:59 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.Entity ...
418207.09 15:14:00 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.Entity
418307.09 15:14:00 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [move, func_70091_d] Descriptor (Lnet/minecraft/entity/MoverType;DDD)V)
418407.09 15:14:00 [Server] main/INFO [Quark ASM]: Located Method, patching...
418507.09 15:14:00 [Server] main/INFO [Quark ASM]: Patch result: true
418607.09 15:14:00 [Server] main/INFO [Quark ASM]: Located Method, patching...
418707.09 15:14:00 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/Entity.func_145775_I ()V
418807.09 15:14:00 [Server] main/INFO [Quark ASM]: Patch result: true
418907.09 15:14:00 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [onEntityUpdate, func_70030_z] Descriptor ()V)
419007.09 15:14:00 [Server] main/INFO [Quark ASM]: Located Method, patching...
419107.09 15:14:00 [Server] main/INFO [Quark ASM]: Patch result: true
419207.09 15:14:00 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_70091_d', 'move' with '(Lnet/minecraft/entity/MoverType;DDD)V'
419307.09 15:14:01 [Server] main/INFO [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
419407.09 15:14:02 [Server] main/INFO [BetterFps]: Patching net.minecraft.block.Block... (aow)
419507.09 15:14:03 [Server] main/INFO [STDOUT]: [team.chisel.ctm.client.asm.CTMTransformer:preTransform:230]: Transforming Class [net.minecraft.block.Block], Method [getExtendedState]
419607.09 15:14:03 [Server] main/INFO [STDOUT]: [team.chisel.ctm.client.asm.CTMTransformer:finishTransform:242]: Transforming net.minecraft.block.Block Finished.
419707.09 15:14:04 [Server] main/INFO [Apotheosis : Core]: Transforming Item...
419807.09 15:14:04 [Server] main/INFO [Apotheosis : Core]: Successfully transformed Item
419907.09 15:14:05 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.enchantment.Enchantment
420007.09 15:14:05 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [canApply, func_92089_a] Descriptor (Lnet/minecraft/item/ItemStack;)Z)
420107.09 15:14:05 [Server] main/INFO [Quark ASM]: Located Method, patching...
420207.09 15:14:05 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
420307.09 15:14:05 [Server] main/INFO [Quark ASM]: Patch result: true
420407.09 15:14:06 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.item.EntityItem
420507.09 15:14:06 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [onUpdate, func_70071_h_] Descriptor ()V)
420607.09 15:14:06 [Server] main/INFO [Quark ASM]: Located Method, patching...
420707.09 15:14:06 [Server] main/INFO [Quark ASM]: Patch result: true
420807.09 15:14:07 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.util.math.AxisAlignedBB ...
420907.09 15:14:08 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.state.BlockStateContainer.createState
421007.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.equals
421107.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.hashCode
421207.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode
421307.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode_calced
421407.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyInteger.hashCode
421507.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode
421607.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode_calced
421707.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.equals
421807.09 15:14:09 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.hashCode
421907.09 15:14:09 [Server] main/INFO [BetterFps]: Patching math utils with "RIVENS_HALF" algorithm
422007.09 15:14:10 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming aip : net.minecraft.item.ItemStack with 2 patches!
422107.09 15:14:10 [Server] main/INFO [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIP as it can't be applied for side SERVER
422207.09 15:14:10 [Server] main/INFO [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIPEVENT as it can't be applied for side SERVER
422307.09 15:14:10 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.item.ItemStack
422407.09 15:14:10 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [getTextComponent, func_151000_E] Descriptor ()Lnet/minecraft/util/text/ITextComponent;)
422507.09 15:14:10 [Server] main/INFO [Quark ASM]: Located Method, patching...
422607.09 15:14:10 [Server] main/INFO [Quark ASM]: Located patch target node ARETURN
422707.09 15:14:10 [Server] main/INFO [Quark ASM]: Patch result: true
422807.09 15:14:10 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.block.BlockDynamicLiquid
422907.09 15:14:10 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [isBlocked, func_176372_g] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)Z)
423007.09 15:14:10 [Server] main/INFO [Quark ASM]: Located Method, patching...
423107.09 15:14:10 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
423207.09 15:14:10 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
423307.09 15:14:10 [Server] main/INFO [Quark ASM]: Patch result: true
423407.09 15:14:10 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a
423507.09 15:14:11 [Server] main/INFO [Apotheosis : Core]: Transforming BlockBed...
423607.09 15:14:11 [Server] main/INFO [Apotheosis : Core]: Successfully transformed BlockBed
423707.09 15:14:11 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.block.BlockBed.func_189540_a
423807.09 15:14:11 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.block.BlockPistonBase
423907.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [canPush, func_185646_a] Descriptor (Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;ZLnet/minecraft/util/EnumFacing;)Z)
424007.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
424107.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/block/Block.hasTileEntity (Lnet/minecraft/block/state/IBlockState;)Z
424207.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
424307.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [doMove, func_176319_a] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)Z)
424407.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
424507.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/block/state/BlockPistonStructureHelper.func_177254_c ()Ljava/util/List;
424607.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
424707.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [doMove, func_176319_a] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)Z)
424807.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
424907.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKESPECIAL net/minecraft/block/state/BlockPistonStructureHelper.<init> (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)V
425007.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
425107.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [checkForMove, func_176316_e] Descriptor (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V)
425207.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
425307.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKESPECIAL net/minecraft/block/state/BlockPistonStructureHelper.<init> (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)V
425407.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
425507.09 15:14:11 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.tileentity.TileEntityPiston
425607.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V)
425707.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
425807.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
425907.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [clearPistonTileEntity, func_145866_f] Descriptor ()V)
426007.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
426107.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/world/World.func_180501_a (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)Z
426207.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
426307.09 15:14:11 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V)
426407.09 15:14:11 [Server] main/INFO [Quark ASM]: Located Method, patching...
426507.09 15:14:11 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/world/World.func_180501_a (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)Z
426607.09 15:14:11 [Server] main/INFO [Quark ASM]: Patch result: true
426707.09 15:14:11 [Server] main/ERROR [randompatches]: Failed to transform class: net.minecraft.tileentity.TileEntityPiston
426807.09 15:14:11 [Server] INFO java.lang.NullPointerException: null
426907.09 15:14:11 [Server] INFO at org.objectweb.asm.tree.InsnList.insert(Unknown Source) ~[asm-all-5.2.jar:5.2]
427007.09 15:14:11 [Server] INFO at com.therandomlabs.randompatches.patch.TileEntityPistonPatch.patchUpdateSignalFix(TileEntityPistonPatch.java:121) ~[TileEntityPistonPatch.class:?]
427107.09 15:14:11 [Server] INFO at com.therandomlabs.randompatches.patch.TileEntityPistonPatch.apply(TileEntityPistonPatch.java:30) ~[TileEntityPistonPatch.class:?]
427207.09 15:14:11 [Server] INFO at com.therandomlabs.randompatches.core.RPTransformer.transform(RPTransformer.java:37) [randompatches-1.12.2-1.22.1.2.jar:?]
427307.09 15:14:11 [Server] INFO at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:256) [ASMTransformerWrapper$TransformerWrapper.class:?]
427407.09 15:14:11 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279) [launchwrapper-1.12.jar:?]
427507.09 15:14:11 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176) [launchwrapper-1.12.jar:?]
427607.09 15:14:11 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:424) [?:1.8.0_211]
427707.09 15:14:11 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:357) [?:1.8.0_211]
427807.09 15:14:11 [Server] INFO at net.minecraft.block.Block.registerBlocks(Block.java:2378) [aow.class:?]
427907.09 15:14:11 [Server] INFO at net.minecraft.init.Bootstrap.register(Bootstrap.java:498) [ni.class:?]
428007.09 15:14:11 [Server] INFO at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:1470) [MinecraftServer.class:?]
428107.09 15:14:11 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
428207.09 15:14:11 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
428307.09 15:14:11 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
428407.09 15:14:11 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
428507.09 15:14:11 [Server] INFO at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
428607.09 15:14:11 [Server] INFO at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
428707.09 15:14:11 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
428807.09 15:14:11 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
428907.09 15:14:11 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
429007.09 15:14:11 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
429107.09 15:14:11 [Server] INFO at net.minecraftforge.fml.relauncher.ServerLaunchWrapper.run(ServerLaunchWrapper.java:70) [forge-1.12.2-14.23.5.2847-universal.jar:?]
429207.09 15:14:11 [Server] INFO at net.minecraftforge.fml.relauncher.ServerLaunchWrapper.main(ServerLaunchWrapper.java:34) [forge-1.12.2-14.23.5.2847-universal.jar:?]
429307.09 15:14:16 [Server] main/INFO [OpenComputers]: Successfully patched net/minecraft/entity/EntityLiving.recreateLeash.
429407.09 15:14:19 [Server] main/INFO [BetterFps]: Patching net.minecraft.tileentity.TileEntityBeacon... (avh)
429507.09 15:14:20 [Server] main/INFO [BetterFps]: Patching net.minecraft.block.BlockHopper... (arl)
429607.09 15:14:20 [Server] main/INFO [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:73]: Replaced NEW for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper
429707.09 15:14:20 [Server] main/INFO [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:85]: Replaced INVOKESPECIAL for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper
429807.09 15:14:20 [Server] main/INFO [BetterFps]: Patching net.minecraft.tileentity.TileEntityHopper... (avw)
429907.09 15:14:22 [Server] main/INFO [Apotheosis : Core]: Transforming SharedMonsterAttributes...
430007.09 15:14:22 [Server] main/INFO [Apotheosis : Core]: Successfully transformed SharedMonsterAttributes
430107.09 15:14:22 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.enchantment.EnchantmentDamage
430207.09 15:14:22 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [canApply, func_92089_a] Descriptor (Lnet/minecraft/item/ItemStack;)Z)
430307.09 15:14:22 [Server] main/INFO [Quark ASM]: Located Method, patching...
430407.09 15:14:22 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
430507.09 15:14:22 [Server] main/INFO [Quark ASM]: Located patch target node IRETURN
430607.09 15:14:22 [Server] main/INFO [Quark ASM]: Patch result: true
430707.09 15:14:24 [Server] main/INFO [Apotheosis : Core]: Transforming ItemArrow...
430807.09 15:14:24 [Server] main/INFO [Apotheosis : Core]: Successfully transformed ItemArrow
430907.09 15:14:24 [Server] main/INFO [EnderCore ASM]: Transforming Class [net.minecraft.entity.item.EntityItemFrame], Method [func_184230_a]
431007.09 15:14:24 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.entity.item.EntityItemFrame Finished.
431107.09 15:14:24 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.item.EntityMinecart
431207.09 15:14:24 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [killMinecart, func_94095_a] Descriptor (Lnet/minecraft/util/DamageSource;)V)
431307.09 15:14:24 [Server] main/INFO [Quark ASM]: Located Method, patching...
431407.09 15:14:24 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/item/EntityMinecart.func_70099_a (Lnet/minecraft/item/ItemStack;F)Lnet/minecraft/entity/item/EntityItem;
431507.09 15:14:24 [Server] main/INFO [Quark ASM]: Patch result: true
431607.09 15:14:24 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.item.EntityBoat
431707.09 15:14:24 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [attackEntityFrom, func_70097_a] Descriptor (Lnet/minecraft/util/DamageSource;F)Z)
431807.09 15:14:24 [Server] main/INFO [Quark ASM]: Located Method, patching...
431907.09 15:14:24 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/entity/item/EntityBoat.func_145778_a (Lnet/minecraft/item/Item;IF)Lnet/minecraft/entity/item/EntityItem;
432007.09 15:14:24 [Server] main/INFO [Quark ASM]: Patch result: true
432107.09 15:14:25 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.player.EntityPlayerMP ...
432207.09 15:14:25 [Server] main/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.entity.player.EntityPlayer ...
432307.09 15:14:25 [Server] main/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.entity.player.EntityPlayer
432407.09 15:14:25 [Server] main/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.entity.player.EntityPlayer
432507.09 15:14:25 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_70071_h_', 'onUpdate' with '()V'
432607.09 15:14:25 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.entity.player.EntityPlayer finished, added func_184613_cA() overriding EntityLivingBase
432707.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming vp : net.minecraft.entity.EntityLivingBase with 4 patches!
432807.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHAPPLYPOTIONEFFECTEVENT
432907.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHENTITYLIVINGBASEWATERSLOWDOWN
433007.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSETPLAYERATTRIBUTE
433107.09 15:14:25 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHUPDATEELYTRA
433207.09 15:14:25 [Server] main/INFO [Apotheosis : Core]: Transforming EntityLivingBase...
433307.09 15:14:25 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EntityLivingBase
433407.09 15:14:25 [Server] main/INFO [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:35]: [wizardry ASM] Successfully patched -> 'func_191986_a', 'travel' with '(FFF)V'
433507.09 15:14:26 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.util.DamageSource
433607.09 15:14:26 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [causePlayerDamage, func_76365_a] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;)Lnet/minecraft/util/DamageSource;)
433707.09 15:14:26 [Server] main/INFO [Quark ASM]: Located Method, patching...
433807.09 15:14:26 [Server] main/INFO [Quark ASM]: Patch result: true
433907.09 15:14:26 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.world.WorldServer
434007.09 15:14:26 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [areAllPlayersAsleep, func_73056_e] Descriptor ()Z)
434107.09 15:14:26 [Server] main/INFO [Quark ASM]: Located Method, patching...
434207.09 15:14:26 [Server] main/INFO [Quark ASM]: Patch result: true
434307.09 15:14:26 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [wakeAllPlayers, func_73053_d] Descriptor ()V)
434407.09 15:14:26 [Server] main/INFO [Quark ASM]: Located Method, patching...
434507.09 15:14:26 [Server] main/INFO [Quark ASM]: Patch result: true
434607.09 15:14:27 [Server] main/INFO [Apotheosis : Core]: Transforming PotionEffect...
434707.09 15:14:27 [Server] main/INFO [Apotheosis : Core]: Successfully transformed PotionEffect
434807.09 15:14:27 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.item.ItemBanner
434907.09 15:14:27 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [appendHoverTextFromTileEntityTag, func_185054_a] Descriptor (Lnet/minecraft/item/ItemStack;Ljava/util/List;)V)
435007.09 15:14:28 [Server] main/INFO [Quark ASM]: Failed to locate the method!
435107.09 15:14:30 [Server] main/INFO [Astral Core]: [AstralTransformer] Transforming wg : net.minecraft.entity.ai.attributes.AbstractAttributeMap with 1 patches!
435207.09 15:14:30 [Server] main/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHADDPLAYERATTRIBUTE
435307.09 15:14:31 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.entity.ai.EntityAITarget
435407.09 15:14:31 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [isSuitableTarget, func_179445_a] Descriptor (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/entity/EntityLivingBase;ZZ)Z)
435507.09 15:14:31 [Server] main/INFO [Quark ASM]: Located Method, patching...
435607.09 15:14:31 [Server] main/INFO [Quark ASM]: Patch result: true
435707.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:98]: Added INTERFACE: pl/asie/foamfix/api/IFoamFixMobSpawnerLogic
435807.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:111]: Spliced in METHOD: net.minecraft.tileentity.MobSpawnerBaseLogic.func_98279_f
435907.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCache
436007.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCachePESize
436107.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_activatedCacheTime
436207.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCache
436307.09 15:14:36 [Server] main/INFO [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:158]: Added FIELD: net.minecraft.tileentity.MobSpawnerBaseLogic.foamfix_forcedCacheTime
436407.09 15:14:36 [Server] main/INFO [EnderCore ASM]: Transforming Class [net.minecraft.entity.ai.EntityAICreeperSwell], Method [func_75246_d]
436507.09 15:14:36 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.entity.ai.EntityAICreeperSwell Finished.
436607.09 15:14:37 [Server] main/INFO [Apotheosis : Core]: Transforming EntityAITempt...
436707.09 15:14:37 [Server] main/INFO [Apotheosis : Core]: Successfully transformed EntityAITempt
436807.09 15:14:42 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern
436907.09 15:14:42 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [matches, func_77569_a] Descriptor (Lnet/minecraft/inventory/InventoryCrafting;Lnet/minecraft/world/World;)Z)
437007.09 15:14:42 [Server] main/INFO [Quark ASM]: Located Method, patching...
437107.09 15:14:42 [Server] main/INFO [Quark ASM]: Located patch target node INVOKESTATIC net/minecraft/tileentity/TileEntityBanner.func_175113_c (Lnet/minecraft/item/ItemStack;)I
437207.09 15:14:42 [Server] main/INFO [Quark ASM]: Patch result: true
437307.09 15:14:46 [Server] main/INFO [BetterFps]: Patching net.minecraft.server.dedicated.DedicatedServer... (nz)
437407.09 15:14:47 [Server] main/INFO [Quark ASM]: Transforming net.minecraft.inventory.ContainerMerchant
437507.09 15:14:47 [Server] main/INFO [Quark ASM]: Applying Transformation to method (Names [transferStackInSlot, func_82846_b] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;I)Lnet/minecraft/item/ItemStack;)
437607.09 15:14:47 [Server] main/INFO [Quark ASM]: Located Method, patching...
437707.09 15:14:47 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
437807.09 15:14:47 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
437907.09 15:14:47 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
438007.09 15:14:47 [Server] main/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerMerchant.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
438107.09 15:14:47 [Server] main/INFO [Quark ASM]: Patch result: true
438207.09 15:14:48 [Server] main/INFO [EnderCore ASM]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b]
438307.09 15:14:48 [Server] main/INFO [EnderCore ASM]: Transforming net.minecraft.inventory.ContainerFurnace Finished.
438407.09 15:14:48 [Server] main/INFO [Apotheosis : Core]: Transforming TileEntityMobSpawner$2...
438507.09 15:14:48 [Server] main/INFO [Apotheosis : Core]: Successfully transformed TileEntityMobSpawner$2
438607.09 15:14:51 [Server] Server thread/INFO [minecraft/DedicatedServer]: Starting minecraft server version 1.12.2
438707.09 15:14:51 [Server] Server thread/INFO [FML]: MinecraftForge v14.23.5.2847 Initialized
438807.09 15:14:51 [Server] Server thread/INFO [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
438907.09 15:14:53 [Server] Server thread/INFO [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient...
439007.09 15:14:56 [Server] Server thread/INFO [FML]: Replaced 1227 ore ingredients
439107.09 15:14:56 [Server] Server thread/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraftforge.common.ForgeHooks ...
439207.09 15:14:57 [Server] Server thread/INFO [STDOUT]: [zmaster587.advancedRocketry.asm.ModContainer:<init>:23]: ********* CoreDummyContainer. OK
439307.09 15:14:58 [Server] Server thread/INFO [FML]: Searching /./mods for mods
439407.09 15:14:58 [Server] Server thread/INFO [FML]: Searching /./mods/1.12.2 for mods
439507.09 15:15:06 [Server] Server thread/INFO [FML]: Disabling mod betteradvancements it is client side only.
439607.09 15:15:10 [Server] Server thread/INFO [FML]: Disabling mod cleanview it is client side only.
439707.09 15:15:10 [Server] 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
439807.09 15:15:12 [Server] Server thread/INFO [FML]: Disabling mod controlling it is client side only.
439907.09 15:15:12 [Server] Server thread/WARN [FML]: Mod cookingforblockheads is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 6.5.0
440007.09 15:15:12 [Server] Server thread/WARN [FML]: Mod cosmeticarmorreworked is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-v5a
440107.09 15:15:12 [Server] Server thread/INFO [FML]: Disabling mod ctgui it is client side only.
440207.09 15:15:13 [Server] Server thread/INFO [FML]: Disabling mod ctm it is client side only.
440307.09 15:15:13 [Server] Server thread/INFO [FML]: Disabling mod custommainmenu it is client side only.
440407.09 15:15:13 [Server] Server thread/WARN [FML]: Mod cyclicmagic is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.20.3
440507.09 15:15:14 [Server] Server thread/INFO [FML]: Disabling mod discord it is client side only.
440607.09 15:15:15 [Server] Server thread/WARN [FML]: Mod emberroot is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.3.9
440707.09 15:15:18 [Server] Server thread/WARN [FML]: Mod enderstorage is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.4.6.137
440807.09 15:15:36 [Server] 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
440907.09 15:15:36 [Server] 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
441007.09 15:15:36 [Server] 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
441107.09 15:15:36 [Server] Server thread/WARN [FML]: Mod gregtech is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.10.0.546
441207.09 15:15:36 [Server] 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
441307.09 15:15:36 [Server] Server thread/INFO [FML]: Disabling mod jeiintegration it is client side only.
441407.09 15:15:36 [Server] Server thread/INFO [FML]: Disabling mod jehc it is client side only.
441507.09 15:15:39 [Server] Server thread/WARN [FML]: Mod logisticspipes is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 0.10.3.62
441607.09 15:15:39 [Server] Server thread/INFO [FML]: Disabling mod mainmenuscale it is client side only.
441707.09 15:15:40 [Server] Server thread/INFO [FML]: Disabling mod modnametooltip it is client side only.
441807.09 15:15:40 [Server] Server thread/WARN [FML]: Mod modulardiversity is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.5
441907.09 15:15:40 [Server] Server thread/INFO [FML]: Disabling mod moreoverlays it is client side only.
442007.09 15:15:40 [Server] Server thread/INFO [FML]: Disabling mod mousetweaks it is client side only.
442107.09 15:15:43 [Server] 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-21
442207.09 15:15:44 [Server] Server thread/INFO [FML]: Disabling mod resourceloader it is client side only.
442307.09 15:15:45 [Server] Server thread/WARN [FML]: Mod tcinventoryscan is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.0.10
442407.09 15:15:45 [Server] Server thread/INFO [FML]: Disabling mod thaumicjei it is client side only.
442507.09 15:15:46 [Server] Server thread/INFO [FML]: Disabling mod tips it is client side only.
442607.09 15:15:46 [Server] Server thread/INFO [FML]: Disabling mod toastcontrol it is client side only.
442707.09 15:15:46 [Server] Server thread/WARN [FML]: Mod translocators is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.5.2.81
442807.09 15:15:46 [Server] 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-150
442907.09 15:15:46 [Server] Server thread/WARN [FML]: Mod voidislandcontrol is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.5.3
443007.09 15:15:46 [Server] Server thread/WARN [FML]: Mod rf-capability-adapter is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.0
443107.09 15:15:46 [Server] Server thread/INFO [FML]: Disabling mod reauth it is client side only.
443207.09 15:15:46 [Server] Server thread/INFO [FML]: Forge Mod Loader has identified 244 mods to load
443307.09 15:15:47 [Server] Server thread/INFO [FML]: Found mod(s) [wct] containing declared API package yalter.mousetweaks.api (owned by mousetweaks) without associated API reference
443407.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang
443507.09 15:15:47 [Server] Server thread/INFO [STDOUT]: [zmaster587.advancedRocketry.asm.ModContainer:registerBus:42]: ********* registerBus. OK
443607.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for actuallybaubles: assets/actuallybaubles/lang/en_us.lang
443707.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for aiimprovements: assets/aiimprovements/lang/en_us.lang
443807.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for appleskin: assets/appleskin/lang/en_us.lang
443907.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for armoreablemobs: assets/armoreablemobs/lang/en_us.lang
444007.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for batterybufferdriver: assets/batterybufferdriver/lang/en_us.lang
444107.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for biggerpacketsplz: assets/biggerpacketsplz/lang/en_us.lang
444207.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for clumps: assets/clumps/lang/en_us.lang
444307.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for codechickenlib: assets/codechickenlib/lang/en_us.lang
444407.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for cofhcore: assets/cofhcore/lang/en_us.lang
444507.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for contenttweaker: assets/contenttweaker/lang/en_us.lang
444607.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for crafttweaker: assets/crafttweaker/lang/en_us.lang
444707.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for crafttweakerjei: assets/crafttweakerjei/lang/en_us.lang
444807.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for diethopper: assets/diethopper/lang/en_us.lang
444907.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for dldungeonsjbg: assets/dldungeonsjbg/lang/en_us.lang
445007.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for dropt: assets/dropt/lang/en_us.lang
445107.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for dupefixproject: assets/dupefixproject/lang/en_us.lang
445207.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for enderiobase: assets/enderiobase/lang/en_us.lang
445307.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for enderioconduits: assets/enderioconduits/lang/en_us.lang
445407.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for enderiopowertools: assets/enderiopowertools/lang/en_us.lang
445507.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for enderioconduitsappliedenergistics: assets/enderioconduitsappliedenergistics/lang/en_us.lang
445607.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for enderioendergy: assets/enderioendergy/lang/en_us.lang
445707.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for enderiointegrationtic: assets/enderiointegrationtic/lang/en_us.lang
445807.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for enderiointegrationticlate: assets/enderiointegrationticlate/lang/en_us.lang
445907.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for enderiomachines: assets/enderiomachines/lang/en_us.lang
446007.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for fastbench: assets/fastbench/lang/en_us.lang
446107.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for foamfix: assets/foamfix/lang/en_us.lang
446207.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for forgelin: assets/forgelin/lang/en_us.lang
446307.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for microblockcbe: assets/microblockcbe/lang/en_us.lang
446407.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for forgemultipartcbe: assets/forgemultipartcbe/lang/en_us.lang
446507.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for minecraftmultipartcbe: assets/minecraftmultipartcbe/lang/en_us.lang
446607.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for fvw: assets/fvw/lang/en_us.lang
446707.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for gtce2oc: assets/gtce2oc/lang/en_us.lang
446807.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for gunpowderlib: assets/gunpowderlib/lang/en_us.lang
446907.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for hardcoredarkness: assets/hardcoredarkness/lang/en_us.lang
447007.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for incontrol: assets/incontrol/lang/en_us.lang
447107.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for initialinventory: assets/initialinventory/lang/en_us.lang
447207.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for insomniac: assets/insomniac/lang/en_us.lang
447307.09 15:15:47 [Server] Server thread/WARN [FML]: Missing English translation for integratedtunnelscompat: assets/integratedtunnelscompat/lang/en_us.lang
447407.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for itlt: assets/itlt/lang/en_us.lang
447507.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for letsencryptcraft: assets/letsencryptcraft/lang/en_us.lang
447607.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for librarianliblate: assets/librarianliblate/lang/en_us.lang
447707.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for mantle: assets/mantle/lang/en_us.lang
447807.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for mcjtylib_ng: assets/mcjtylib_ng/lang/en_us.lang
447907.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for mcmultipart: assets/mcmultipart/lang/en_us.lang
448007.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for minetogether: assets/minetogether/lang/en_us.lang
448107.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for mobstages: assets/mobstages/lang/en_us.lang
448207.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for modtweaker: assets/modtweaker/lang/en_us.lang
448307.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for mtlib: assets/mtlib/lang/en_us.lang
448407.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for placebo: assets/placebo/lang/en_us.lang
448507.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for redstoneflux: assets/redstoneflux/lang/en_us.lang
448607.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for scavenge: assets/scavenge/lang/en_us.lang
448707.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for sqpatch: assets/sqpatch/lang/en_us.lang
448807.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for stg: assets/stg/lang/en_us.lang
448907.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for sasit: assets/sasit/lang/en_us.lang
449007.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for terracore: assets/terracore/lang/en_us.lang
449107.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for teslacorelib_registries: assets/teslacorelib_registries/lang/en_us.lang
449207.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for tinkersextras: assets/tinkersextras/lang/en_us.lang
449307.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for tinkerstages: assets/tinkerstages/lang/en_us.lang
449407.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for togetherforever: assets/togetherforever/lang/en_us.lang
449507.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for tombmanygraves2api: assets/tombmanygraves2api/lang/en_us.lang
449607.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for tombmanypluginscosmeticarmorreworked: assets/tombmanypluginscosmeticarmorreworked/lang/en_us.lang
449707.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for vtb: assets/vtb/lang/en_us.lang
449807.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for watercontrolextreme: assets/watercontrolextreme/lang/en_us.lang
449907.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for 113_water_mechanics: assets/113_water_mechanics/lang/en_us.lang
450007.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for whoops: assets/whoops/lang/en_us.lang
450107.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for xaerominimap: assets/xaerominimap/lang/en_us.lang
450207.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for zentriggers: assets/zentriggers/lang/en_us.lang
450307.09 15:15:48 [Server] Server thread/WARN [FML]: Missing English translation for phosphor-lighting: assets/phosphor-lighting/lang/en_us.lang
450407.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file BetterAdvancements-1.12.2-0.1.0.77.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
450507.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file CleanView-1.12.2-v1c.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
450607.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file Controlling-3.0.10.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
450707.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file CTM-MC1.12.2-1.0.2.31.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
450807.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file CustomMainMenu-MC1.12.2-2.0.9.1.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
450907.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file Discord-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.
451007.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file discord-rpc-release-v3.3.0.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
451107.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file java-discord-rpc-2.0.1.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
451207.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file jeiintegration_1.12.2-1.5.1.36.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
451307.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file jna-4.4.0.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
451407.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file just-enough-harvestcraft-1.12.2-1.7.1.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
451507.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file MainMenuScale-1.3.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.
451607.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file modnametooltip_1.12.2-1.10.1.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
451707.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file moreoverlays-1.15.1-mc1.12.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.
451807.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file MouseTweaks-2.10-mc1.12.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.
451907.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file ResourceLoader-MC1.12.1-1.5.3.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
452007.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file ThaumicJEI-1.12.2-1.6.0-27.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
452107.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file Tips-1.12.2-1.0.9.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
452207.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file Toast Control-1.12.2-1.8.1.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
452307.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file reauth-3.6.0.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
452407.09 15:15:48 [Server] Server thread/INFO [FML]: FML has found a non-mod file mcjtytools-0.0.21.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
452507.09 15:15:48 [Server] 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.
452607.09 15:15:48 [Server] 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.
452707.09 15:16:00 [Server] Server thread/INFO [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, advancedrocketrycore, creativecoredummy, littletilescore, xaerominimap_core, xaeroworldmap_core, openmodscore, bnbgamingcore, foamfixcore, opencomputers|core, botania_tweaks_core, randompatches, netherbackport, actuallyadditions, actuallybaubles, advancedrocketry, aenetvistool, ae2wtlib, aiimprovements, animus, apotheosis, applecore, appleskin, appliedenergistics2, architecturecraft, armoreablemobs, artemislib, artisanworktables, astralsorcery, athenaeum, autoreglib, avaritia, backportedflora, base, batterybufferdriver, baubles, bhc, biggerpacketsplz, bloodmagic, bnbgaminglib, bookshelf, botania, botania_tweaks, brandonscore, buildinggadgets, ceramics, ceu, chickens, chisel, clumps, codechickenlib, cofhcore, cofhworld, commoncapabilities, compactmachines3, contenttweaker, cookingforblockheads, cosmeticarmorreworked, crafttweaker, crafttweakerjei, creativecore, cryingobsidian, cucumber, cyberware, cyclicmagic, cyclopscore, dmonsters, deepmoblearning, deepmoblearningbm, diethopper, dimensionalcontrol, dimstages, dldungeonsjbg, draconicevolution, dropt, dupefixproject, emberroot, endercore, enderio, enderiobase, enderioconduits, enderiopowertools, enderioconduitsappliedenergistics, enderioendergy, enderiointegrationtic, enderiointegrationticlate, enderiomachines, enderstorage, enderutilities, extrautils2, fastbench, floralchemy, fluxnetworks, foamfix, forgelin, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, ftbbackups, ftblib, ftbquests, ftbutilities, funkylocomotion, fvw, gamestages, gregtech, gtce2oc, guideapi, gunpowderlib, hardcoredarkness, hitwithaxe, hotornot, hungeroverhaul, iceandfire, ichunutil, incontrol, industrialforegoing, initialinventory, insomniac, integrateddynamics, integrateddynamicscompat, integratedtunnels, integratedtunnelscompat, integrationforegoing, inventorytweaks, ironchest, itemfilters, itlt, jei, justenoughdimensions, jee, knowledgeshare, lcrdrfs, threng, letsencryptcraft, libnine, librarianliblate, librarianlib, libvulpes, littletiles, logisticsbridge, logisticspipes, loottweaker, mantle, mcjtylib_ng, mcmultipart, mekanism, mightyenderchicken, minetogether, minetogetherserver, mobstages, modtweaker, modulardiversity, modularmachinery, morechickens, mtlib, multiblocktweaker, naturescompass, openblocks, opencomputers, openmods, p455w0rdslib, harvestcraft, patchouli, pickletweaks, placebo, plants2, plustic, portalgun, primal_tech, projecte, quark, randomthings, randomtweaks, reborncore, redstonearsenal, redstoneflux, xreliquary, resize, rftools, roughmobsrevamped, roughtweaks, rusticthaumaturgy, rustic, scannable, scavenge, gtadditions, lteleporters, simple_trophies, simplylight, sledgehammer, sonarcore, spiceoflife, sqpatch, stats_keeper, stg, sasit, superfactorymanager, tconstruct, terracore, teslacorelib, teslacorelib_registries, thaumcraft, thaumicenergistics, tcinventoryscan, thaumicperiphery, theoneprobe, thermaldynamics, thermalexpansion, thermalfoundation, thermalinnovation, tcomplement, tinkersextras, tinkerstages, togetherforever, tombmanygraves, tombmanygraves2api, tombmanypluginscosmeticarmorreworked, topaddons, translocators, traverse, vanillafix, vtb, voidislandcontrol, volumetricflask, watercontrolextreme, 113_water_mechanics, waterstrainer, weirdinggadget, whoops, wct, wizardry, xaerominimap, xaeroworldmap, xtones, zentriggers, zenstages, gbook, phosphor-lighting, rf-capability-adapter, llibrary] at CLIENT
452807.09 15:16:00 [Server] Server thread/INFO [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, advancedrocketrycore, creativecoredummy, littletilescore, xaerominimap_core, xaeroworldmap_core, openmodscore, bnbgamingcore, foamfixcore, opencomputers|core, botania_tweaks_core, randompatches, netherbackport, actuallyadditions, actuallybaubles, advancedrocketry, aenetvistool, ae2wtlib, aiimprovements, animus, apotheosis, applecore, appleskin, appliedenergistics2, architecturecraft, armoreablemobs, artemislib, artisanworktables, astralsorcery, athenaeum, autoreglib, avaritia, backportedflora, base, batterybufferdriver, baubles, bhc, biggerpacketsplz, bloodmagic, bnbgaminglib, bookshelf, botania, botania_tweaks, brandonscore, buildinggadgets, ceramics, ceu, chickens, chisel, clumps, codechickenlib, cofhcore, cofhworld, commoncapabilities, compactmachines3, contenttweaker, cookingforblockheads, cosmeticarmorreworked, crafttweaker, crafttweakerjei, creativecore, cryingobsidian, cucumber, cyberware, cyclicmagic, cyclopscore, dmonsters, deepmoblearning, deepmoblearningbm, diethopper, dimensionalcontrol, dimstages, dldungeonsjbg, draconicevolution, dropt, dupefixproject, emberroot, endercore, enderio, enderiobase, enderioconduits, enderiopowertools, enderioconduitsappliedenergistics, enderioendergy, enderiointegrationtic, enderiointegrationticlate, enderiomachines, enderstorage, enderutilities, extrautils2, fastbench, floralchemy, fluxnetworks, foamfix, forgelin, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, ftbbackups, ftblib, ftbquests, ftbutilities, funkylocomotion, fvw, gamestages, gregtech, gtce2oc, guideapi, gunpowderlib, hardcoredarkness, hitwithaxe, hotornot, hungeroverhaul, iceandfire, ichunutil, incontrol, industrialforegoing, initialinventory, insomniac, integrateddynamics, integrateddynamicscompat, integratedtunnels, integratedtunnelscompat, integrationforegoing, inventorytweaks, ironchest, itemfilters, itlt, jei, justenoughdimensions, jee, knowledgeshare, lcrdrfs, threng, letsencryptcraft, libnine, librarianliblate, librarianlib, libvulpes, littletiles, logisticsbridge, logisticspipes, loottweaker, mantle, mcjtylib_ng, mcmultipart, mekanism, mightyenderchicken, minetogether, minetogetherserver, mobstages, modtweaker, modulardiversity, modularmachinery, morechickens, mtlib, multiblocktweaker, naturescompass, openblocks, opencomputers, openmods, p455w0rdslib, harvestcraft, patchouli, pickletweaks, placebo, plants2, plustic, portalgun, primal_tech, projecte, quark, randomthings, randomtweaks, reborncore, redstonearsenal, redstoneflux, xreliquary, resize, rftools, roughmobsrevamped, roughtweaks, rusticthaumaturgy, rustic, scannable, scavenge, gtadditions, lteleporters, simple_trophies, simplylight, sledgehammer, sonarcore, spiceoflife, sqpatch, stats_keeper, stg, sasit, superfactorymanager, tconstruct, terracore, teslacorelib, teslacorelib_registries, thaumcraft, thaumicenergistics, tcinventoryscan, thaumicperiphery, theoneprobe, thermaldynamics, thermalexpansion, thermalfoundation, thermalinnovation, tcomplement, tinkersextras, tinkerstages, togetherforever, tombmanygraves, tombmanygraves2api, tombmanypluginscosmeticarmorreworked, topaddons, translocators, traverse, vanillafix, vtb, voidislandcontrol, volumetricflask, watercontrolextreme, 113_water_mechanics, waterstrainer, weirdinggadget, whoops, wct, wizardry, xaerominimap, xaeroworldmap, xtones, zentriggers, zenstages, gbook, phosphor-lighting, rf-capability-adapter, llibrary] at SERVER
452907.09 15:16:00 [Server] Server thread/INFO [biggerpacketsplz.ClassTransformer]: Transforming class 'gy', alias 'net.minecraft.network.PacketBuffer'
453007.09 15:16:00 [Server] Server thread/INFO [biggerpacketsplz.ClassTransformer]: Scanning method 'j()Lfy;'
453107.09 15:16:00 [Server] Server thread/INFO [biggerpacketsplz.ClassTransformer]: Patching constant (java.lang.Long) 2097152
453207.09 15:16:00 [Server] Server thread/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.network.PacketBuffer ...
453307.09 15:16:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `actuallyadditions` for name `magnet_ring_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.
453407.09 15:16:03 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `actuallyadditions` for name `potion_ring_advanced_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.
453507.09 15:16:03 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.
453607.09 15:16:03 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_double_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.
453707.09 15:16:03 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_triple_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.
453807.09 15:16:03 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_quadruple_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.
453907.09 15:16:03 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `actuallyadditions` for name `battery_quintuple_bauble`, expected `actuallybaubles`. This could be a intended override, but in most cases indicates a broken mod.
454007.09 15:16:03 [Server] Server thread/ERROR [FML]: The mod redstoneflux is expecting signature 8a6abf2cb9e141b866580d369ba6548732eff25f for source RedstoneFlux-1.12-2.1.1.1-universal.jar, however there is no signature matching that description
454107.09 15:16:05 [Server] Server thread/INFO [STDOUT]: [com.creativemd.creativecore.transformer.CreativeTransformer:transform:49]: [littletiles] Patched net.minecraft.network.NetHandlerPlayServer ...
454207.09 15:16:05 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Transforming pa : net.minecraft.network.NetHandlerPlayServer with 1 patches!
454307.09 15:16:05 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHSERVEREXTENDENTITYINTERACTREACH
454407.09 15:16:05 [Server] Server thread/INFO [LibrarianLib ASM]: Transforming NetHandlerPlayServer
454507.09 15:16:05 [Server] Server thread/INFO [LibrarianLib ASM]: Applying Transformation to method (Names [update, func_73660_a] Descriptor ()V)
454607.09 15:16:05 [Server] Server thread/INFO [LibrarianLib ASM]: Attempting to insert: Update hook
454707.09 15:16:05 [Server] Server thread/INFO [LibrarianLib ASM]: Patch result: Success
454807.09 15:16:06 [Server] Server thread/INFO [brandonscore]: Brandon's Core online! Waiting for Draconic Evolution to join the party....
454907.09 15:16:06 [Server] Server thread/INFO [draconicevolution]: Draconic Evolution online!
455007.09 15:16:06 [Server] Server thread/INFO [brandonscore]: Hay! There you are! Now lets destroy some worlds!!
455107.09 15:16:06 [Server] Server thread/INFO [draconicevolution]: Sounds like fun! Lets get to it!
455207.09 15:16:06 [Server] Server thread/INFO [Quark ASM]: Transforming net.minecraft.util.DamageSource
455307.09 15:16:06 [Server] Server thread/INFO [Quark ASM]: Applying Transformation to method (Names [causePlayerDamage, func_76365_a] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;)Lnet/minecraft/util/DamageSource;)
455407.09 15:16:06 [Server] Server thread/INFO [Quark ASM]: Located Method, patching...
455507.09 15:16:06 [Server] Server thread/INFO [Quark ASM]: Patch result: true
455607.09 15:16:10 [Server] Server thread/INFO [STDOUT]: [xaero.common.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.world.chunk.Chunk
455707.09 15:16:10 [Server] Server thread/INFO [STDOUT]: [xaero.map.core.transformer.ClassNodeTransformer:transform:26]: Transforming class net.minecraft.world.chunk.Chunk
455807.09 15:16:10 [Server] 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
455907.09 15:16:10 [Server] 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
456007.09 15:16:10 [Server] Server thread/WARN [mixin]: Static binding violation: PRIVATE @Overwrite method func_76615_h in mixins.phosphor.json:common.MixinChunk cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded.
456107.09 15:16:11 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Transforming thaumcraft.common.lib.events.PlayerEvents : thaumcraft.common.lib.events.PlayerEvents with 1 patches!
456207.09 15:16:11 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHRUNICSHIELDINGHOOK
456307.09 15:16:12 [Server] Server thread/ERROR [FML]: The mod cofhworld is expecting signature 8a6abf2cb9e141b866580d369ba6548732eff25f for source CoFHWorld-1.12.2-1.4.0.1-universal.jar, however there is no signature matching that description
456407.09 15:16:12 [Server] Server thread/ERROR [FML]: The mod thermalfoundation is expecting signature 8a6abf2cb9e141b866580d369ba6548732eff25f for source ThermalFoundation-1.12.2-2.6.7.1-universal.jar, however there is no signature matching that description
456507.09 15:16:12 [Server] Server thread/INFO [draconicevolution]: Hello Minecraft!!!
456607.09 15:16:12 [Server] Server thread/ERROR [FML]: The mod thermalexpansion is expecting signature 8a6abf2cb9e141b866580d369ba6548732eff25f for source ThermalExpansion-1.12.2-5.5.7.1-universal.jar, however there is no signature matching that description
456707.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.integration.thaumcraft.ThaumcraftArmorMixin
456807.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Registered mixin.
456907.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
457007.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Registered mixin.
457107.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.power.forge.item.InternalPoweredItemMixin
457207.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Registered mixin.
457307.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.item.darksteel.upgrade.DarkSteelUpgradeMixin
457407.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Registered mixin.
457507.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
457607.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Registered mixin.
457707.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
457807.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Registered mixin.
457907.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin
458007.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Registered mixin.
458107.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.integration.thaumcraft.ThaumcraftArmorMixin.
458207.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
458307.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
458407.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
458507.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.paint.MobilityFlagForPaintedBlocksMixin.
458607.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.power.forge.item.InternalPoweredItemMixin.
458707.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found interface target crazypants.enderio.base.power.forge.item.IInternalPoweredItem
458807.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.base.item.darksteel.upgrade.DarkSteelUpgradeMixin.
458907.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found interface target crazypants.enderio.api.upgrades.IDarkSteelItem
459007.09 15:16:13 [Server] 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]
459107.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Patching 2 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelArmor (ThaumcraftArmorMixin, DarkSteelUpgradeMixin)
459207.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Added 3 new interfaces: [thaumcraft/api/items/IVisDiscountGear, thaumcraft/api/items/IGoggles, thaumcraft/api/items/IRevealer]
459307.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Added 3 new methods: [showNodes(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EntityLivingBase;)Z, showIngamePopups(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EntityLivingBase;)Z, getVisDiscount(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/EntityPlayer;)I]
459407.09 15:16:13 [Server] 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]
459507.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
459607.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$IBlockPaintableBlock
459707.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$ITexturePaintableBlock
459807.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$INonSolidBlockPaintableBlock
459907.09 15:16:13 [Server] Server thread/INFO [EnderCore Mixins]: Found interface target crazypants.enderio.base.paint.IPaintable$ISolidBlockPaintableBlock
460007.09 15:16:14 [Server] Server thread/WARN [FML]: The declared version check handler method checkModLists on network mod id enderio is not accessible
460107.09 15:16:14 [Server] INFO java.lang.NoSuchMethodException: crazypants.enderio.base.EnderIO.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
460207.09 15:16:14 [Server] INFO at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_211]
460307.09 15:16:14 [Server] INFO at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
460407.09 15:16:14 [Server] INFO at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
460507.09 15:16:14 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
460607.09 15:16:14 [Server] INFO at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
460707.09 15:16:14 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
460807.09 15:16:14 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
460907.09 15:16:14 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
461007.09 15:16:14 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
461107.09 15:16:14 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
461207.09 15:16:14 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
461307.09 15:16:14 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
461407.09 15:16:14 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
461507.09 15:16:14 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
461607.09 15:16:14 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
461707.09 15:16:14 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
461807.09 15:16:14 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
461907.09 15:16:14 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
462007.09 15:16:14 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
462107.09 15:16:14 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
462207.09 15:16:14 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
462307.09 15:16:14 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
462407.09 15:16:14 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
462507.09 15:16:14 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
462607.09 15:16:14 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
462707.09 15:16:14 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
462807.09 15:16:14 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
462907.09 15:16:14 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
463007.09 15:16:14 [Server] INFO at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
463107.09 15:16:14 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
463207.09 15:16:14 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
463307.09 15:16:14 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
463407.09 15:16:14 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
463507.09 15:16:14 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
463607.09 15:16:15 [Server] 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]
463707.09 15:16:15 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemInventoryCharger (DarkSteelUpgradeMixin)
463807.09 15:16:15 [Server] 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]
463907.09 15:16:15 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
464007.09 15:16:16 [Server] 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]
464107.09 15:16:16 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelCrook (DarkSteelUpgradeMixin)
464207.09 15:16:16 [Server] 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]
464307.09 15:16:16 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
464407.09 15:16:23 [Server] Server thread/WARN [FML]: The declared version check handler method checkModLists on network mod id enderiointegrationtic is not accessible
464507.09 15:16:23 [Server] INFO java.lang.NoSuchMethodException: crazypants.enderio.integration.tic.EnderIOIntegrationTic.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
464607.09 15:16:23 [Server] INFO at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_211]
464707.09 15:16:23 [Server] INFO at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
464807.09 15:16:23 [Server] INFO at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
464907.09 15:16:23 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
465007.09 15:16:23 [Server] INFO at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
465107.09 15:16:23 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
465207.09 15:16:23 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
465307.09 15:16:23 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
465407.09 15:16:23 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
465507.09 15:16:23 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
465607.09 15:16:23 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
465707.09 15:16:23 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
465807.09 15:16:23 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
465907.09 15:16:23 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
466007.09 15:16:23 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
466107.09 15:16:23 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
466207.09 15:16:23 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
466307.09 15:16:23 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
466407.09 15:16:23 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
466507.09 15:16:23 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
466607.09 15:16:23 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
466707.09 15:16:23 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
466807.09 15:16:23 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
466907.09 15:16:23 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
467007.09 15:16:23 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
467107.09 15:16:23 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
467207.09 15:16:23 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
467307.09 15:16:23 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
467407.09 15:16:23 [Server] INFO at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
467507.09 15:16:23 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
467607.09 15:16:23 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
467707.09 15:16:23 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
467807.09 15:16:23 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
467907.09 15:16:23 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
468007.09 15:16:29 [Server] Server thread/INFO [Pulsar-tconstruct]: Skipping Pulse chiselsandbitsIntegration; missing dependency: chiselsandbits
468107.09 15:16:29 [Server] Server thread/INFO [Pulsar-tconstruct]: Skipping Pulse craftingtweaksIntegration; missing dependency: craftingtweaks
468207.09 15:16:29 [Server] Server thread/INFO [Pulsar-tconstruct]: Skipping Pulse wailaIntegration; missing dependency: waila
468307.09 15:16:29 [Server] Server thread/INFO [tconstruct]: Preparing to take over the world
468407.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded integration plugin handler: com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler
468507.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded integration plugin handler: com.codetaylor.mc.athenaeum.integration.SimplePluginHandler
468607.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded integration plugin handler: com.codetaylor.mc.athenaeum.integration.SimplePluginHandler
468707.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded integration plugin handler: com.codetaylor.mc.athenaeum.integration.jei.IntegrationPluginHandler
468807.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded module: com.codetaylor.mc.artisanworktables.modules.worktables.ModuleWorktables
468907.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded module: com.codetaylor.mc.artisanworktables.modules.tools.ModuleTools
469007.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded module: com.codetaylor.mc.artisanworktables.modules.toolbox.ModuleToolbox
469107.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded module: com.codetaylor.mc.artisanworktables.modules.requirement.gamestages.ModuleRequirementGameStages
469207.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Loaded module: com.codetaylor.mc.athenaeum.integration.crafttweaker.ModuleIntegration
469307.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.artisanworktables.modules.worktables.integration.crafttweaker.builder.IZenRecipeBuilder]
469407.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.artisanworktables.modules.worktables.integration.crafttweaker.builder.copy.IZenRecipeBuilderCopyStrategy]
469507.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.SimplePluginHandler] for plugin [com.codetaylor.mc.artisanworktables.modules.worktables.integration.gamestages.PluginGameStages]
469607.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.jei.IntegrationPluginHandler] for plugin [com.codetaylor.mc.artisanworktables.modules.worktables.integration.jei.PluginJEI]
469707.09 15:16:33 [Server] Server thread/INFO [FML]: [artisanworktables] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.artisanworktables.modules.requirement.gamestages.crafttweaker.ZenGameStagesRequirement]
469807.09 15:16:44 [Server] Server thread/ERROR [FML]: The mod bhc is expecting signature undefined for source baubley-heart-canisters-1.12.2-1.2.3.jar, however there is no signature matching that description
469907.09 15:16:46 [Server] Server thread/INFO [Botania Tweaks ASM]: Adding a flower durability bar...
470007.09 15:16:47 [Server] Server thread/INFO [Botania Tweaks ASM]: Patching the narslimmus's decayability...
470107.09 15:16:47 [Server] Server thread/INFO [Botania Tweaks ASM]: Instrumenting entry/exit points for the narslimmus flower...
470207.09 15:16:50 [Server] Server thread/ERROR [FML]: The mod cyberware is expecting signature 67a0e286dc0d4b502f3c92ac20b953517b52d0a9 for source cyberware-1.12.2-0.2.11.26.jar, however there is no signature matching that description
470307.09 15:16:50 [Server] Server thread/INFO [STDOUT]: [flaxbeard.cyberware.Cyberware:onFingerprintViolation:72]: [Cyberware] Invalid fingerprint detected
470407.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Loaded integration plugin handler: com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler
470507.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Loaded integration plugin handler: com.codetaylor.mc.athenaeum.integration.SimplePluginHandler
470607.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Loaded integration plugin handler: com.codetaylor.mc.athenaeum.integration.SimplePluginHandler
470707.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Loaded integration plugin handler: com.codetaylor.mc.athenaeum.integration.jei.IntegrationPluginHandler
470807.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Loaded module: com.codetaylor.mc.dropt.modules.dropt.ModuleDropt
470907.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Loaded module: com.codetaylor.mc.athenaeum.integration.crafttweaker.ModuleIntegration
471007.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.dropt.modules.dropt.compat.crafttweaker.ZenRuleList]
471107.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.dropt.modules.dropt.compat.crafttweaker.ZenWeight]
471207.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.dropt.modules.dropt.compat.crafttweaker.ZenDrop]
471307.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.dropt.modules.dropt.compat.crafttweaker.ZenDropt]
471407.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.dropt.modules.dropt.compat.crafttweaker.ZenHarvester]
471507.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.dropt.modules.dropt.compat.crafttweaker.ZenRule]
471607.09 15:16:51 [Server] Server thread/INFO [FML]: [dropt] Executed integration plugin handler [com.codetaylor.mc.athenaeum.integration.crafttweaker.IntegrationPluginHandler] for plugin [com.codetaylor.mc.dropt.modules.dropt.compat.crafttweaker.ZenRange]
471707.09 15:16:51 [Server] Server thread/WARN [FML]: The declared version check handler method checkModLists on network mod id enderioconduits is not accessible
471807.09 15:16:51 [Server] INFO java.lang.NoSuchMethodException: crazypants.enderio.conduits.EnderIOConduits.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
471907.09 15:16:51 [Server] INFO at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_211]
472007.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
472107.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
472207.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
472307.09 15:16:51 [Server] INFO at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
472407.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
472507.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
472607.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
472707.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
472807.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
472907.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
473007.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
473107.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
473207.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
473307.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
473407.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
473507.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
473607.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
473707.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
473807.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
473907.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
474007.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
474107.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
474207.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
474307.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
474407.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
474507.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
474607.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
474707.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
474807.09 15:16:51 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
474907.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
475007.09 15:16:51 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
475107.09 15:16:51 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
475207.09 15:16:51 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
475307.09 15:16:51 [Server] Server thread/WARN [FML]: The declared version check handler method checkModLists on network mod id enderiopowertools is not accessible
475407.09 15:16:51 [Server] INFO java.lang.NoSuchMethodException: crazypants.enderio.powertools.EnderIOPowerTools.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
475507.09 15:16:51 [Server] INFO at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_211]
475607.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
475707.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
475807.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
475907.09 15:16:51 [Server] INFO at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
476007.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
476107.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
476207.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
476307.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
476407.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
476507.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
476607.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
476707.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
476807.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
476907.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
477007.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
477107.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
477207.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
477307.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
477407.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
477507.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
477607.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
477707.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
477807.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
477907.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
478007.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
478107.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
478207.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
478307.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
478407.09 15:16:51 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
478507.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
478607.09 15:16:51 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
478707.09 15:16:51 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
478807.09 15:16:51 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
478907.09 15:16:51 [Server] Server thread/INFO [EnderCore Mixins]: Found annotation mixin: crazypants.enderio.conduit.me.conduit.MEMixin
479007.09 15:16:51 [Server] Server thread/INFO [EnderCore Mixins]: Registered mixin.
479107.09 15:16:51 [Server] Server thread/INFO [EnderCore Mixins]: Found mixin source class data for crazypants.enderio.conduit.me.conduit.MEMixin.
479207.09 15:16:51 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.conduits.conduit.TileConduitBundle (MEMixin)
479307.09 15:16:51 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new interface: [appeng/api/networking/IGridHost]
479407.09 15:16:51 [Server] 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]
479507.09 15:16:51 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
479607.09 15:16:51 [Server] Server thread/WARN [FML]: The declared version check handler method checkModLists on network mod id enderioconduitsappliedenergistics is not accessible
479707.09 15:16:51 [Server] INFO java.lang.NoSuchMethodException: crazypants.enderio.conduit.me.EnderIOConduitsAppliedEnergistics.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
479807.09 15:16:51 [Server] INFO at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_211]
479907.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
480007.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
480107.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
480207.09 15:16:51 [Server] INFO at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
480307.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
480407.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
480507.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
480607.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
480707.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
480807.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
480907.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
481007.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
481107.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
481207.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
481307.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
481407.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
481507.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
481607.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
481707.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
481807.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
481907.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
482007.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
482107.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
482207.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
482307.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
482407.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
482507.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
482607.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
482707.09 15:16:51 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
482807.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
482907.09 15:16:51 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
483007.09 15:16:51 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
483107.09 15:16:51 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
483207.09 15:16:51 [Server] Server thread/WARN [FML]: The declared version check handler method checkModLists on network mod id enderioendergy is not accessible
483307.09 15:16:51 [Server] INFO java.lang.NoSuchMethodException: crazypants.enderio.endergy.EnderIOEndergy.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
483407.09 15:16:51 [Server] INFO at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_211]
483507.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
483607.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
483707.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
483807.09 15:16:51 [Server] INFO at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
483907.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
484007.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
484107.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
484207.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
484307.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
484407.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
484507.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
484607.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
484707.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
484807.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
484907.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
485007.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
485107.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
485207.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
485307.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
485407.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
485507.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
485607.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
485707.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
485807.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
485907.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
486007.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
486107.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
486207.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
486307.09 15:16:51 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
486407.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
486507.09 15:16:51 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
486607.09 15:16:51 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
486707.09 15:16:51 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
486807.09 15:16:51 [Server] Server thread/WARN [FML]: The declared version check handler method checkModLists on network mod id enderiointegrationticlate is not accessible
486907.09 15:16:51 [Server] INFO java.lang.NoSuchMethodException: crazypants.enderio.integration.tic.EnderIOIntegrationTicLate.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
487007.09 15:16:51 [Server] INFO at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_211]
487107.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
487207.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
487307.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
487407.09 15:16:51 [Server] INFO at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
487507.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
487607.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
487707.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
487807.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
487907.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
488007.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
488107.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
488207.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
488307.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
488407.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
488507.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
488607.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
488707.09 15:16:51 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
488807.09 15:16:51 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
488907.09 15:16:51 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
489007.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
489107.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
489207.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
489307.09 15:16:51 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
489407.09 15:16:51 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
489507.09 15:16:51 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
489607.09 15:16:51 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
489707.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
489807.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
489907.09 15:16:51 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
490007.09 15:16:51 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
490107.09 15:16:51 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
490207.09 15:16:51 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
490307.09 15:16:51 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
490407.09 15:16:52 [Server] Server thread/WARN [FML]: The declared version check handler method checkModLists on network mod id enderiomachines is not accessible
490507.09 15:16:52 [Server] INFO java.lang.NoSuchMethodException: crazypants.enderio.machines.EnderIOMachines.checkModLists(java.util.Map, net.minecraftforge.fml.relauncher.Side)
490607.09 15:16:52 [Server] INFO at java.lang.Class.getDeclaredMethod(Class.java:2130) ~[?:1.8.0_211]
490707.09 15:16:52 [Server] INFO at net.minecraftforge.fml.common.network.internal.NetworkModHolder.<init>(NetworkModHolder.java:246) [NetworkModHolder.class:?]
490807.09 15:16:52 [Server] INFO at net.minecraftforge.fml.common.network.NetworkRegistry.register(NetworkRegistry.java:299) [NetworkRegistry.class:?]
490907.09 15:16:52 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606) [FMLModContainer.class:?]
491007.09 15:16:52 [Server] INFO at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source) ~[?:?]
491107.09 15:16:52 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
491207.09 15:16:52 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
491307.09 15:16:52 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
491407.09 15:16:52 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
491507.09 15:16:52 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
491607.09 15:16:52 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
491707.09 15:16:52 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
491807.09 15:16:52 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
491907.09 15:16:52 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
492007.09 15:16:52 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
492107.09 15:16:52 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
492207.09 15:16:52 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
492307.09 15:16:52 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
492407.09 15:16:52 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
492507.09 15:16:52 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
492607.09 15:16:52 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
492707.09 15:16:52 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
492807.09 15:16:52 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
492907.09 15:16:52 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
493007.09 15:16:52 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
493107.09 15:16:52 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
493207.09 15:16:52 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
493307.09 15:16:52 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
493407.09 15:16:52 [Server] INFO at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) [Loader.class:?]
493507.09 15:16:52 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) [FMLServerHandler.class:?]
493607.09 15:16:52 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
493707.09 15:16:52 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
493807.09 15:16:52 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
493907.09 15:16:52 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
494007.09 15:16:52 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Transforming aip : net.minecraft.item.ItemStack with 2 patches!
494107.09 15:16:52 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIP as it can't be applied for side SERVER
494207.09 15:16:52 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Skipping PATCHMODIFYENCHANTMENTLEVELSTOOLTIPEVENT as it can't be applied for side SERVER
494307.09 15:16:52 [Server] Server thread/INFO [Quark ASM]: Transforming net.minecraft.item.ItemStack
494407.09 15:16:52 [Server] Server thread/INFO [Quark ASM]: Applying Transformation to method (Names [getTextComponent, func_151000_E] Descriptor ()Lnet/minecraft/util/text/ITextComponent;)
494507.09 15:16:52 [Server] Server thread/INFO [Quark ASM]: Located Method, patching...
494607.09 15:16:52 [Server] Server thread/INFO [Quark ASM]: Located patch target node ARETURN
494707.09 15:16:52 [Server] Server thread/INFO [Quark ASM]: Patch result: true
494807.09 15:16:55 [Server] Server thread/INFO [Quark ASM]: Transforming net.minecraft.inventory.ContainerWorkbench
494907.09 15:16:55 [Server] Server thread/INFO [Quark ASM]: Applying Transformation to method (Names [transferStackInSlot, func_82846_b] Descriptor (Lnet/minecraft/entity/player/EntityPlayer;I)Lnet/minecraft/item/ItemStack;)
495007.09 15:16:55 [Server] Server thread/INFO [Quark ASM]: Located Method, patching...
495107.09 15:16:55 [Server] Server thread/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerWorkbench.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
495207.09 15:16:55 [Server] Server thread/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerWorkbench.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
495307.09 15:16:55 [Server] Server thread/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerWorkbench.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
495407.09 15:16:55 [Server] Server thread/INFO [Quark ASM]: Located patch target node INVOKEVIRTUAL net/minecraft/inventory/ContainerWorkbench.func_75135_a (Lnet/minecraft/item/ItemStack;IIZ)Z
495507.09 15:16:55 [Server] Server thread/INFO [Quark ASM]: Patch result: true
495607.09 15:16:55 [Server] Server thread/INFO [Apotheosis : Core]: Transforming ContainerRepair...
495707.09 15:16:55 [Server] Server thread/INFO [Apotheosis : Core]: Successfully removed the anvil level cap.
495807.09 15:16:55 [Server] Server thread/INFO [Apotheosis : Core]: Replaced ContainerRepair Enchantment#getMaxLevel #1.
495907.09 15:16:55 [Server] Server thread/INFO [Apotheosis : Core]: Replaced ContainerRepair Enchantment#getMaxLevel #2.
496007.09 15:16:55 [Server] Server thread/INFO [Apotheosis : Core]: Successfully transformed ContainerRepair
496107.09 15:17:02 [Server] Server thread/WARN [teslacorelib]: Annotated class 'net.ndrei.teslacorelib.blocks.multipart.MultiPartBlockEvents' not found!
496207.09 15:17:04 [Server] Server thread/INFO [letsencryptcraft]: Not running as Java version is at least Java 8u101.
496307.09 15:17:06 [Server] Server thread/INFO [Logistics Bridge]: Logistics Bridge version: 1.3.11
496407.09 15:17:08 [Server] Server thread/ERROR [FML]: The mod redstonearsenal is expecting signature 8a6abf2cb9e141b866580d369ba6548732eff25f for source RedstoneArsenal-1.12.2-2.6.6.1-universal.jar, however there is no signature matching that description
496507.09 15:17:12 [Server] Server thread/INFO [Sledgehammer]: Sledgehammer v1.12.2-2.0.6 (forge)
496607.09 15:17:13 [Server] Server thread/INFO [Sledgehammer]: Loaded default locale
496707.09 15:17:13 [Server] Server thread/INFO [SqueezerCore]: Transforming org.cyclops.integrateddynamics.block.BlockSqueezer...
496807.09 15:17:13 [Server] Server thread/INFO [SqueezerCore]: Successfully transformed org.cyclops.integrateddynamics.block.BlockSqueezer!
496907.09 15:17:13 [Server] Server thread/INFO [sasit]: The mod has started up!
497007.09 15:17:13 [Server] Server thread/INFO [sasit]: Logs containing the following text may have been removed!
497107.09 15:17:13 [Server] Server thread/ERROR [FML]: The mod thermaldynamics is expecting signature 8a6abf2cb9e141b866580d369ba6548732eff25f for source ThermalDynamics-1.12.2-2.5.6.1-universal.jar, however there is no signature matching that description
497207.09 15:17:13 [Server] Server thread/ERROR [FML]: The mod thermalinnovation is expecting signature 8a6abf2cb9e141b866580d369ba6548732eff25f for source ThermalInnovation-1.12.2-0.3.6.1-universal.jar, however there is no signature matching that description
497307.09 15:17:14 [Server] Server thread/INFO [Pulsar-tcomplement]: Skipping Pulse ExNihiloPlugin; missing dependency: exnihilocreatio
497407.09 15:17:14 [Server] Server thread/INFO [Pulsar-tcomplement]: Skipping Pulse ToolLevelingPlugin; missing dependency: tinkertoolleveling
497507.09 15:17:15 [Server] Server thread/INFO [FML]: Processing ObjectHolder annotations
497607.09 15:17:17 [Server] Server thread/INFO [FML]: Found 2293 ObjectHolder annotations
497707.09 15:17:17 [Server] Server thread/INFO [FML]: Identifying ItemStackHolder annotations
497807.09 15:17:17 [Server] Server thread/INFO [FML]: Found 2 ItemStackHolder annotations
497907.09 15:17:18 [Server] Server thread/INFO [FML]: Configured a dormant chunk cache size of 0
498007.09 15:17:18 [Server] Forge Version Check/INFO [forge.VersionCheck]: [enderutilities] Starting version check at https://raw.githubusercontent.com/maruohon/enderutilities/master/update.json
498107.09 15:17:18 [Server] Server thread/INFO [Actually Additions]: Starting PreInitialization Phase...
498207.09 15:17:18 [Server] Forge Version Check/INFO [forge.VersionCheck]: [enderutilities] Found status: AHEAD Target: null
498307.09 15:17:18 [Server] Forge Version Check/INFO [forge.VersionCheck]: [openmods] Starting version check at http://openmods.info/versions/openmodslib.json
498407.09 15:17:18 [Server] Forge Version Check/INFO [forge.VersionCheck]: [openmods] Found status: AHEAD Target: null
498507.09 15:17:18 [Server] Forge Version Check/INFO [forge.VersionCheck]: [projecte] Starting version check at https://raw.githubusercontent.com/sinkillerj/ProjectE/mc1.12.x/update.json
498607.09 15:17:18 [Server] Forge Version Check/INFO [forge.VersionCheck]: [projecte] Found status: UP_TO_DATE Target: null
498707.09 15:17:18 [Server] Forge Version Check/INFO [forge.VersionCheck]: [codechickenlib] Starting version check at http://chickenbones.net/Files/notification/version.phpuery=forge&version=1.12&file=CodeChickenLib
498807.09 15:17:18 [Server] Server thread/INFO [Actually Additions]: Grabbing Configurations...
498907.09 15:17:18 [Server] Server thread/ERROR [Actually Additions]: Parsing the Configuration Items config failed, reverting back to the default settings!
499007.09 15:17:18 [Server] Server thread/INFO [Actually Additions]: Initializing Tool Materials...
499107.09 15:17:18 [Server] Server thread/INFO [Actually Additions]: Initializing Armor Materials...
499207.09 15:17:18 [Server] INFO Spliced in METHOD: net.minecraftforge.common.property.ExtendedBlockState.createState
499307.09 15:17:18 [Server] Server thread/INFO [Actually Additions]: PreInitializing ServerProxy...
499407.09 15:17:18 [Server] Server thread/INFO [Actually Additions]: PreInitialization Finished.
499507.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [codechickenlib] Found status: BETA Target: null
499607.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [thermaldynamics] Starting version check at https://raw.github.com/cofh/version/master/thermaldynamics_update.json
499707.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [thermaldynamics] Found status: UP_TO_DATE Target: null
499807.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [randompatches] Starting version check at https://raw.githubusercontent.com/TheRandomLabs/RandomPatches/misc/versions.json
499907.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [randompatches] Found status: OUTDATED Target: 1.12.2-1.22.1.3
500007.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [topaddons] Starting version check at https://raw.githubusercontent.com/DrManganese/TOPAddons/1.12/FUC.json
500107.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [topaddons] Found status: UP_TO_DATE Target: null
500207.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [gbook] Starting version check at https://raw.githubusercontent.com/gigaherz/guidebook/master/update.json
500307.09 15:17:19 [Server] Server thread/INFO [libVulpes]: Tesla integration loaded
500407.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [gbook] Found status: AHEAD Target: null
500507.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [thermalfoundation] Starting version check at https://raw.github.com/cofh/version/master/thermalfoundation_update.json
500607.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [thermalfoundation] Found status: UP_TO_DATE Target: null
500707.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [vanillafix] Starting version check at https://gist.githubusercontent.com/Runemoro/28e8cf4c24a5f17f508a5d34f66d229f/raw/vanillafix_update.json
500807.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [vanillafix] Found status: AHEAD Target: null
500907.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [cofhcore] Starting version check at https://raw.github.com/cofh/version/master/cofhcore_update.json
501007.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [cofhcore] Found status: UP_TO_DATE Target: null
501107.09 15:17:19 [Server] Forge Version Check/INFO [forge.VersionCheck]: [biggerpacketsplz] Starting version check at http://mods.mc.elnounch.net/biggerpacketsplz.json
501207.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arrocketbuilder`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
501307.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arwarpcore`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
501407.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arfuelingstation`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
501507.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `armonitoringstation`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
501607.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arspacelaser`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
501707.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arprecisionassembler`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
501807.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arobservatory`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
501907.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arcrystallizer`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502007.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arcuttingmachine`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502107.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ardatabus`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502207.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arsatellitehatch`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502307.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arguidancecomputerhatch`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502407.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arsatellitebuilder`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502507.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `artileentitysatellitecontrolcenter`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502607.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arplanetanalyser`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502707.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arguidancecomputer`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502807.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arelectricarcfurnace`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
502907.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `artileplanetselector`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503007.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `artilematerial`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503107.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `artilelathe`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503207.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `artilemetalbender`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503307.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arstationbuilder`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503407.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arelectrolyser`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503507.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `archemicalreactor`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503607.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `aroxygenvent`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503707.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `aroxygencharger`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503807.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arco2scrubber`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
503907.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arstationmonitor`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504007.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `aroxygendetector`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504107.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arorientationcontrol`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504207.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `argravitycontrol`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504307.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arliquidpipe`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504407.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ardatapipe`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504507.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arenergypipe`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504607.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ardrill`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504707.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `armicrowavereciever`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504807.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arsuitworkstation`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
504907.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arrocketloader`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
505007.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arrocketunloader`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
505107.09 15:17:20 [Server] Forge Version Check/INFO [forge.VersionCheck]: [biggerpacketsplz] Found status: UP_TO_DATE Target: null
505207.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arbiomescanner`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
505307.09 15:17:20 [Server] Forge Version Check/INFO [forge.VersionCheck]: [roughmobsrevamped] Starting version check at https://api.npoint.io/af6b89034329926a1008
505407.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arattterraformer`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
505507.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arlandingpad`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
505607.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arstationdeployablerocketassembler`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
505707.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arfluidtank`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
505807.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arfluidunloader`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
505907.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arfluidloader`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506007.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arsolargenerator`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506107.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ardockingport`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506207.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arstationaltitudecontroller`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506307.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arrailgun`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506407.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arplanetholoselector`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506507.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arforcefieldprojector`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506607.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arblockseal`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506707.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arspaceelevator`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506807.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arbeacon`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
506907.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `artransciever`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
507007.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `arblackholegenerator`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
507107.09 15:17:20 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `argravitymachine`, expected `advancedrocketry`. This could be a intended override, but in most cases indicates a broken mod.
507207.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [roughmobsrevamped] Found status: UP_TO_DATE Target: null
507307.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [emberroot] Starting version check at https://raw.githubusercontent.com/PrinceOfAmber/ERZ/master/update.json
507407.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [emberroot] Found status: UP_TO_DATE Target: null
507507.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [llibrary] Starting version check at https://gist.githubusercontent.com/gegy1000/a6639456aeb8edd92cbf7cbfcf9d65d9/raw/llibrary_updates.json
507607.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [llibrary] Found status: AHEAD Target: null
507707.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [randomtweaks] Starting version check at https://raw.githubusercontent.com/TheRandomLabs/RandomTweaks/misc/versions.json
507807.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [randomtweaks] Found status: UP_TO_DATE Target: null
507907.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [thermalexpansion] Starting version check at https://raw.github.com/cofh/version/master/thermalexpansion_update.json
508007.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [thermalexpansion] Found status: UP_TO_DATE Target: null
508107.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [zenstages] Starting version check at https://gist.githubusercontent.com/artdude543/5f9aff5dc5f9b800eb478bf2896363f2/raw/zenstages_changelog.json
508207.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [zenstages] Found status: AHEAD Target: null
508307.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
508407.09 15:17:21 [Server] Server thread/INFO [AE2:S]: Pre Initialization ( started )
508507.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [forge] Found status: OUTDATED Target: 14.23.5.2854
508607.09 15:17:21 [Server] Forge Version Check/INFO [forge.VersionCheck]: [logisticsbridge] Starting version check at https://github.com/tom5454/LogisticsBridge/blob/master/version-check.json
508707.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [justenoughdimensions] Starting version check at https://raw.githubusercontent.com/maruohon/justenoughdimensions/master/update.json
508807.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [justenoughdimensions] Found status: BETA Target: null
508907.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [redstonearsenal] Starting version check at https://raw.github.com/cofh/version/master/redstonearsenal_update.json
509007.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [redstonearsenal] Found status: UP_TO_DATE Target: null
509107.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [openblocks] Starting version check at http://openmods.info/versions/openblocks.json
509207.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [openblocks] Found status: AHEAD Target: null
509307.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [cofhworld] Starting version check at https://raw.github.com/cofh/version/master/cofhworld_update.json
509407.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [cofhworld] Found status: UP_TO_DATE Target: null
509507.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [bhc] Starting version check at https://raw.githubusercontent.com/EmoKiba/Baubley-Heart-Canisters/master/versions.json
509607.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [bhc] Found status: AHEAD Target: null
509707.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [industrialforegoing] Starting version check at https://raw.githubusercontent.com/Buuz135/Industrial-Foregoing/master/update.json
509807.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [industrialforegoing] Found status: BETA Target: null
509907.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [cryingobsidian] Starting version check at https://raw.githubusercontent.com/ErrorCraftLP/Crying-Obsidian/master/version.json
510007.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [cryingobsidian] Found status: BETA Target: null
510107.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [cyclicmagic] Starting version check at https://raw.githubusercontent.com/Lothrazar/Cyclic/trunk/1.12/update.json
510207.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [cyclicmagic] Found status: OUTDATED Target: 1.20.4
510307.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [buildinggadgets] Starting version check at https://github.com/Direwolf20-MC/BuildingGadgets/raw/master/update.json
510407.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [buildinggadgets] Found status: AHEAD Target: null
510507.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [enderstorage] Starting version check at http://chickenbones.net/Files/notification/version.phpuery=forge&version=1.12&file=EnderStorage
510607.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [enderstorage] Found status: BETA Target: null
510707.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [thermalinnovation] Starting version check at https://raw.github.com/cofh/version/master/thermalinnovation_update.json
510807.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [thermalinnovation] Found status: UP_TO_DATE Target: null
510907.09 15:17:22 [Server] Forge Version Check/INFO [forge.VersionCheck]: [translocators] Starting version check at http://chickenbones.net/Files/notification/version.phpuery=forge&version=1.12&file=Translocators
511007.09 15:17:23 [Server] Forge Version Check/INFO [forge.VersionCheck]: [translocators] Found status: BETA Target: null
511107.09 15:17:28 [Server] Server thread/INFO [AE2:S]: Starting AE2 VersionChecker
511207.09 15:17:28 [Server] Server thread/INFO [AE2:S]: Pre Initialization ( ended after 7508ms )
511307.09 15:17:28 [Server] Server thread/INFO [AE2:S]: Loaded AE2 Plugin {}
511407.09 15:17:28 [Server] Server thread/INFO [AE2:S]: Loaded AE2 Plugin {}
511507.09 15:17:28 [Server] AE2 VersionChecker/INFO [AE2:S]: No newer version is available: missing(found) < rv6-stable-7 (current)
511607.09 15:17:28 [Server] AE2 VersionChecker/INFO [AE2:S]: Stopping AE2 VersionChecker
511707.09 15:17:29 [Server] Server thread/INFO [brandonscore]: Found mod feature container for mod: draconicevolution
511807.09 15:17:29 [Server] Server thread/INFO [brandonscore]: Found mod feature container for mod: aenetvistool
511907.09 15:17:29 [Server] Server thread/INFO [brandonscore]: Found mod config container for mod: brandonscore
512007.09 15:17:29 [Server] Server thread/INFO [brandonscore]: Found mod config container for mod: draconicevolution
512107.09 15:17:29 [Server] Server thread/INFO [brandonscore]: Found mod config container for mod: draconicevolution
512207.09 15:17:29 [Server] Server thread/INFO [brandonscore]: Loading mod config for: draconicevolution
512307.09 15:17:29 [Server] Server thread/INFO [brandonscore]: Loading mod config for: brandonscore
512407.09 15:17:29 [Server] Server thread/WARN [brandonscore]: No features were detected for mod: brandonscore. This maybe an issue or maybe this mod just does not have any items or blocks.
512507.09 15:17:29 [Server] Server thread/INFO [brandonscore]: Registering features for mod: aenetvistool
512607.09 15:17:36 [Server] Server thread/INFO [CoFH World]: Registering default Feature Templates...
512707.09 15:17:36 [Server] Server thread/INFO [CoFH World]: Registering default World Generators...
512807.09 15:17:36 [Server] Server thread/INFO [CoFH World]: Verifying or creating base world generation directory...
512907.09 15:17:36 [Server] Server thread/INFO [CoFH World]: Complete.
513007.09 15:17:37 [Server] Server thread/INFO [brandonscore]: Registering features for mod: draconicevolution
513107.09 15:17:37 [Server] Server thread/INFO [draconicevolution]: Finished PreInitialization
513207.09 15:17:40 [Server] Server thread/WARN []: ========================================================
513307.09 15:17:40 [Server] Server thread/WARN []: == Forge Debug Logging is ENABLED ======================
513407.09 15:17:40 [Server] Server thread/WARN []: ========================================================
513507.09 15:17:40 [Server] Server thread/WARN []: == This WILL slow down the game, so we recommend you ==
513607.09 15:17:40 [Server] Server thread/WARN []: == disable it unless you need it. See: ==
513707.09 15:17:40 [Server] Server thread/WARN []: == https://github.com/MinecraftForge/MinecraftForge/issues/6271
513807.09 15:17:40 [Server] Server thread/WARN []: ========================================================
513907.09 15:17:40 [Server] Server thread/INFO [enderio]: ========================================================
514007.09 15:17:40 [Server] Server thread/INFO [enderio]: == Ender IO Debug Logging is DISABLED ==================
514107.09 15:17:40 [Server] Server thread/INFO [enderio]: ========================================================
514207.09 15:17:40 [Server] Server thread/INFO [enderio]: == This will not slow down the game, but you may miss ==
514307.09 15:17:40 [Server] Server thread/INFO [enderio]: == out on information needed to diagnose issues. For ==
514407.09 15:17:40 [Server] Server thread/INFO [enderio]: == normal operation this is fine. ==
514507.09 15:17:40 [Server] Server thread/INFO [enderio]: ========================================================
514607.09 15:17:41 [Server] 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]
514707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedFence (MobilityFlagForPaintedBlocksMixin)
514807.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
514907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
515007.09 15:17:41 [Server] 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]
515107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedFenceGate (MobilityFlagForPaintedBlocksMixin)
515207.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
515307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
515407.09 15:17:41 [Server] 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]
515507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedWall (MobilityFlagForPaintedBlocksMixin)
515607.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
515707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
515807.09 15:17:41 [Server] 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]
515907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedStairs (MobilityFlagForPaintedBlocksMixin)
516007.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
516107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
516207.09 15:17:41 [Server] 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]
516307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedSlab (MobilityFlagForPaintedBlocksMixin)
516407.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
516507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
516607.09 15:17:41 [Server] 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]
516707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedGlowstone (MobilityFlagForPaintedBlocksMixin)
516807.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
516907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
517007.09 15:17:41 [Server] 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]
517107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedGlowstone$BlockPaintedGlowstoneSolid (MobilityFlagForPaintedBlocksMixin)
517207.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
517307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
517407.09 15:17:41 [Server] 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]
517507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedGlowstone$BlockPaintedGlowstoneNonSolid (MobilityFlagForPaintedBlocksMixin)
517607.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
517707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
517807.09 15:17:41 [Server] 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]
517907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedCarpet (MobilityFlagForPaintedBlocksMixin)
518007.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
518107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
518207.09 15:17:41 [Server] 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]
518307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedPressurePlate (MobilityFlagForPaintedBlocksMixin)
518407.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
518507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
518607.09 15:17:41 [Server] 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]
518707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedRedstone (MobilityFlagForPaintedBlocksMixin)
518807.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
518907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
519007.09 15:17:41 [Server] 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]
519107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedRedstone$BlockPaintedRedstoneSolid (MobilityFlagForPaintedBlocksMixin)
519207.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
519307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
519407.09 15:17:41 [Server] 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]
519507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedRedstone$BlockPaintedRedstoneNonSolid (MobilityFlagForPaintedBlocksMixin)
519607.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
519707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
519807.09 15:17:41 [Server] 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]
519907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedStone (MobilityFlagForPaintedBlocksMixin)
520007.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
520107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
520207.09 15:17:41 [Server] 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]
520307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedTrapDoor (MobilityFlagForPaintedBlocksMixin)
520407.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
520507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
520607.09 15:17:41 [Server] 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]
520707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedDoor (MobilityFlagForPaintedBlocksMixin)
520807.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
520907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
521007.09 15:17:41 [Server] 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]
521107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedWorkbench (MobilityFlagForPaintedBlocksMixin)
521207.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
521307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
521407.09 15:17:41 [Server] 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$IBlockPaintableBlock]
521507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedReinforcedObsidian (MobilityFlagForPaintedBlocksMixin)
521607.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
521707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
521807.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedReinforcedObsidian$BlockPaintedReinforcedObsidianSolid from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
521907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedReinforcedObsidian$BlockPaintedReinforcedObsidianSolid (MobilityFlagForPaintedBlocksMixin)
522007.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
522107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
522207.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedReinforcedObsidian$BlockPaintedReinforcedObsidianNonSolid from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
522307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedReinforcedObsidian$BlockPaintedReinforcedObsidianNonSolid (MobilityFlagForPaintedBlocksMixin)
522407.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
522507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
522607.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedPackedIce from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$IBlockPaintableBlock]
522707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedPackedIce (MobilityFlagForPaintedBlocksMixin)
522807.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
522907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
523007.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedPackedIce$BlockPaintedPackedIceSolid from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$ISolidBlockPaintableBlock]
523107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedPackedIce$BlockPaintedPackedIceSolid (MobilityFlagForPaintedBlocksMixin)
523207.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
523307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
523407.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Found 1 patch to apply to class crazypants.enderio.base.block.painted.BlockPaintedPackedIce$BlockPaintedPackedIceNonSolid from implemented interfaces: [crazypants/enderio/base/paint/IPaintable$INonSolidBlockPaintableBlock]
523507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.block.painted.BlockPaintedPackedIce$BlockPaintedPackedIceNonSolid (MobilityFlagForPaintedBlocksMixin)
523607.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
523707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
523807.09 15:17:41 [Server] 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]
523907.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.travelstaff.ItemTravelStaff (DarkSteelUpgradeMixin)
524007.09 15:17:41 [Server] 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]
524107.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
524207.09 15:17:41 [Server] 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]
524307.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.power.forge.item.AbstractPoweredItem (InternalPoweredItemMixin)
524407.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;]
524507.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
524607.09 15:17:41 [Server] 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]
524707.09 15:17:41 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelShield (DarkSteelUpgradeMixin)
524807.09 15:17:41 [Server] 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]
524907.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
525007.09 15:17:42 [Server] 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]
525107.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelSword (DarkSteelUpgradeMixin)
525207.09 15:17:42 [Server] 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]
525307.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
525407.09 15:17:42 [Server] 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]
525507.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelPickaxe (DarkSteelUpgradeMixin)
525607.09 15:17:42 [Server] 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]
525707.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
525807.09 15:17:42 [Server] 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]
525907.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelAxe (DarkSteelUpgradeMixin)
526007.09 15:17:42 [Server] 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]
526107.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
526207.09 15:17:42 [Server] 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]
526307.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelBow (DarkSteelUpgradeMixin)
526407.09 15:17:42 [Server] 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]
526507.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
526607.09 15:17:42 [Server] 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]
526707.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelShears (DarkSteelUpgradeMixin)
526807.09 15:17:42 [Server] 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]
526907.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
527007.09 15:17:42 [Server] 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]
527107.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelTreetap (DarkSteelUpgradeMixin)
527207.09 15:17:42 [Server] 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]
527307.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
527407.09 15:17:42 [Server] 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]
527507.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.darksteel.ItemDarkSteelHand (DarkSteelUpgradeMixin)
527607.09 15:17:42 [Server] 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]
527707.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
527807.09 15:17:42 [Server] 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]
527907.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.item.staffoflevity.ItemStaffOfLevity (DarkSteelUpgradeMixin)
528007.09 15:17:42 [Server] 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]
528107.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
528207.09 15:17:42 [Server] 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]
528307.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.conduits.conduit.BlockConduitBundle (MobilityFlagForPaintedBlocksMixin)
528407.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
528507.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
528607.09 15:17:42 [Server] 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]
528707.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.powertools.machine.capbank.BlockCapBank (MobilityFlagForPaintedBlocksMixin)
528807.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
528907.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
529007.09 15:17:42 [Server] 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]
529107.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.powertools.machine.capbank.BlockItemCapBank (InternalPoweredItemMixin)
529207.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;]
529307.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
529407.09 15:17:42 [Server] 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]
529507.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.powertools.machine.monitor.BlockPowerMonitor (MobilityFlagForPaintedBlocksMixin)
529607.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
529707.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
529807.09 15:17:42 [Server] 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]
529907.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.alloy.BlockAlloySmelter (MobilityFlagForPaintedBlocksMixin)
530007.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
530107.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
530207.09 15:17:42 [Server] 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]
530307.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.base.power.forge.item.PoweredBlockItem (InternalPoweredItemMixin)
530407.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [initCapabilities(Lnet/minecraft/item/ItemStack;Lnet/minecraft/nbt/NBTTagCompound;)Lnet/minecraftforge/common/capabilities/ICapabilityProvider;]
530507.09 15:17:42 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
530607.09 15:17:43 [Server] 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]
530707.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.buffer.BlockBuffer (MobilityFlagForPaintedBlocksMixin)
530807.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
530907.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
531007.09 15:17:43 [Server] 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]
531107.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.farm.BlockFarmStation (MobilityFlagForPaintedBlocksMixin)
531207.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
531307.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
531407.09 15:17:43 [Server] 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]
531507.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.generator.combustion.BlockCombustionGenerator (MobilityFlagForPaintedBlocksMixin)
531607.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
531707.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
531807.09 15:17:43 [Server] 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]
531907.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.generator.stirling.BlockStirlingGenerator (MobilityFlagForPaintedBlocksMixin)
532007.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
532107.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
532207.09 15:17:43 [Server] 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]
532307.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.generator.lava.BlockLavaGenerator (MobilityFlagForPaintedBlocksMixin)
532407.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
532507.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
532607.09 15:17:43 [Server] 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]
532707.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Patching 1 mixins onto class crazypants.enderio.machines.machine.painter.BlockPainter (MobilityFlagForPaintedBlocksMixin)
532807.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Added 1 new method: [func_149656_h(Lnet/minecraft/block/state/IBlockState;)Lnet/minecraft/block/material/EnumPushReaction;]
532907.09 15:17:43 [Server] Server thread/INFO [EnderCore Mixins]: Successfully patched.
533007.09 15:17:44 [Server] Server thread/INFO [GTCETransformer]: Patched method applyArmor(Lnet/minecraft/entity/EntityLivingBase;Lnet/minecraft/util/NonNullList;Lnet/minecraft/util/DamageSource;D)F in net/minecraftforge/common/ISpecialArmor$ArmorProperties successfully
533107.09 15:17:44 [Server] Server thread/INFO [FML]: Applying holder lookups
533207.09 15:17:44 [Server] Server thread/INFO [FML]: Holder lookups applied
533307.09 15:17:44 [Server] Server thread/WARN [enderio]: TConstruct, you fail again, muhaha! The world is mine, mine!
533407.09 15:17:45 [Server] Server thread/INFO [Quark]: 'Charcoal block' is forcefully disabled as it's incompatible with the following loaded mods: [actuallyadditions, mekanism]
533507.09 15:17:45 [Server] Server thread/INFO [Quark]: 'Ender watcher' is forcefully disabled as it's incompatible with the following loaded mods: [botania]
533607.09 15:17:45 [Server] Server thread/INFO [Quark]: 'Dispensers place seeds' is forcefully disabled as it's incompatible with the following loaded mods: [botania]
533707.09 15:17:45 [Server] Server thread/INFO [Quark]: 'Automatic tool restock' is forcefully disabled as it's incompatible with the following loaded mods: [inventorytweaks]
533807.09 15:17:45 [Server] Server thread/INFO [Quark]: 'Inventory sorting' is forcefully disabled as it's incompatible with the following loaded mods: [inventorytweaks]
533907.09 15:17:46 [Server] Server thread/INFO [Quark]: 'Food tooltip' is forcefully disabled as it's incompatible with the following loaded mods: [appleskin]
534007.09 15:17:46 [Server] Server thread/INFO [Quark]: Module experimental is enabled
534107.09 15:17:46 [Server] Server thread/INFO [Quark]: Module decoration is enabled
534207.09 15:17:46 [Server] Server thread/INFO [Quark]: Module automation is enabled
534307.09 15:17:46 [Server] Server thread/INFO [Quark]: Module world is enabled
534407.09 15:17:46 [Server] Server thread/INFO [Quark]: Module tweaks is enabled
534507.09 15:17:46 [Server] Server thread/INFO [Quark]: Module management is enabled
534607.09 15:17:46 [Server] Server thread/INFO [Quark]: Module misc is enabled
534707.09 15:17:46 [Server] Server thread/INFO [Quark]: Module building is enabled
534807.09 15:17:46 [Server] Server thread/INFO [Quark]: Module client is enabled
534907.09 15:17:46 [Server] Server thread/INFO [Quark]: Module vanity is enabled
535007.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: wood
535107.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: stone
535207.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: flint
535307.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: cactus
535407.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: bone
535507.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: obsidian
535607.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: prismarine
535707.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: endstone
535807.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: paper
535907.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: sponge
536007.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: firewood
536107.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: iron
536207.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: pigiron
536307.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: knightslime
536407.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: slime
536507.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: blueslime
536607.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: magmaslime
536707.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: netherrack
536807.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: cobalt
536907.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: ardite
537007.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: manyullyn
537107.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: copper
537207.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: bronze
537307.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: lead
537407.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: silver
537507.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: electrum
537607.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: steel
537707.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: string
537807.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: slimevine_blue
537907.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: slimevine_purple
538007.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: vine
538107.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: blaze
538207.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: reed
538307.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: ice
538407.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: endrod
538507.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: feather
538607.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: slimeleaf_blue
538707.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: slimeleaf_orange
538807.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: slimeleaf_purple
538907.09 15:17:48 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: leaf
539007.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fire_starter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539107.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `wireless_transmitter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539207.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `wireless_receiver_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539307.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiccable_wireless_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539407.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiccable_wireless_energy_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539507.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiccable_wireless_fluid_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539607.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiclibrary_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539707.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagiclibrary_ctrl_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539807.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `plate_vector_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
539907.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `magnet_anti_block_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540007.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dehydrator_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540107.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beacon_potion_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540207.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `moon_sensor_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540307.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `target_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540407.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beacon_redstone_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540507.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `sprinkler_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540607.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `melter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540707.09 15:17:52 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `solidifier_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540807.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicblock_enchanter_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
540907.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `password_block_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541007.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicbattery_infinite_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541107.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicscreen_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541207.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicscreentarget_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541307.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cyclicmagicentity_detector_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541407.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bucketstorage`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541507.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `laser_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541607.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `sound_player_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541707.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dice_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541807.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `imbuer_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
541907.09 15:17:53 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `void_anvil_te`, expected `cyclicmagic`. This could be a intended override, but in most cases indicates a broken mod.
542007.09 15:17:53 [Server] Server thread/INFO [theoneprobe]: The One Probe Detected RedstoneFlux: enabling support
542107.09 15:17:53 [Server] Server thread/INFO [theoneprobe]: The One Probe Detected Baubles: enabling support
542207.09 15:17:54 [Server] Server thread/INFO [gamestages]: Reloading fakeplayers stage data from gameStagesFakePlayerData.json.
542307.09 15:17:58 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Transforming wh : net.minecraft.entity.ai.attributes.ModifiableAttributeInstance with 1 patches!
542407.09 15:17:58 [Server] Server thread/INFO [Astral Core]: [AstralTransformer] Applied patch PATCHPOSTPROCESSATTRIBUTES
542507.09 15:17:58 [Server] Server thread/INFO [Astral Sorcery]: Crafttweaker found! Adding recipe handlers...
542607.09 15:17:58 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `avaritia_extreme_crafting_table`, expected `avaritia`. This could be a intended override, but in most cases indicates a broken mod.
542707.09 15:17:58 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `neutron_collector`, expected `avaritia`. This could be a intended override, but in most cases indicates a broken mod.
542807.09 15:17:58 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `neutronium_compressor`, expected `avaritia`. This could be a intended override, but in most cases indicates a broken mod.
542907.09 15:17:59 [Server] Server thread/INFO [base]: Module Tool has successfully loaded
543007.09 15:17:59 [Server] Server thread/FATAL [base]: Module JourneyMap did not load due to issue: Mod with modid: journeymap was not found
543107.09 15:18:00 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `adapter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
543207.09 15:18:01 [Server] Server thread/INFO [OpenComputers]: Skipping interface ic2.api.energy.tile.IEnergySink from missing mod ic2.
543307.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `assembler`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
543407.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `cable`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
543507.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `capacitor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
543607.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `carpetedcapacitor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
543707.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `case`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
543807.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `charger`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
543907.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `diskdrive`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544007.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `disassembler`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544107.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `keyboard`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544207.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `hologram`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544307.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `geolyzer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544407.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `microcontroller`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544507.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `motionsensor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544607.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `netsplitter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544707.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `powerconverter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544807.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `powerdistributor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
544907.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `print`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545007.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `printer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545107.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `raid`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545207.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `redstone`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545307.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `relay`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545407.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `robot`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545507.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `screen`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545607.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `rack`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545707.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `transposer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545807.09 15:18:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `oc` for name `waypoint`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
545907.09 15:18:02 [Server] Server thread/INFO [OpenComputers]: Skipping interface ic2.api.item.IBoxable from missing mod ic2.
546007.09 15:18:02 [Server] Server thread/INFO [OpenComputers]: Skipping interface ic2.api.item.ISpecialElectricItem from missing mod ic2.
546107.09 15:18:03 [Server] Server thread/INFO [opencomputers]: Initializing OpenComputers API.
546207.09 15:18:03 [Server] Server thread/INFO [opencomputers]: Found a compatible native library: 'OpenComputersMod-1.7.5.192-lua52-native.64.so'.
546307.09 15:18:03 [Server] Server thread/INFO [opencomputers]: Found a compatible native library: 'OpenComputersMod-1.7.5.192-lua53-native.64.so'.
546407.09 15:18:03 [Server] Server thread/INFO [opencomputers]: Done with pre init phase.
546507.09 15:18:03 [Server] Server thread/INFO [bhc]: Pre-Initialization finished.
546607.09 15:18:04 [Server] Server thread/INFO [Botania Tweaks]: Creating Botania Tweaks registry replacement blocks. Forge will print some safe-to-ignore warnings.
546707.09 15:18:04 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `botania` for name `rfgenerator`, expected `botania_tweaks`. This could be a intended override, but in most cases indicates a broken mod.
546807.09 15:18:04 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `botania` for name `terraplate`, expected `botania_tweaks`. This could be a intended override, but in most cases indicates a broken mod.
546907.09 15:18:04 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `botania` for name `opencrate`, expected `botania_tweaks`. This could be a intended override, but in most cases indicates a broken mod.
547007.09 15:18:04 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `botania` for name `pylon`, expected `botania_tweaks`. This could be a intended override, but in most cases indicates a broken mod.
547107.09 15:18:04 [Server] Server thread/INFO [Botania Tweaks ASM]: Bumping the size of the creative mana pool...
547207.09 15:18:04 [Server] Server thread/INFO [Botania Tweaks ASM]: Patching the manastorm charge's mana output...
547307.09 15:18:04 [Server] Server thread/INFO [Botania Tweaks ASM]: Patching the passive decay timer...
547407.09 15:18:04 [Server] Server thread/INFO [Botania Tweaks ASM]: Patching Key of the King's Law damage output...
547507.09 15:18:05 [Server] 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.
547607.09 15:18:06 [Server] Server thread/INFO [gregtech]: Registered material handler gregicadditions.GAMaterials
547707.09 15:18:06 [Server] Server thread/INFO [gregtech]: Registered material handler gregicadditions.tconstruct.FluidTemp
547807.09 15:18:06 [Server] Server thread/INFO [gregtech]: 2 annotated material handlers registered
547907.09 15:18:06 [Server] Server thread/INFO [gregtech]: Running early CraftTweaker initialization scripts...
548007.09 15:18:06 [Server] Server thread/INFO [gregtech]: Freezing material registry...
548107.09 15:18:06 [Server] Server thread/INFO [gregtech]: Registering MetaTileEntities
548207.09 15:18:07 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `henhouse`, expected `chickens`. This could be a intended override, but in most cases indicates a broken mod.
548307.09 15:18:07 [Server] Server thread/INFO [chickens]: Enabled chickens: [BlueChicken, WaterChicken, YellowChicken, GreenChicken, RedChicken, NetherwartChicken, SmartChicken]
548407.09 15:18:07 [Server] Server thread/INFO [chickens]: Disabled chickens: [WhiteChicken, GunpowderChicken, BlackChicken, IronChicken, BlazeChicken, LogChicken, EmeraldChicken, StringChicken, MagentaChicken, LimeChicken, pShardChicken, pCrystalChicken, SnowballChicken, PurpleChicken, QuartzChicken, SandChicken, SilverDyeChicken, soulSandChicken, LightBlueChicken, GlassChicken, DiamondChicken, obsidianChicken, GhastChicken, RedstoneChicken, FlintChicken, CyanChicken, EnderChicken, LeatherChicken, PinkChicken, GlowstoneChicken, CoalChicken, LavaChicken, OrangeChicken, ClayChicken, SlimeChicken, MagmaChicken, GrayChicken, BrownChicken, GoldChicken]
548507.09 15:18:07 [Server] Server thread/INFO [chickens]: [NORMAL] biome type will spawn []
548607.09 15:18:07 [Server] Server thread/INFO [chickens]: [SNOW] biome type will spawn []
548707.09 15:18:07 [Server] Server thread/INFO [chickens]: [NONE] biome type will spawn []
548807.09 15:18:07 [Server] Server thread/INFO [chickens]: [HELL] biome type will spawn []
548907.09 15:18:07 [Server] Server thread/INFO [compactmachines3]: Loading configuration
549007.09 15:18:07 [Server] Server thread/INFO [compactmachines3]: Registering dimension type: 144
549107.09 15:18:07 [Server] Server thread/INFO [compactmachines3]: Registering Compact Machines 3 dimension: 144
549207.09 15:18:07 [Server] Server thread/INFO [compactmachines3]: Trying to tell The One Probe about us
549307.09 15:18:08 [Server] Server thread/INFO [contenttweaker]: Module Vanilla CraftTweaker has successfully loaded
549407.09 15:18:08 [Server] Server thread/INFO [contenttweaker]: Module Chickens has successfully loaded
549507.09 15:18:08 [Server] Server thread/INFO [contenttweaker]: Module Materials has successfully loaded
549607.09 15:18:08 [Server] Server thread/INFO [contenttweaker]: Module Tinkers has successfully loaded
549707.09 15:18:10 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `hopper`, expected `diethopper`. This could be a intended override, but in most cases indicates a broken mod.
549807.09 15:18:10 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dimensionalcontroltile_entity_dimensional_portal`, expected `dimensionalcontrol`. This could be a intended override, but in most cases indicates a broken mod.
549907.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Doomlike Dungeons is in preInit, should now load config.
550007.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: themesdir is /config/DLDungeonsJBG
550107.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Frequency Scaling Factor Set To: 8
550207.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Minimum X Factor Set To: 16
550307.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Difficulty set to: Super violent.
550407.09 15:18:10 [Server] INFO Dimensions listed in config file: 100, 145, 146, 147, -1,
550507.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will spawn dungeons in with world generation? true
550607.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will spawn dungeons even with structures disabled? true
550707.09 15:18:10 [Server] INFO Will only spawn in these dimensions: 100, 145, 146, 147, -1,
550807.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will export item, block, and mob lists? false
550907.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will announce use of OP/cheat commands? true
551007.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will dungeons be easy to find? true
551107.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will dungeon all have single entrances? true
551207.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will themes be automatically install if themes folder is empty? false
551307.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Can themes be (re)installed by command? true
551407.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: adding END to excusion list
551507.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will use API? true
551607.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will allow API base mob change? true
551707.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Will self-profile? false
551807.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: themesdir will be set to /config/DLDungeonsJBG/themes/
551907.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: themesdir File is be set to /config/DLDungeonsJBG/themes
552007.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: themesdir is /config/DLDungeonsJBG/themes
552107.09 15:18:10 [Server] INFO [DLDUNGEONS] Installing files /config/DLDungeonsJBG/chests.cfg
552207.09 15:18:10 [Server] Server thread/INFO [DLDUNGEONS]: Config should now be loaded.
552307.09 15:18:11 [Server] Server thread/WARN [minecraft/EntityDataManager]: defineId called for: class net.minecraft.entity.monster.EntitySlime from class teamroots.emberroot.entity.slime.EntityRainbowSlime
552407.09 15:18:11 [Server] Server thread/WARN [enderio]: Applied Energistics conduits loaded. Let your networks connect!
552507.09 15:18:11 [Server] Server thread/WARN [FTB Library]: Replacing com.feed_the_beast.ftblib.lib.config.DefaultRankConfigHandler with com.feed_the_beast.ftbutilities.ranks.FTBUtilitiesPermissionHandler
552607.09 15:18:12 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ender chest`, expected `enderstorage`. This could be a intended override, but in most cases indicates a broken mod.
552707.09 15:18:12 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ender tank`, expected `enderstorage`. This could be a intended override, but in most cases indicates a broken mod.
552807.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `xutesrtile`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
552907.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: magical_modifier
553007.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: brittle
553107.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: xu_withering
553207.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: xu_xp_boost
553307.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: xu_whispering
553407.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: xu_magical_wood
553507.09 15:18:16 [Server] Server thread/WARN [tconstruct-API]: Itemstack 1xitem.null@17 cannot represent material xu_evil_metal since it is not associated with the material!
553607.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: xu_evil_metal
553707.09 15:18:16 [Server] Server thread/WARN [tconstruct-API]: Itemstack 1xitem.null@12 cannot represent material xu_enchanted_metal since it is not associated with the material!
553807.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: xu_enchanted_metal
553907.09 15:18:16 [Server] Server thread/WARN [tconstruct-API]: Itemstack 1xitem.null@11 cannot represent material xu_demonic_metal since it is not associated with the material!
554007.09 15:18:16 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: xu_demonic_metal
554107.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilesoundmuffler`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
554207.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tiletrashcan`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
554307.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tiletrashcanfluids`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
554407.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tiletrashcanenergy`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
554507.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilepassivegenerator`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
554607.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilepowerhandcrank`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
554707.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilespotlight`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
554807.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilescreen`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
554907.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tileplayerchest`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555007.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilecrafter`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555107.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilescanner`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555207.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilemine`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555307.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tileuse`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555407.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tank16`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555507.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tank256`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555607.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tank4096`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555707.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tank65536`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555807.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tankinf`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
555907.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilemachineprovider`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556007.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilemachinereceiver`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556107.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tileteleporter`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556207.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilepowertransmitter`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556307.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilepowerbattery`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556407.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilelargishchest`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556507.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tileminchest`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556607.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilerainbowgenerator`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556707.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilecreativechest`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556807.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilecreativeenergy`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
556907.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tilecreativeharvest`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
557007.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tileterraformer`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
557107.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tileterraformerclimograph`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
557207.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tiletrashchest`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
557307.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tileanalogcrafter`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
557407.09 15:18:16 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `xu2` for name `tileinteractionproxy`, expected `extrautils2`. This could be a intended override, but in most cases indicates a broken mod.
557507.09 15:18:17 [Server] Server thread/INFO [floralchemy]: Module Botania has successfully loaded
557607.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Initialising API
557707.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Initialised API
557807.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Registering Blocks
557907.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Loaded Blocks
558007.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Registering Crafting Recipes
558107.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Register Crafting Recipes
558207.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ITileEnergyHandler loaded successfully: sonar.core.handlers.energy.tiles.TileHandlerForge
558307.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load ITileEnergyHandler sonar.core.handlers.energy.tiles.TileHandlerTesla for modid tesla
558407.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ITileEnergyHandler loaded successfully: sonar.core.handlers.energy.tiles.TileHandlerRedstoneFlux
558507.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load ITileEnergyHandler sonar.core.handlers.energy.tiles.TileHandlerEnergyUnits for modid ic2
558607.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ITileEnergyHandler loaded successfully: sonar.core.handlers.energy.tiles.TileHandlerMekanism
558707.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ITileEnergyHandler loaded successfully: sonar.core.handlers.energy.tiles.TileHandlerAppliedEnergistics
558807.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load ISonarFluidHandler sonar.core.handlers.fluids.tiles.DeepResonanceTank for modid deepresonance
558907.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ISonarFluidHandler loaded successfully: sonar.core.handlers.fluids.tiles.FluidCapabilityHandler
559007.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load ISonarFluidHandler sonar.core.handlers.fluids.tiles.RefinedStorageHandler for modid refinedstorage
559107.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ISonarFluidHandler loaded successfully: sonar.core.handlers.fluids.tiles.AE2FluidHandler
559207.09 15:18:18 [Server] Server thread/INFO [sonarcore]: IItemEnergyHandler loaded successfully: sonar.core.handlers.energy.items.ItemHandlerForge
559307.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load IItemEnergyHandler sonar.core.handlers.energy.items.ItemHandlerTesla for modid tesla
559407.09 15:18:18 [Server] Server thread/INFO [sonarcore]: IItemEnergyHandler loaded successfully: sonar.core.handlers.energy.items.ItemHandlerRedstoneFlux
559507.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load IItemEnergyHandler sonar.core.handlers.energy.items.ItemHandlerEnergyUnits for modid ic2
559607.09 15:18:18 [Server] Server thread/INFO [sonarcore]: IItemEnergyHandler loaded successfully: sonar.core.handlers.energy.items.ItemHandlerMekanism
559707.09 15:18:18 [Server] Server thread/INFO [sonarcore]: IItemEnergyHandler loaded successfully: sonar.core.handlers.energy.items.ItemHandlerAppliedEnergistics
559807.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load ISonarPlanter sonar.core.handlers.planting.agricraft.AgricraftPlanter for modid agricraft
559907.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ISonarPlanter loaded successfully: sonar.core.handlers.planting.extrautilities.EnderLillyPlanter
560007.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ISonarPlanter loaded successfully: sonar.core.handlers.planting.vanilla.VanillaPlanter
560107.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load ISonarHarvester sonar.core.handlers.planting.agricraft.AgricraftHarvester for modid agricraft
560207.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ISonarHarvester loaded successfully: sonar.core.handlers.planting.vanilla.VanillaHarvester
560307.09 15:18:18 [Server] Server thread/INFO [sonarcore]: Couldn't load ISonarFertiliser sonar.core.handlers.planting.agricraft.AgricraftFertiliser for modid agricraft
560407.09 15:18:18 [Server] Server thread/INFO [sonarcore]: ISonarFertiliser loaded successfully: sonar.core.handlers.planting.vanilla.VanillaFertiliser
560507.09 15:18:18 [Server] Server thread/INFO [foamfix]: Removing LaunchWrapper package manifest map...
560607.09 15:18:19 [Server] Server thread/WARN [FML]: Replacing net.minecraftforge.server.permission.DefaultPermissionHandler with com.feed_the_beast.ftbutilities.ranks.FTBUtilitiesPermissionHandler
560707.09 15:18:19 [Server] Server thread/INFO [newframes]: Let's Move!
560807.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: loading configuration
560907.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_compressor
561007.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_extractor
561107.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_macerator
561207.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_oreWasher
561307.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_thermalCentrifuge
561407.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_furnace
561507.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_microwave
561607.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_assembler
561707.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_formingPress
561807.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_fluidCanner
561907.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_plasmaArcFurnace
562007.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_arcFurnace
562107.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_sifter
562207.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_laserEngraver
562307.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_mixer
562407.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_autoclave
562507.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_electromagneticSeparator
562607.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_polarizer
562707.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_chemicalBath
562807.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_brewing
562907.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_fluidHeater
563007.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_distillery
563107.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_fermenting
563207.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_fluidSolidfication
563307.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_fluidExtraction
563407.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_fusion
563507.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_centrifuge
563607.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_electrolyzer
563707.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_blast
563807.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_implosion
563907.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_vacuum
564007.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_chemical
564107.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_distillation
564207.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_cracking
564307.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_pyrolyse
564407.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_wiremill
564507.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_bender
564607.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_alloySmelter
564707.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_canner
564807.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_lathe
564907.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_cutter
565007.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_extruder
565107.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_forgeHammer
565207.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_packer
565307.09 15:18:20 [Server] Server thread/INFO [gtce2oc]: Registering recipe handler gtce_unpacker
565407.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `lectern`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
565507.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `podium`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
565607.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `egginice`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
565707.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pixie_house`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
565807.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `jar`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
565907.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dread_portal`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
566007.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dread_spawner`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
566107.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dummygorgonheadidle`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
566207.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dummygorgonheadactive`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
566307.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `myrmexcocoon`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
566407.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dragonforge`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
566507.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dragonforgeinput`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
566607.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dragonforgebrick`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
566707.09 15:18:30 [Server] Server thread/INFO [Ice And Fire]: A raven flies from the north to the sea
566807.09 15:18:30 [Server] Server thread/INFO [Ice And Fire]: A dragon whispers her name in the east
566907.09 15:18:30 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `tconstruct` for name `splinter`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
567007.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: splintering2
567107.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: splitting2
567207.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: fractured2
567307.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: hive_defender
567407.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: frost2
567507.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: flame2
567607.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: frost
567707.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: flame
567807.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: antigravity
567907.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: arrow_knockback
568007.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: in_the_garage
568107.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: sweater_song
568207.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: surf_wax_america
568307.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: dragonbone
568407.09 15:18:30 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: desert_myrmex
568507.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: alien
568607.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: aquadynamic
568707.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: aridiculous
568807.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: autosmelt
568907.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: baconlicious
569007.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: cheap
569107.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: cheapskate
569207.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: coldblooded
569307.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: crude1
569407.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: crude1
569507.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: crude2
569607.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: crumbling
569707.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: dense
569807.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: depthdigger
569907.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: duritos
570007.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: ecological
570107.09 15:18:31 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `tconstruct` for name `enderference`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
570207.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: enderference
570307.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: established
570407.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: flammable
570507.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: fractured
570607.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: heavy
570707.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: hellish
570807.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: holy
570907.09 15:18:31 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `tconstruct` for name `insatiable`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
571007.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: insatiable
571107.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: jagged
571207.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: lightweight
571307.09 15:18:31 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `tconstruct` for name `magnetic`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
571407.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: magnetic1
571507.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: magnetic1
571607.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: magnetic2
571707.09 15:18:31 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `tconstruct` for name `momentum`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
571807.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: momentum
571907.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: petramor
572007.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: poisonous
572107.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: prickly
572207.09 15:18:31 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `tconstruct` for name `dot`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
572307.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: sharp
572407.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: shocking
572507.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: slimey_green
572607.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: slimey_blue
572707.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: spiky
572807.09 15:18:31 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `tconstruct` for name `splinter`, expected `iceandfire`. This could be a intended override, but in most cases indicates a broken mod.
572907.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: splintering
573007.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: splinters
573107.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: squeaky
573207.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: superheat
573307.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: stiff
573407.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: stonebound
573507.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: tasty
573607.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: unnatural
573707.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: writable1
573807.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: writable1
573907.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: writable2
574007.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: breakable
574107.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: endspeed
574207.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: freezing
574307.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: hovering
574407.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: splitting
574507.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: jungle_myrmex
574607.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: dragonsteel_fire
574707.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: dragonsteel_ice
574807.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: stymph_feather
574907.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: amphithere_feather
575007.09 15:18:31 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: weezer
575107.09 15:18:31 [Server] Server thread/INFO [incontrol]: Enabling support for Game Stages
575207.09 15:18:31 [Server] Server thread/INFO [incontrol]: Enabling support for Baubles
575307.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `apple`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
575407.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `wheat`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
575507.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `potato`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
575607.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `carrot`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
575707.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beetroot`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
575807.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `melon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
575907.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beef`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576007.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_beef`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576107.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `chicken`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576207.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_chicken`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576307.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `porkchop`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576407.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_porkchop`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576507.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rabbit`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576607.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_rabbit`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576707.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mutton`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576807.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_mutton`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
576907.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cod`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577007.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_cod`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577107.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `salmon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577207.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_salmon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577307.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clownfish`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577407.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pufferfish`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577507.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mushroom_stew`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577607.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bread`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577707.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cookie`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577807.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `baked_potato`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
577907.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pumpkin_pie`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
578007.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rabbit_stew`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
578107.09 15:18:37 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beetroot_soup`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
578207.09 15:18:38 [Server] Server thread/INFO [OpenComputers]: Successfully injected component logic into class mcjty.rftools.blocks.screens.ScreenControllerTileEntity.
578307.09 15:18:38 [Server] Server thread/INFO [mcjtylib_ng]: Could not read 'userbuilder.json', this is not an error!
578407.09 15:18:38 [Server] Server thread/INFO [OpenComputers]: Successfully injected component logic into class mcjty.rftools.blocks.shield.ShieldTEBase.
578507.09 15:18:38 [Server] Server thread/INFO [OpenComputers]: Successfully injected component logic into class mcjty.rftools.blocks.environmental.EnvironmentalControllerTileEntity.
578607.09 15:18:38 [Server] Server thread/INFO [OpenComputers]: Successfully injected component logic into class mcjty.rftools.blocks.blockprotector.BlockProtectorTileEntity.
578707.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering drink handlers for Thermal Foundation...
578807.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered drink handlers for Thermal Foundation
578907.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Laser Drill entries for Thermal Foundation...
579007.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Laser Drill entries for Thermal Foundation
579107.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Pre-initialising integration for Tinkers' Construct...
579207.09 15:18:39 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: slimey_pink
579307.09 15:18:39 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: integrationforegoing.plastic
579407.09 15:18:39 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: integrationforegoing.pink_slime
579507.09 15:18:39 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: integrationforegoing.reinforced_pink_slime
579607.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Pre-initialised integration for Tinkers' Construct
579707.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering drink handlers for Tinkers' Construct...
579807.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered drink handlers for Tinkers' Construct
579907.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Laser Drill entries for Applied Energistics 2...
580007.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Laser Drill entries for Applied Energistics 2
580107.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Laser Drill entries for RFTools...
580207.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Laser Drill entries for RFTools
580307.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Laser Drill entries for Actually Additions...
580407.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Laser Drill entries for Actually Additions
580507.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Plant Gatherer entries for Extra Utilities 2...
580607.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Plant Gatherer entries for Extra Utilities 2
580707.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering drink handlers for Rustic...
580807.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered drink handlers for Rustic
580907.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Plant Gatherer entries for Rustic...
581007.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Plant Gatherer entries for Rustic
581107.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering drink handlers for Ender IO...
581207.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered drink handlers for Ender IO
581307.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering drink handlers for Astral Sorcery...
581407.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered drink handlers for Astral Sorcery
581507.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Laser Drill entries for Astral Sorcery...
581607.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Laser Drill entries for Astral Sorcery
581707.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Plant Gatherer entries for Botania...
581807.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Plant Gatherer entries for Botania
581907.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Laser Drill entries for Cyclic...
582007.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Laser Drill entries for Cyclic
582107.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Plant Gatherer entries for Random Things...
582207.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Plant Gatherer entries for Random Things
582307.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registering Laser Drill entries for Thaumcraft...
582407.09 15:18:39 [Server] Server thread/INFO [Integration Foregoing]: Registered Laser Drill entries for Thaumcraft
582507.09 15:18:39 [Server] Server thread/INFO [justenoughdimensions]: Reloading the main configs from file '/config/justenoughdimensions/justenoughdimensions.cfg'
582607.09 15:18:39 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.lcrdrfs.robo_dino_egg`, expected `lcrdrfs`. This could be a intended override, but in most cases indicates a broken mod.
582707.09 15:18:39 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `threng` for name `machine`, expected `libnine`. This could be a intended override, but in most cases indicates a broken mod.
582807.09 15:18:39 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `threng` for name `machine`, expected `libnine`. This could be a intended override, but in most cases indicates a broken mod.
582907.09 15:18:40 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `threng` for name `big_assembler`, expected `libnine`. This could be a intended override, but in most cases indicates a broken mod.
583007.09 15:18:40 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `threng` for name `big_assembler`, expected `libnine`. This could be a intended override, but in most cases indicates a broken mod.
583107.09 15:18:40 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `threng` for name `material`, expected `libnine`. This could be a intended override, but in most cases indicates a broken mod.
583207.09 15:18:40 [Server] Server thread/INFO [threng]: Loading mod integration: opencomputers
583307.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: ====================================================
583407.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: LogisticsPipes Logger initialized, enabled levels:
583507.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: ----------------------------------------------------
583607.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Fatal: true
583707.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Error: true
583807.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Warn: true
583907.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Info: true
584007.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Trace: true
584107.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Debug: true
584207.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: ====================================================
584307.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded BC DummyProxy
584407.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded IC2 DummyProxy
584507.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded CC DummyProxy
584607.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded ThermalExpansionProxy
584707.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded BetterStorage DummyProxy
584807.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded NEI DummyProxy
584907.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded Factorization DummyProxy
585007.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded EnderIO DummyProxy
585107.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded IronChestProxy
585207.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded EnderStorageProxy
585307.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded OpenComputersProxy
585407.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded TDProxy
585507.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded MCMPProxy
585607.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded CCLProxy
585707.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Didn't load BuildCraft PipeConfigToolWrapper
585807.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Loaded CoFH PipeConfigToolWrapper
585907.09 15:18:44 [Server] Server thread/INFO [logisticspipes]: Running Logistics Pipes 0.10.3.62, target Forge 1.12.2-14.23.5.2854, vendor https://ci.rs485.network/
586007.09 15:18:44 [Server] Server thread/INFO [Logistics Bridge]: Start Pre Initialization
586107.09 15:18:44 [Server] Server thread/INFO [Logistics Bridge]: Pre Initialization took in 149 milliseconds
586207.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tilecolorablemachinecomponent`, expected `modularmachinery`. This could be a intended override, but in most cases indicates a broken mod.
586307.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tilemachinecontroller`, expected `modularmachinery`. This could be a intended override, but in most cases indicates a broken mod.
586407.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tilefluidinputhatch`, expected `modularmachinery`. This could be a intended override, but in most cases indicates a broken mod.
586507.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tilefluidoutputhatch`, expected `modularmachinery`. This could be a intended override, but in most cases indicates a broken mod.
586607.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileitemoutputbus`, expected `modularmachinery`. This could be a intended override, but in most cases indicates a broken mod.
586707.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileiteminputbus`, expected `modularmachinery`. This could be a intended override, but in most cases indicates a broken mod.
586807.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileenergyinputhatch`, expected `modularmachinery`. This could be a intended override, but in most cases indicates a broken mod.
586907.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileenergyoutputhatch`, expected `modularmachinery`. This could be a intended override, but in most cases indicates a broken mod.
587007.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tilemanainputhatch`, expected `modulardiversity`. This could be a intended override, but in most cases indicates a broken mod.
587107.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tilemanaoutputhatch`, expected `modulardiversity`. This could be a intended override, but in most cases indicates a broken mod.
587207.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileentitymeklaseracceptor`, expected `modulardiversity`. This could be a intended override, but in most cases indicates a broken mod.
587307.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileentitymekheatinput`, expected `modulardiversity`. This could be a intended override, but in most cases indicates a broken mod.
587407.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileentitymekheatoutput`, expected `modulardiversity`. This could be a intended override, but in most cases indicates a broken mod.
587507.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileentitybiomedetector`, expected `modulardiversity`. This could be a intended override, but in most cases indicates a broken mod.
587607.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileentitydaylightdetector`, expected `modulardiversity`. This could be a intended override, but in most cases indicates a broken mod.
587707.09 15:18:45 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileentityweatherdetector`, expected `modulardiversity`. This could be a intended override, but in most cases indicates a broken mod.
587807.09 15:18:45 [Server] Server thread/INFO [More Chickens]: More Chickens PreInit...
587907.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: explosive
588007.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: terrafirma1
588107.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: terrafirma1
588207.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: terrafirma2
588307.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: elemental
588407.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: global
588507.09 15:18:49 [Server] Server thread/WARN [FML]: Unable to inject capability landmaster.plustic.api.Toggle$IToggleArmor at landmaster.plustic.traits.armor.Invariant.TOGGLE_ARMOR
588607.09 15:18:49 [Server] INFO java.lang.ClassNotFoundException: landmaster.plustic.traits.armor.Invariant
588707.09 15:18:49 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) ~[launchwrapper-1.12.jar:?]
588807.09 15:18:49 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_211]
588907.09 15:18:49 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_211]
589007.09 15:18:49 [Server] INFO at java.lang.Class.forName0(Native Method) ~[?:1.8.0_211]
589107.09 15:18:49 [Server] INFO at java.lang.Class.forName(Class.java:264) ~[?:1.8.0_211]
589207.09 15:18:49 [Server] INFO at net.minecraftforge.common.capabilities.CapabilityManager$2.apply(CapabilityManager.java:162) ~[CapabilityManager$2.class:?]
589307.09 15:18:49 [Server] INFO at net.minecraftforge.common.capabilities.CapabilityManager$2.apply(CapabilityManager.java:156) ~[CapabilityManager$2.class:?]
589407.09 15:18:49 [Server] INFO at net.minecraftforge.common.capabilities.CapabilityManager.register(CapabilityManager.java:95) ~[CapabilityManager.class:?]
589507.09 15:18:49 [Server] INFO at landmaster.plustic.api.Toggle.<clinit>(Toggle.java:48) ~[Toggle.class:?]
589607.09 15:18:49 [Server] INFO at landmaster.plustic.traits.Global.<init>(Global.java:38) ~[Global.class:?]
589707.09 15:18:49 [Server] INFO at landmaster.plustic.traits.Global.<clinit>(Global.java:31) ~[Global.class:?]
589807.09 15:18:49 [Server] INFO at landmaster.plustic.modules.ModuleBase.init(ModuleBase.java:64) ~[ModuleBase.class:?]
589907.09 15:18:49 [Server] INFO at java.lang.Iterable.forEach(Iterable.java:75) [?:1.8.0_211]
590007.09 15:18:49 [Server] INFO at landmaster.plustic.PlusTiC.preInit(PlusTiC.java:138) [PlusTiC.class:?]
590107.09 15:18:49 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
590207.09 15:18:49 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
590307.09 15:18:49 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
590407.09 15:18:49 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
590507.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:637) [FMLModContainer.class:?]
590607.09 15:18:49 [Server] INFO at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source) ~[?:?]
590707.09 15:18:49 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
590807.09 15:18:49 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
590907.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
591007.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
591107.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
591207.09 15:18:49 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
591307.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
591407.09 15:18:49 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
591507.09 15:18:49 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
591607.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
591707.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
591807.09 15:18:49 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
591907.09 15:18:49 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
592007.09 15:18:49 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
592107.09 15:18:49 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
592207.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
592307.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
592407.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
592507.09 15:18:49 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
592607.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
592707.09 15:18:49 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
592807.09 15:18:49 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
592907.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
593007.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:629) [Loader.class:?]
593107.09 15:18:49 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:99) [FMLServerHandler.class:?]
593207.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
593307.09 15:18:49 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
593407.09 15:18:49 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
593507.09 15:18:49 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
593607.09 15:18:49 [Server] INFO Caused by: java.lang.NoClassDefFoundError: c4/conarm/lib/traits/AbstractArmorTrait
593707.09 15:18:49 [Server] INFO at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_211]
593807.09 15:18:49 [Server] INFO at java.lang.ClassLoader.defineClass(ClassLoader.java:763) ~[?:1.8.0_211]
593907.09 15:18:49 [Server] INFO at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[?:1.8.0_211]
594007.09 15:18:49 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.12.jar:?]
594107.09 15:18:49 [Server] INFO ... 48 more
594207.09 15:18:49 [Server] INFO Caused by: java.lang.ClassNotFoundException: c4.conarm.lib.traits.AbstractArmorTrait
594307.09 15:18:49 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:101) ~[launchwrapper-1.12.jar:?]
594407.09 15:18:49 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_211]
594507.09 15:18:49 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_211]
594607.09 15:18:49 [Server] INFO at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_211]
594707.09 15:18:49 [Server] INFO at java.lang.ClassLoader.defineClass(ClassLoader.java:763) ~[?:1.8.0_211]
594807.09 15:18:49 [Server] INFO at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[?:1.8.0_211]
594907.09 15:18:49 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.12.jar:?]
595007.09 15:18:49 [Server] INFO ... 48 more
595107.09 15:18:49 [Server] Server thread/WARN [FML]: Unable to inject capability landmaster.plustic.api.Toggle$IToggleArmor at landmaster.plustic.api.Toggle$Gui.TOGGLE_ARMOR
595207.09 15:18:49 [Server] INFO java.lang.ClassNotFoundException: landmaster.plustic.api.Toggle$Gui
595307.09 15:18:49 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) ~[launchwrapper-1.12.jar:?]
595407.09 15:18:49 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_211]
595507.09 15:18:49 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_211]
595607.09 15:18:49 [Server] INFO at java.lang.Class.forName0(Native Method) ~[?:1.8.0_211]
595707.09 15:18:49 [Server] INFO at java.lang.Class.forName(Class.java:264) ~[?:1.8.0_211]
595807.09 15:18:49 [Server] INFO at net.minecraftforge.common.capabilities.CapabilityManager$2.apply(CapabilityManager.java:162) ~[CapabilityManager$2.class:?]
595907.09 15:18:49 [Server] INFO at net.minecraftforge.common.capabilities.CapabilityManager$2.apply(CapabilityManager.java:156) ~[CapabilityManager$2.class:?]
596007.09 15:18:49 [Server] INFO at net.minecraftforge.common.capabilities.CapabilityManager.register(CapabilityManager.java:95) ~[CapabilityManager.class:?]
596107.09 15:18:49 [Server] INFO at landmaster.plustic.api.Toggle.<clinit>(Toggle.java:48) ~[Toggle.class:?]
596207.09 15:18:49 [Server] INFO at landmaster.plustic.traits.Global.<init>(Global.java:38) ~[Global.class:?]
596307.09 15:18:49 [Server] INFO at landmaster.plustic.traits.Global.<clinit>(Global.java:31) ~[Global.class:?]
596407.09 15:18:49 [Server] INFO at landmaster.plustic.modules.ModuleBase.init(ModuleBase.java:64) ~[ModuleBase.class:?]
596507.09 15:18:49 [Server] INFO at java.lang.Iterable.forEach(Iterable.java:75) [?:1.8.0_211]
596607.09 15:18:49 [Server] INFO at landmaster.plustic.PlusTiC.preInit(PlusTiC.java:138) [PlusTiC.class:?]
596707.09 15:18:49 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
596807.09 15:18:49 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
596907.09 15:18:49 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
597007.09 15:18:49 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
597107.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:637) [FMLModContainer.class:?]
597207.09 15:18:49 [Server] INFO at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source) ~[?:?]
597307.09 15:18:49 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
597407.09 15:18:49 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
597507.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
597607.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
597707.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
597807.09 15:18:49 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
597907.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
598007.09 15:18:49 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
598107.09 15:18:49 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
598207.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [LoadController.class:?]
598307.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [LoadController.class:?]
598407.09 15:18:49 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
598507.09 15:18:49 [Server] INFO at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
598607.09 15:18:49 [Server] INFO at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
598707.09 15:18:49 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
598807.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [minecraft_server.1.12.2.jar:?]
598907.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [minecraft_server.1.12.2.jar:?]
599007.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [minecraft_server.1.12.2.jar:?]
599107.09 15:18:49 [Server] INFO at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [minecraft_server.1.12.2.jar:?]
599207.09 15:18:49 [Server] INFO at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [minecraft_server.1.12.2.jar:?]
599307.09 15:18:49 [Server] INFO at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [minecraft_server.1.12.2.jar:?]
599407.09 15:18:49 [Server] INFO at com.google.common.eventbus.EventBus.post(EventBus.java:217) [minecraft_server.1.12.2.jar:?]
599507.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [LoadController.class:?]
599607.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:629) [Loader.class:?]
599707.09 15:18:49 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:99) [FMLServerHandler.class:?]
599807.09 15:18:49 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) [FMLCommonHandler.class:?]
599907.09 15:18:49 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) [nz.class:?]
600007.09 15:18:49 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
600107.09 15:18:49 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
600207.09 15:18:49 [Server] INFO Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/gui/GuiScreen
600307.09 15:18:49 [Server] INFO at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_211]
600407.09 15:18:49 [Server] INFO at java.lang.ClassLoader.defineClass(ClassLoader.java:763) ~[?:1.8.0_211]
600507.09 15:18:49 [Server] INFO at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[?:1.8.0_211]
600607.09 15:18:49 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.12.jar:?]
600707.09 15:18:49 [Server] INFO ... 48 more
600807.09 15:18:49 [Server] INFO Caused by: java.lang.ClassNotFoundException: net.minecraft.client.gui.GuiScreen
600907.09 15:18:49 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:101) ~[launchwrapper-1.12.jar:?]
601007.09 15:18:49 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_211]
601107.09 15:18:49 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_211]
601207.09 15:18:49 [Server] INFO at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_211]
601307.09 15:18:49 [Server] INFO at java.lang.ClassLoader.defineClass(ClassLoader.java:763) ~[?:1.8.0_211]
601407.09 15:18:49 [Server] INFO at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[?:1.8.0_211]
601507.09 15:18:49 [Server] INFO at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.12.jar:?]
601607.09 15:18:49 [Server] INFO ... 48 more
601707.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: nickoftime
601807.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: devilsstrength
601907.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: sassy
602007.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: illuminati
602107.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: brownmagic
602207.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: anticorrosion
602307.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: light
602407.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: bloodymary
602507.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: heavy_metal
602607.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: portly
602707.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: unnamed
602807.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: starfishy
602907.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: spades
603007.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: hearts
603107.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: vindictive
603207.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: morganlefay
603307.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: apocalypse
603407.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Modifier: thaumic
603507.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: infinity_avaritia_plustic
603607.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: enderium_plustic
603707.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: titanium
603807.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: thaumium
603907.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: osmium
604007.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: invar
604107.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: fluixcrystal_plustic
604207.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: osmiridium
604307.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: tnt
604407.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: emeradic_actadd_plustic
604507.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: lumium_plustic
604607.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: diamatine_actadd_plustic
604707.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: restonia_actadd_plustic
604807.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: osgloglas
604907.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: platinum_plustic
605007.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: certusquartz_plustic
605107.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: refinedobsidian
605207.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: alumite
605307.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: iridium
605407.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: refinedglowstone
605507.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: palis_actadd_plustic
605607.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: enori_actadd_plustic
605707.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: blackquartz_plustic
605807.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: void_actadd_plustic
605907.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: nickel
606007.09 15:18:49 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: signalum_plustic
606107.09 15:18:49 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `portalgun_tileentityportalmaster`, expected `portalgun`. This could be a intended override, but in most cases indicates a broken mod.
606207.09 15:18:49 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `portalgun_tileentityportalbase`, expected `portalgun`. This could be a intended override, but in most cases indicates a broken mod.
606307.09 15:18:50 [Server] Server thread/INFO [reborncore]: Pre loaded registries in 93ms
606407.09 15:18:50 [Server] Server thread/INFO [reborncore]: Loaded registrys for reborncore.common.registration.RegistryConstructionEvent in 73ms
606507.09 15:18:50 [Server] Server thread/INFO [reborncore]: Loaded power manager from: ForgePowerManager
606607.09 15:18:50 [Server] Server thread/INFO [reborncore]: Loaded registrys for net.minecraftforge.fml.common.event.FMLPreInitializationEvent in 19ms
606707.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Loading [Scavenge Forge] Version [1.2]
606807.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Successfully Loaded [Scavenge Forge]
606907.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Loading [Scavenge Player] Version [1.1]
607007.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Successfully Loaded [Scavenge Player]
607107.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Loading [Scavenge Score] Version [1.0]
607207.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Successfully Loaded [Scavenge Score]
607307.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Loading [Scavenge Utils] Version [1.2]
607407.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Successfully Loaded [Scavenge Utils]
607507.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Loading [Scavenge Loot] Version [1.0]
607607.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Successfully Loaded [Scavenge Loot]
607707.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Loading [Scavenge World] Version [1.1]
607807.09 15:18:51 [Server] Server thread/INFO [ScavengePluginLoader]: Successfully Loaded [Scavenge World]
607907.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: aluminium
608007.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: chrome
608107.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: manganese
608207.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: molybdenum
608307.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: neodymium
608407.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: darmstadtium
608507.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: palladium
608607.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: thorium
608707.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: tungsten
608807.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: uranium
608907.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: uranium235
609007.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: brass
609107.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: magnalium
609207.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: stainless_steel
609307.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: ultimet
609407.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: wrought_iron
609507.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: sterling_silver
609607.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: rose_gold
609707.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: black_bronze
609807.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: bismuth_bronze
609907.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: black_steel
610007.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: red_steel
610107.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: blue_steel
610207.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: damascus_steel
610307.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: tungsten_steel
610407.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: cobalt_brass
610507.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: tungsten_carbide
610607.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: vanadium_steel
610707.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: hssg
610807.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: hsse
610907.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: hsss
611007.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: naquadah
611107.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: naquadah_alloy
611207.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: naquadah_enriched
611307.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: tritanium
611407.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: duranium
611507.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: neutronium
611607.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: blue_topaz
611707.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: diamond
611807.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: emerald
611907.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: green_sapphire
612007.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: ruby
612107.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: sapphire
612207.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: tanzanite
612307.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: topaz
612407.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: olivine
612507.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: opal
612607.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: amethyst
612707.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: garnet_red
612807.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: garnet_yellow
612907.09 15:18:52 [Server] Server thread/INFO [com.mjr.tinkersextras.EventHandlerMain]: tinkersextras: Material: vinteum
613007.09 15:18:53 [Server] Server thread/INFO [thaumicenergistics]: Integrations: PreInit
613107.09 15:18:54 [Server] Server thread/INFO [togetherforever]: Registering SyncAction with id advancement_event_sync and class com.buuz135.togetherforever.action.AdvancementEventSyncAction
613207.09 15:18:54 [Server] Server thread/INFO [togetherforever]: Registering SyncAction with id gamestage_event_sync and class com.buuz135.togetherforever.action.GameStagesEventSyncAction
613307.09 15:18:54 [Server] Server thread/INFO [togetherforever]: Registering TogetherTeam with id default_together_team and class com.buuz135.togetherforever.api.data.DefaultTogetherTeam
613407.09 15:18:54 [Server] Server thread/INFO [togetherforever]: Registering PlayerInformation with id default_player_information and class com.buuz135.togetherforever.api.data.DefaultPlayerInformation
613507.09 15:18:54 [Server] Server thread/INFO [tombmanygraves]: [TombManyGraves]: Successfully loaded the friend list.
613607.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Found 22 addon candidates.
613707.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Rustic.
613807.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Thermal Dynamics.
613907.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Vanilla.
614007.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Blood Magic: Alchemical Wizardry with 2 special helmets.
614107.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Base.
614207.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon OpenComputers.
614307.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Tinkers' Construct.
614407.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon ArchitectureCraft.
614507.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Thermal Expansion.
614607.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Extra Utilities 2.
614707.09 15:18:54 [Server] Server thread/INFO [TOP Addons]: Created addon Chisel.
614807.09 15:18:54 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `craftinggrid`, expected `translocators`. This could be a intended override, but in most cases indicates a broken mod.
614907.09 15:18:54 [Server] Server thread/INFO [wizardry]: IT'S LEVI-OH-SA, NOT LEVIOSAA
615007.09 15:18:55 [Server] Server thread/INFO [wizardry]: > Starting to upgrade manifest ...
615107.09 15:18:55 [Server] Server thread/INFO [wizardry]: > Manifest is up-to-date. No changes were performed.
615207.09 15:18:55 [Server] Server thread/INFO [wizardry]: > Found manifest file. Reading...
615307.09 15:18:55 [Server] Server thread/INFO [wizardry]: > |____________________________________/
615407.09 15:18:58 [Server] Server thread/INFO [wizardry]: Initializing fairy task plugins...
615507.09 15:18:58 [Server] Server thread/INFO [wizardry]: Initializing plugin com.teamwizardry.wizardry.init.plugin.InternalWizardryPlugin
615607.09 15:18:58 [Server] Server thread/INFO [wizardry]: Initialization complete!
615707.09 15:19:00 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `crafting_plate`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
615807.09 15:19:00 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `halo_infuser`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
615907.09 15:19:00 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `jar`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
616007.09 15:19:00 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `light`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
616107.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `magicians_worktable`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
616207.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_battery`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
616307.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_magnet`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
616407.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_vacuum`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
616507.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `pedestal`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
616607.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `wizardry` for name `unicorn_trail`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
616707.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.primal_tech.clay_kiln`, expected `primal_tech`. This could be a intended override, but in most cases indicates a broken mod.
616807.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.primal_tech.work_stump`, expected `primal_tech`. This could be a intended override, but in most cases indicates a broken mod.
616907.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.primal_tech.stone_grill`, expected `primal_tech`. This could be a intended override, but in most cases indicates a broken mod.
617007.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.primal_tech.wooden_hopper`, expected `primal_tech`. This could be a intended override, but in most cases indicates a broken mod.
617107.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.primal_tech.work_stump_upgraded`, expected `primal_tech`. This could be a intended override, but in most cases indicates a broken mod.
617207.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.primal_tech.water_saw`, expected `primal_tech`. This could be a intended override, but in most cases indicates a broken mod.
617307.09 15:19:01 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.primal_tech.stone_anvil`, expected `primal_tech`. This could be a intended override, but in most cases indicates a broken mod.
617407.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tile.primal_tech.wooden_basin`, expected `primal_tech`. This could be a intended override, but in most cases indicates a broken mod.
617507.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpesoutputhatch`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
617607.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpesinputhatch`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
617707.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpesplaceholder`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
617807.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpesfluidhatch`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
617907.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpestileschematic`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
618007.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpescreativebattery`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
618107.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpesforgepowerinput`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
618207.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpesforgepoweroutput`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
618307.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpescoalgenerator`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
618407.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpestilepointer`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
618507.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `vulpestileinvpointer`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
618607.09 15:19:02 [Server] Server thread/WARN [FML]: Potentially Dangerous alternative prefix `minecraft` for name `argtplug`, expected `libvulpes`. This could be a intended override, but in most cases indicates a broken mod.
618707.09 15:19:05 [Server] Server thread/INFO [Chisel]: Loading blocks...
618807.09 15:19:07 [Server] Server thread/INFO [Chisel]: 75 Feature's blocks loaded.
618907.09 15:19:07 [Server] Server thread/INFO [Chisel]: Loading Tile Entities...
619007.09 15:19:07 [Server] Server thread/INFO [Chisel]: Tile Entities loaded.
6191
619207.09 15:19:13 [Server] Server thread/ERROR [FML]: 100: net.minecraftforge.fml.common.eventhandler.EventBus$1@35e75a7e
619307.09 15:19:13 [Server] Server thread/ERROR [FML]: 101: net.minecraftforge.fml.common.eventhandler.EventBus$1@714ba86b
619407.09 15:19:13 [Server] Server thread/ERROR [FML]: 102: net.minecraftforge.fml.common.eventhandler.EventBus$1@5b404ee9
619507.09 15:19:13 [Server] Server thread/ERROR [FML]: 103: net.minecraftforge.fml.common.eventhandler.EventBus$1@16303d36
619607.09 15:19:13 [Server] Server thread/ERROR [FML]: 104: net.minecraftforge.fml.common.eventhandler.EventBus$1@198bb124
619707.09 15:19:13 [Server] Server thread/ERROR [FML]: 105: net.minecraftforge.fml.common.eventhandler.EventBus$1@35af4a8e
619807.09 15:19:13 [Server] Server thread/ERROR [FML]: 106: net.minecraftforge.fml.common.eventhandler.EventBus$1@6c417dd4
619907.09 15:19:13 [Server] Server thread/ERROR [FML]: 107: net.minecraftforge.fml.common.eventhandler.EventBus$1@7b8f34e7
620007.09 15:19:13 [Server] Server thread/ERROR [FML]: 108: net.minecraftforge.fml.common.eventhandler.EventBus$1@3fc9b823
620107.09 15:19:13 [Server] Server thread/ERROR [FML]: 109: net.minecraftforge.fml.common.eventhandler.EventBus$1@707d6e6e
620207.09 15:19:13 [Server] Server thread/ERROR [FML]: 110: net.minecraftforge.fml.common.eventhandler.EventBus$1@17350268
620307.09 15:19:13 [Server] Server thread/ERROR [FML]: 111: net.minecraftforge.fml.common.eventhandler.EventBus$1@159f2465
620407.09 15:19:13 [Server] Server thread/ERROR [FML]: 112: net.minecraftforge.fml.common.eventhandler.EventBus$1@67659e55
620507.09 15:19:13 [Server] Server thread/ERROR [FML]: 113: net.minecraftforge.fml.common.eventhandler.EventBus$1@7c7082c9
620607.09 15:19:13 [Server] Server thread/ERROR [FML]: 114: net.minecraftforge.fml.common.eventhandler.EventBus$1@43e9e96d
620707.09 15:19:13 [Server] Server thread/ERROR [FML]: 115: net.minecraftforge.fml.common.eventhandler.EventBus$1@2f394179
620807.09 15:19:13 [Server] Server thread/ERROR [FML]: 116: net.minecraftforge.fml.common.eventhandler.EventBus$1@64e5f5fd
620907.09 15:19:13 [Server] Server thread/ERROR [FML]: 117: net.minecraftforge.fml.common.eventhandler.EventBus$1@1c7b4562
621007.09 15:19:13 [Server] Server thread/ERROR [FML]: 118: net.minecraftforge.fml.common.eventhandler.EventBus$1@10556501
621107.09 15:19:13 [Server] Server thread/ERROR [FML]: 119: net.minecraftforge.fml.common.eventhandler.EventBus$1@7502ccfb
621207.09 15:19:13 [Server] Server thread/ERROR [FML]: 120: net.minecraftforge.fml.common.eventhandler.EventBus$1@3e8385bb
621307.09 15:19:13 [Server] Server thread/ERROR [FML]: 121: net.minecraftforge.fml.common.eventhandler.EventBus$1@7815875c
621407.09 15:19:13 [Server] Server thread/ERROR [FML]: 122: net.minecraftforge.fml.common.eventhandler.EventBus$1@43538832
621507.09 15:19:13 [Server] Server thread/ERROR [FML]: 123: net.minecraftforge.fml.common.eventhandler.EventBus$1@20d5e1b7
621607.09 15:19:13 [Server] Server thread/ERROR [FML]: 124: net.minecraftforge.fml.common.eventhandler.EventBus$1@259164b
621707.09 15:19:13 [Server] Server thread/ERROR [FML]: 125: net.minecraftforge.fml.common.eventhandler.EventBus$1@56225e3b
621807.09 15:19:13 [Server] Server thread/ERROR [FML]: 126: net.minecraftforge.fml.common.eventhandler.EventBus$1@96f5ed5
621907.09 15:19:13 [Server] Server thread/ERROR [FML]: 127: net.minecraftforge.fml.common.eventhandler.EventBus$1@638de16
622007.09 15:19:13 [Server] Server thread/ERROR [FML]: 128: net.minecraftforge.fml.common.eventhandler.EventBus$1@4c196bd4
622107.09 15:19:13 [Server] Server thread/ERROR [FML]: 129: net.minecraftforge.fml.common.eventhandler.EventBus$1@88e37ea
622207.09 15:19:13 [Server] Server thread/ERROR [FML]: 130: net.minecraftforge.fml.common.eventhandler.EventBus$1@7b6459d8
622307.09 15:19:13 [Server] Server thread/ERROR [FML]: 131: net.minecraftforge.fml.common.eventhandler.EventBus$1@3becf0cc
622407.09 15:19:13 [Server] Server thread/ERROR [FML]: 132: net.minecraftforge.fml.common.eventhandler.EventBus$1@3c2c7bae
622507.09 15:19:13 [Server] Server thread/ERROR [FML]: 133: net.minecraftforge.fml.common.eventhandler.EventBus$1@45643aa6
622607.09 15:19:13 [Server] Server thread/ERROR [FML]: 134: net.minecraftforge.fml.common.eventhandler.EventBus$1@1c97114b
622707.09 15:19:13 [Server] Server thread/ERROR [FML]: 135: net.minecraftforge.fml.common.eventhandler.EventBus$1@40a1f885
622807.09 15:19:13 [Server] Server thread/ERROR [FML]: 136: net.minecraftforge.fml.common.eventhandler.EventBus$1@1f8f1a34
622907.09 15:19:13 [Server] Server thread/ERROR [FML]: 137: net.minecraftforge.fml.common.eventhandler.EventBus$1@7bdaa269
623007.09 15:19:13 [Server] Server thread/ERROR [FML]: 138: net.minecraftforge.fml.common.eventhandler.EventBus$1@5fe3e910
623107.09 15:19:13 [Server] Server thread/ERROR [FML]: 139: net.minecraftforge.fml.common.eventhandler.EventBus$1@104947b9
623207.09 15:19:13 [Server] Server thread/ERROR [FML]: 140: net.minecraftforge.fml.common.eventhandler.EventBus$1@7770a13e
623307.09 15:19:13 [Server] Server thread/ERROR [FML]: 141: net.minecraftforge.fml.common.eventhandler.EventBus$1@59978c53
623407.09 15:19:13 [Server] Server thread/ERROR [FML]: 142: net.minecraftforge.fml.common.eventhandler.EventBus$1@19fc4518
623507.09 15:19:13 [Server] Server thread/ERROR [FML]: 143: net.minecraftforge.fml.common.eventhandler.EventBus$1@43d2ad11
623607.09 15:19:13 [Server] Server thread/ERROR [FML]: 144: net.minecraftforge.fml.common.eventhandler.EventBus$1@31599d04
623707.09 15:19:13 [Server] Server thread/ERROR [FML]: 145: net.minecraftforge.fml.common.eventhandler.EventBus$1@54497a68
623807.09 15:19:13 [Server] Server thread/ERROR [FML]: 146: net.minecraftforge.fml.common.eventhandler.EventBus$1@2fe6317c
623907.09 15:19:13 [Server] Server thread/ERROR [FML]: 147: net.minecraftforge.fml.common.eventhandler.EventBus$1@790abbb4
624007.09 15:19:13 [Server] Server thread/ERROR [FML]: 148: net.minecraftforge.fml.common.eventhandler.EventBus$1@446a82c
624107.09 15:19:13 [Server] Server thread/ERROR [FML]: 149: net.minecraftforge.fml.common.eventhandler.EventBus$1@1b4308f6
624207.09 15:19:13 [Server] Server thread/ERROR [FML]: 150: net.minecraftforge.fml.common.eventhandler.EventBus$1@5b0a733
624307.09 15:19:13 [Server] Server thread/ERROR [FML]: 151: net.minecraftforge.fml.common.eventhandler.EventBus$1@29cb6b2a
624407.09 15:19:13 [Server] Server thread/ERROR [FML]: 152: net.minecraftforge.fml.common.eventhandler.EventBus$1@18fdb1f7
624507.09 15:19:13 [Server] Server thread/ERROR [FML]: 153: net.minecraftforge.fml.common.eventhandler.EventBus$1@1b7a1ea6
624607.09 15:19:13 [Server] Server thread/ERROR [FML]: 154: net.minecraftforge.fml.common.eventhandler.EventBus$1@1b73abc5
624707.09 15:19:13 [Server] Server thread/ERROR [FML]: 155: net.minecraftforge.fml.common.eventhandler.EventBus$1@691311ba
624807.09 15:19:13 [Server] Server thread/ERROR [FML]: 156: net.minecraftforge.fml.common.eventhandler.EventBus$1@1c146766
624907.09 15:19:13 [Server] Server thread/ERROR [FML]: 157: net.minecraftforge.fml.common.eventhandler.EventBus$1@5750c56c
625007.09 15:19:13 [Server] Server thread/ERROR [FML]: 158: net.minecraftforge.fml.common.eventhandler.EventBus$1@517b71c0
625107.09 15:19:13 [Server] Server thread/ERROR [FML]: 159: net.minecraftforge.fml.common.eventhandler.EventBus$1@20143494
625207.09 15:19:13 [Server] Server thread/ERROR [FML]: 160: net.minecraftforge.fml.common.eventhandler.EventBus$1@1f8448a7
625307.09 15:19:13 [Server] Server thread/ERROR [FML]: 161: net.minecraftforge.fml.common.eventhandler.EventBus$1@4eae859e
625407.09 15:19:13 [Server] Server thread/ERROR [FML]: 162: net.minecraftforge.fml.common.eventhandler.EventBus$1@445118fa
625507.09 15:19:13 [Server] Server thread/ERROR [FML]: 163: net.minecraftforge.fml.common.eventhandler.EventBus$1@45602470
625607.09 15:19:13 [Server] Server thread/ERROR [FML]: 164: net.minecraftforge.fml.common.eventhandler.EventBus$1@781c9d0b
625707.09 15:19:13 [Server] Server thread/ERROR [FML]: 165: net.minecraftforge.fml.common.eventhandler.EventBus$1@422475e3
625807.09 15:19:13 [Server] Server thread/ERROR [FML]: 166: net.minecraftforge.fml.common.eventhandler.EventBus$1@efe2395
625907.09 15:19:13 [Server] Server thread/ERROR [FML]: 167: net.minecraftforge.fml.common.eventhandler.EventBus$1@4af9c59e
626007.09 15:19:13 [Server] Server thread/ERROR [FML]: 168: net.minecraftforge.fml.common.eventhandler.EventBus$1@5611fd0f
626107.09 15:19:13 [Server] Server thread/ERROR [FML]: 169: net.minecraftforge.fml.common.eventhandler.EventBus$1@37fb1143
626207.09 15:19:13 [Server] Server thread/ERROR [FML]: 170: net.minecraftforge.fml.common.eventhandler.EventBus$1@48e67ea2
626307.09 15:19:13 [Server] Server thread/ERROR [FML]: 171: net.minecraftforge.fml.common.eventhandler.EventBus$1@4cb78715
626407.09 15:19:13 [Server] Server thread/ERROR [FML]: 172: net.minecraftforge.fml.common.eventhandler.EventBus$1@1597f209
626507.09 15:19:13 [Server] Server thread/ERROR [FML]: 173: net.minecraftforge.fml.common.eventhandler.EventBus$1@7a0998f1
626607.09 15:19:13 [Server] Server thread/ERROR [FML]: 174: net.minecraftforge.fml.common.eventhandler.EventBus$1@1e1ea7c
626707.09 15:19:13 [Server] Server thread/ERROR [FML]: 175: net.minecraftforge.fml.common.eventhandler.EventBus$1@719e5a7a
626807.09 15:19:13 [Server] Server thread/ERROR [FML]: 176: net.minecraftforge.fml.common.eventhandler.EventBus$1@5bb3e9fa
626907.09 15:19:13 [Server] Server thread/ERROR [FML]: 177: net.minecraftforge.fml.common.eventhandler.EventBus$1@6d4b3c6d
627007.09 15:19:13 [Server] Server thread/ERROR [FML]: 178: net.minecraftforge.fml.common.eventhandler.EventBus$1@637789b2
627107.09 15:19:13 [Server] Server thread/ERROR [FML]: 179: net.minecraftforge.fml.common.eventhandler.EventBus$1@60b9522c
627207.09 15:19:13 [Server] Server thread/ERROR [FML]: 180: net.minecraftforge.fml.common.eventhandler.EventBus$1@24819bf8
627307.09 15:19:13 [Server] Server thread/ERROR [FML]: 181: net.minecraftforge.fml.common.eventhandler.EventBus$1@101d7351
627407.09 15:19:13 [Server] Server thread/ERROR [FML]: 182: net.minecraftforge.fml.common.eventhandler.EventBus$1@4f7842f9
627507.09 15:19:13 [Server] Server thread/ERROR [FML]: 183: net.minecraftforge.fml.common.eventhandler.EventBus$1@65fa4108
627607.09 15:19:13 [Server] Server thread/ERROR [FML]: 184: net.minecraftforge.fml.common.eventhandler.EventBus$1@4d0c4814
627707.09 15:19:13 [Server] Server thread/ERROR [FML]: 185: net.minecraftforge.fml.common.eventhandler.EventBus$1@36f02d1f
627807.09 15:19:13 [Server] Server thread/ERROR [FML]: 186: net.minecraftforge.fml.common.eventhandler.EventBus$1@3b92deb2
627907.09 15:19:13 [Server] Server thread/ERROR [FML]: 187: net.minecraftforge.fml.common.eventhandler.EventBus$1@cd73ac9
628007.09 15:19:13 [Server] Server thread/ERROR [FML]: 188: net.minecraftforge.fml.common.eventhandler.EventBus$1@23349faf
628107.09 15:19:13 [Server] Server thread/ERROR [FML]: 189: net.minecraftforge.fml.common.eventhandler.EventBus$1@149bc603
628207.09 15:19:13 [Server] Server thread/ERROR [FML]: 190: net.minecraftforge.fml.common.eventhandler.EventBus$1@39d1fd6c
628307.09 15:19:13 [Server] Server thread/ERROR [FML]: 191: net.minecraftforge.fml.common.eventhandler.EventBus$1@c6599ed
628407.09 15:19:13 [Server] Server thread/ERROR [FML]: 192: net.minecraftforge.fml.common.eventhandler.EventBus$1@babb629
628507.09 15:19:13 [Server] Server thread/ERROR [FML]: 193: net.minecraftforge.fml.common.eventhandler.EventBus$1@414ac281
628607.09 15:19:13 [Server] Server thread/ERROR [FML]: 194: net.minecraftforge.fml.common.eventhandler.EventBus$1@77466d59
628707.09 15:19:13 [Server] Server thread/ERROR [FML]: 195: net.minecraftforge.fml.common.eventhandler.EventBus$1@57cc38ad
628807.09 15:19:13 [Server] Server thread/ERROR [FML]: 196: net.minecraftforge.fml.common.eventhandler.EventBus$1@180d683
628907.09 15:19:13 [Server] Server thread/ERROR [FML]: 197: net.minecraftforge.fml.common.eventhandler.EventBus$1@16c942f8
629007.09 15:19:13 [Server] Server thread/ERROR [FML]: 198: net.minecraftforge.fml.common.eventhandler.EventBus$1@52a1c9dd
629107.09 15:19:13 [Server] Server thread/ERROR [FML]: 199: net.minecraftforge.fml.common.eventhandler.EventBus$1@649e9a74
629207.09 15:19:13 [Server] Server thread/ERROR [FML]: 200: net.minecraftforge.fml.common.eventhandler.EventBus$1@63ad6caa
629307.09 15:19:13 [Server] Server thread/ERROR [FML]: 201: net.minecraftforge.fml.common.eventhandler.EventBus$1@3f2f3ca5
629407.09 15:19:13 [Server] Server thread/ERROR [FML]: 202: net.minecraftforge.fml.common.eventhandler.EventBus$1@639cf5bc
629507.09 15:19:13 [Server] Server thread/ERROR [FML]: 203: net.minecraftforge.fml.common.eventhandler.EventBus$1@73418e81
629607.09 15:19:13 [Server] Server thread/ERROR [FML]: 204: net.minecraftforge.fml.common.eventhandler.EventBus$1@7b81647f
629707.09 15:19:13 [Server] Server thread/ERROR [FML]: 205: net.minecraftforge.fml.common.eventhandler.EventBus$1@3d0da5be
629807.09 15:19:13 [Server] Server thread/ERROR [FML]: 206: net.minecraftforge.fml.common.eventhandler.EventBus$1@39b896b6
629907.09 15:19:13 [Server] Server thread/ERROR [FML]: 207: net.minecraftforge.fml.common.eventhandler.EventBus$1@46722286
630007.09 15:19:13 [Server] Server thread/ERROR [FML]: 208: net.minecraftforge.fml.common.eventhandler.EventBus$1@362004ab
630107.09 15:19:13 [Server] Server thread/ERROR [FML]: 209: net.minecraftforge.fml.common.eventhandler.EventBus$1@66d07784
630207.09 15:19:13 [Server] Server thread/ERROR [FML]: 210: net.minecraftforge.fml.common.eventhandler.EventBus$1@1b2040ce
630307.09 15:19:13 [Server] Server thread/ERROR [FML]: 211: net.minecraftforge.fml.common.eventhandler.EventBus$1@4c11373e
630407.09 15:19:13 [Server] Server thread/ERROR [FML]: 212: net.minecraftforge.fml.common.eventhandler.EventBus$1@7a22674b
630507.09 15:19:13 [Server] Server thread/ERROR [FML]: 213: net.minecraftforge.fml.common.eventhandler.EventBus$1@1f2b53dc
630607.09 15:19:13 [Server] Server thread/ERROR [FML]: 214: net.minecraftforge.fml.common.eventhandler.EventBus$1@61446c7
630707.09 15:19:13 [Server] Server thread/ERROR [FML]: 215: net.minecraftforge.fml.common.eventhandler.EventBus$1@437929fc
630807.09 15:19:13 [Server] Server thread/ERROR [FML]: 216: net.minecraftforge.fml.common.eventhandler.EventBus$1@2a0816e7
630907.09 15:19:13 [Server] Server thread/ERROR [FML]: 217: net.minecraftforge.fml.common.eventhandler.EventBus$1@6ff805c9
631007.09 15:19:13 [Server] Server thread/ERROR [FML]: 218: net.minecraftforge.fml.common.eventhandler.EventBus$1@4b7e448f
631107.09 15:19:13 [Server] Server thread/ERROR [FML]: 219: net.minecraftforge.fml.common.eventhandler.EventBus$1@4142b2d5
631207.09 15:19:13 [Server] Server thread/ERROR [FML]: 220: net.minecraftforge.fml.common.eventhandler.EventBus$1@2b172b34
631307.09 15:19:13 [Server] Server thread/ERROR [FML]: 221: net.minecraftforge.fml.common.eventhandler.EventBus$1@4eea5d2
631407.09 15:19:13 [Server] Server thread/ERROR [FML]: 222: net.minecraftforge.fml.common.eventhandler.EventBus$1@3d0dd3fc
631507.09 15:19:13 [Server] Server thread/ERROR [FML]: 223: net.minecraftforge.fml.common.eventhandler.EventBus$1@698d1a92
631607.09 15:19:13 [Server] Server thread/ERROR [FML]: 224: net.minecraftforge.fml.common.eventhandler.EventBus$1@7bd1d21c
631707.09 15:19:13 [Server] Server thread/ERROR [FML]: 225: net.minecraftforge.fml.common.eventhandler.EventBus$1@ae02881
631807.09 15:19:13 [Server] Server thread/ERROR [FML]: 226: net.minecraftforge.fml.common.eventhandler.EventBus$1@59219812
631907.09 15:19:13 [Server] Server thread/ERROR [FML]: 227: net.minecraftforge.fml.common.eventhandler.EventBus$1@5879502e
632007.09 15:19:13 [Server] Server thread/ERROR [FML]: 228: net.minecraftforge.fml.common.eventhandler.EventBus$1@2dcd380f
632107.09 15:19:13 [Server] Server thread/ERROR [FML]: 229: net.minecraftforge.fml.common.eventhandler.EventBus$1@26e2b917
632207.09 15:19:13 [Server] Server thread/ERROR [FML]: 230: net.minecraftforge.fml.common.eventhandler.EventBus$1@73d644d1
632307.09 15:19:13 [Server] Server thread/ERROR [FML]: 231: net.minecraftforge.fml.common.eventhandler.EventBus$1@613c92a5
632407.09 15:19:13 [Server] Server thread/ERROR [FML]: 232: net.minecraftforge.fml.common.eventhandler.EventBus$1@2575d3cd
632507.09 15:19:13 [Server] Server thread/ERROR [FML]: 233: net.minecraftforge.fml.common.eventhandler.EventBus$1@16ecfc75
632607.09 15:19:13 [Server] Server thread/ERROR [FML]: 234: net.minecraftforge.fml.common.eventhandler.EventBus$1@57ddd2b5
632707.09 15:19:13 [Server] Server thread/ERROR [FML]: 235: net.minecraftforge.fml.common.eventhandler.EventBus$1@52f1cb51
632807.09 15:19:13 [Server] Server thread/ERROR [FML]: 236: net.minecraftforge.fml.common.eventhandler.EventBus$1@59918179
632907.09 15:19:13 [Server] Server thread/ERROR [FML]: 237: net.minecraftforge.fml.common.eventhandler.EventBus$1@286fd16a
633007.09 15:19:13 [Server] Server thread/ERROR [FML]: 238: net.minecraftforge.fml.common.eventhandler.EventBus$1@119ef6a8
633107.09 15:19:13 [Server] Server thread/ERROR [FML]: 239: net.minecraftforge.fml.common.eventhandler.EventBus$1@4d691c89
633207.09 15:19:13 [Server] Server thread/ERROR [FML]: 240: net.minecraftforge.fml.common.eventhandler.EventBus$1@1826c614
633307.09 15:19:13 [Server] Server thread/ERROR [FML]: 241: net.minecraftforge.fml.common.eventhandler.EventBus$1@4e14b0fb
633407.09 15:19:13 [Server] Server thread/ERROR [FML]: 242: net.minecraftforge.fml.common.eventhandler.EventBus$1@28d92427
633507.09 15:19:13 [Server] Server thread/ERROR [FML]: 243: net.minecraftforge.fml.common.eventhandler.EventBus$1@2d51e8e1
633607.09 15:19:13 [Server] Server thread/ERROR [FML]: 244: net.minecraftforge.fml.common.eventhandler.EventBus$1@3e98d39
633707.09 15:19:13 [Server] Server thread/ERROR [FML]: 245: net.minecraftforge.fml.common.eventhandler.EventBus$1@689176d7
633807.09 15:19:13 [Server] Server thread/ERROR [FML]: 246: net.minecraftforge.fml.common.eventhandler.EventBus$1@9088ffe
633907.09 15:19:13 [Server] Server thread/ERROR [FML]: 247: net.minecraftforge.fml.common.eventhandler.EventBus$1@2b3c68de
634007.09 15:19:13 [Server] Server thread/ERROR [FML]: 248: net.minecraftforge.fml.common.eventhandler.EventBus$1@64f3b8c5
634107.09 15:19:13 [Server] Server thread/ERROR [FML]: 249: net.minecraftforge.fml.common.eventhandler.EventBus$1@7b74d42
634207.09 15:19:13 [Server] Server thread/ERROR [FML]: 250: net.minecraftforge.fml.common.eventhandler.EventBus$1@4a0d5535
634307.09 15:19:13 [Server] Server thread/ERROR [FML]: 251: net.minecraftforge.fml.common.eventhandler.EventBus$1@23fbe32
634407.09 15:19:13 [Server] Server thread/ERROR [FML]: 252: net.minecraftforge.fml.common.eventhandler.EventBus$1@7b731b20
634507.09 15:19:13 [Server] Server thread/ERROR [FML]: 253: net.minecraftforge.fml.common.eventhandler.EventBus$1@46939451
634607.09 15:19:13 [Server] Server thread/ERROR [FML]: 254: net.minecraftforge.fml.common.eventhandler.EventBus$1@6617c54b
634707.09 15:19:13 [Server] Server thread/ERROR [FML]: 255: net.minecraftforge.fml.common.eventhandler.EventBus$1@19262995
634807.09 15:19:13 [Server] Server thread/ERROR [FML]: 256: net.minecraftforge.fml.common.eventhandler.EventBus$1@7a6f8b8a
634907.09 15:19:13 [Server] Server thread/ERROR [FML]: 257: net.minecraftforge.fml.common.eventhandler.EventBus$1@2084a98a
635007.09 15:19:13 [Server] Server thread/ERROR [FML]: 258: net.minecraftforge.fml.common.eventhandler.EventBus$1@78611d4c
635107.09 15:19:13 [Server] Server thread/ERROR [FML]: 259: net.minecraftforge.fml.common.eventhandler.EventBus$1@50a3f954
635207.09 15:19:13 [Server] Server thread/ERROR [FML]: 260: net.minecraftforge.fml.common.eventhandler.EventBus$1@56960b11
635307.09 15:19:13 [Server] Server thread/ERROR [FML]: 261: net.minecraftforge.fml.common.eventhandler.EventBus$1@53db20b0
635407.09 15:19:13 [Server] Server thread/ERROR [FML]: 262: net.minecraftforge.fml.common.eventhandler.EventBus$1@2320dcfa
635507.09 15:19:13 [Server] Server thread/ERROR [FML]: 263: net.minecraftforge.fml.common.eventhandler.EventBus$1@6c86e893
635607.09 15:19:13 [Server] Server thread/ERROR [FML]: 264: net.minecraftforge.fml.common.eventhandler.EventBus$1@a2eb891
635707.09 15:19:13 [Server] Server thread/ERROR [FML]: 265: net.minecraftforge.fml.common.eventhandler.EventBus$1@7ad7c4
635807.09 15:19:13 [Server] Server thread/ERROR [FML]: 266: net.minecraftforge.fml.common.eventhandler.EventBus$1@25981c3d
635907.09 15:19:13 [Server] Server thread/ERROR [FML]: 267: net.minecraftforge.fml.common.eventhandler.EventBus$1@7e81aa6d
636007.09 15:19:13 [Server] Server thread/ERROR [FML]: 268: net.minecraftforge.fml.common.eventhandler.EventBus$1@1946f1c
636107.09 15:19:13 [Server] Server thread/ERROR [FML]: 269: net.minecraftforge.fml.common.eventhandler.EventBus$1@57865c1d
636207.09 15:19:13 [Server] Server thread/ERROR [FML]: 270: net.minecraftforge.fml.common.eventhandler.EventBus$1@321acb24
636307.09 15:19:13 [Server] Server thread/ERROR [FML]: 271: net.minecraftforge.fml.common.eventhandler.EventBus$1@413bddc8
636407.09 15:19:13 [Server] Server thread/ERROR [FML]: 272: net.minecraftforge.fml.common.eventhandler.EventBus$1@6375a67c
636507.09 15:19:13 [Server] Server thread/ERROR [FML]: 273: net.minecraftforge.fml.common.eventhandler.EventBus$1@6f678bb
636607.09 15:19:13 [Server] Server thread/ERROR [FML]: 274: net.minecraftforge.fml.common.eventhandler.EventBus$1@6251c0aa
636707.09 15:19:13 [Server] Server thread/ERROR [FML]: 275: net.minecraftforge.fml.common.eventhandler.EventBus$1@7d9b84b5
636807.09 15:19:13 [Server] Server thread/ERROR [FML]: 276: net.minecraftforge.fml.common.eventhandler.EventBus$1@33138b3c
636907.09 15:19:13 [Server] Server thread/ERROR [FML]: 277: net.minecraftforge.fml.common.eventhandler.EventBus$1@6150e45
637007.09 15:19:13 [Server] Server thread/ERROR [FML]: 278: net.minecraftforge.fml.common.eventhandler.EventBus$1@6aaddabd
637107.09 15:19:13 [Server] Server thread/ERROR [FML]: 279: net.minecraftforge.fml.common.eventhandler.EventBus$1@4bb24571
637207.09 15:19:13 [Server] Server thread/ERROR [FML]: 280: net.minecraftforge.fml.common.eventhandler.EventBus$1@64d77d50
637307.09 15:19:13 [Server] Server thread/ERROR [FML]: 281: net.minecraftforge.fml.common.eventhandler.EventBus$1@4a9e20a9
637407.09 15:19:13 [Server] Server thread/ERROR [FML]: 282: net.minecraftforge.fml.common.eventhandler.EventBus$1@4ee27375
637507.09 15:19:13 [Server] Server thread/ERROR [FML]: 283: net.minecraftforge.fml.common.eventhandler.EventBus$1@17223e15
637607.09 15:19:13 [Server] Server thread/ERROR [FML]: 284: net.minecraftforge.fml.common.eventhandler.EventBus$1@4840ec5c
637707.09 15:19:13 [Server] Server thread/ERROR [FML]: 285: net.minecraftforge.fml.common.eventhandler.EventBus$1@73e00695
637807.09 15:19:13 [Server] Server thread/ERROR [FML]: 286: net.minecraftforge.fml.common.eventhandler.EventBus$1@2e44ba47
637907.09 15:19:13 [Server] Server thread/ERROR [FML]: 287: net.minecraftforge.fml.common.eventhandler.EventBus$1@2810fb0c
638007.09 15:19:13 [Server] Server thread/ERROR [FML]: 288: net.minecraftforge.fml.common.eventhandler.EventBus$1@67fdc05e
638107.09 15:19:13 [Server] Server thread/ERROR [FML]: 289: net.minecraftforge.fml.common.eventhandler.EventBus$1@14dab69a
638207.09 15:19:13 [Server] Server thread/ERROR [FML]: 290: net.minecraftforge.fml.common.eventhandler.EventBus$1@1f47b0c4
638307.09 15:19:13 [Server] Server thread/ERROR [FML]: 291: net.minecraftforge.fml.common.eventhandler.EventBus$1@30a0f0bb
638407.09 15:19:13 [Server] Server thread/ERROR [FML]: 292: net.minecraftforge.fml.common.eventhandler.EventBus$1@39d629c1
638507.09 15:19:13 [Server] Server thread/ERROR [FML]: 293: net.minecraftforge.fml.common.eventhandler.EventBus$1@78f92607
638607.09 15:19:13 [Server] Server thread/ERROR [FML]: 294: net.minecraftforge.fml.common.eventhandler.EventBus$1@5a9a784c
638707.09 15:19:13 [Server] Server thread/ERROR [FML]: 295: net.minecraftforge.fml.common.eventhandler.EventBus$1@6d086e8c
638807.09 15:19:13 [Server] Server thread/ERROR [FML]: 296: net.minecraftforge.fml.common.eventhandler.EventBus$1@6518dacd
638907.09 15:19:13 [Server] Server thread/ERROR [FML]: 297: net.minecraftforge.fml.common.eventhandler.EventBus$1@54601177
639007.09 15:19:13 [Server] Server thread/ERROR [FML]: 298: net.minecraftforge.fml.common.eventhandler.EventBus$1@5d315baf
639107.09 15:19:13 [Server] Server thread/ERROR [FML]: 299: net.minecraftforge.fml.common.eventhandler.EventBus$1@7363228b
639207.09 15:19:13 [Server] Server thread/ERROR [FML]: 300: net.minecraftforge.fml.common.eventhandler.EventBus$1@508e5098
639307.09 15:19:13 [Server] Server thread/ERROR [FML]: 301: net.minecraftforge.fml.common.eventhandler.EventBus$1@4311857
639407.09 15:19:13 [Server] Server thread/ERROR [FML]: 302: net.minecraftforge.fml.common.eventhandler.EventBus$1@530ad75d
639507.09 15:19:13 [Server] Server thread/ERROR [FML]: 303: net.minecraftforge.fml.common.eventhandler.EventBus$1@3917c0cd
639607.09 15:19:13 [Server] Server thread/ERROR [FML]: 304: net.minecraftforge.fml.common.eventhandler.EventBus$1@1b3f4de7
639707.09 15:19:13 [Server] Server thread/ERROR [FML]: 305: net.minecraftforge.fml.common.eventhandler.EventBus$1@17400d77
639807.09 15:19:13 [Server] Server thread/ERROR [FML]: 306: net.minecraftforge.fml.common.eventhandler.EventBus$1@127580fd
639907.09 15:19:13 [Server] Server thread/ERROR [FML]: 307: net.minecraftforge.fml.common.eventhandler.EventBus$1@15632bd6
640007.09 15:19:13 [Server] Server thread/ERROR [FML]: 308: net.minecraftforge.fml.common.eventhandler.EventBus$1@74521ce8
640107.09 15:19:13 [Server] Server thread/ERROR [FML]: 309: net.minecraftforge.fml.common.eventhandler.EventBus$1@636e9ca0
640207.09 15:19:13 [Server] Server thread/ERROR [FML]: 310: net.minecraftforge.fml.common.eventhandler.EventBus$1@5d229a58
640307.09 15:19:13 [Server] Server thread/ERROR [FML]: 311: net.minecraftforge.fml.common.eventhandler.EventBus$1@519327b1
640407.09 15:19:13 [Server] Server thread/ERROR [FML]: 312: net.minecraftforge.fml.common.eventhandler.EventBus$1@3542c437
640507.09 15:19:13 [Server] Server thread/ERROR [FML]: 313: net.minecraftforge.fml.common.eventhandler.EventBus$1@225ed5a3
640607.09 15:19:13 [Server] Server thread/ERROR [FML]: 314: net.minecraftforge.fml.common.eventhandler.EventBus$1@6b676bea
640707.09 15:19:13 [Server] Server thread/ERROR [FML]: 315: net.minecraftforge.fml.common.eventhandler.EventBus$1@23016798
640807.09 15:19:13 [Server] Server thread/ERROR [FML]: 316: net.minecraftforge.fml.common.eventhandler.EventBus$1@416cb3
640907.09 15:19:13 [Server] Server thread/ERROR [FML]: 317: net.minecraftforge.fml.common.eventhandler.EventBus$1@54e642d5
641007.09 15:19:13 [Server] Server thread/ERROR [FML]: 318: net.minecraftforge.fml.common.eventhandler.EventBus$1@48e5b98
641107.09 15:19:13 [Server] Server thread/ERROR [FML]: 319: net.minecraftforge.fml.common.eventhandler.EventBus$1@2c1bd136
641207.09 15:19:13 [Server] Server thread/ERROR [FML]: 320: net.minecraftforge.fml.common.eventhandler.EventBus$1@27b404f2
641307.09 15:19:13 [Server] Server thread/ERROR [FML]: 321: net.minecraftforge.fml.common.eventhandler.EventBus$1@41a20a3b
641407.09 15:19:13 [Server] Server thread/ERROR [FML]: 322: net.minecraftforge.fml.common.eventhandler.EventBus$1@3706cb0c
641507.09 15:19:13 [Server] Server thread/ERROR [FML]: 323: net.minecraftforge.fml.common.eventhandler.EventBus$1@45662ebb
641607.09 15:19:13 [Server] Server thread/ERROR [FML]: 324: net.minecraftforge.fml.common.eventhandler.EventBus$1@42f22171
641707.09 15:19:13 [Server] Server thread/ERROR [FML]: 325: net.minecraftforge.fml.common.eventhandler.EventBus$1@135008c6
641807.09 15:19:13 [Server] Server thread/ERROR [FML]: 326: net.minecraftforge.fml.common.eventhandler.EventBus$1@128fff0b
641907.09 15:19:13 [Server] Server thread/ERROR [FML]: 327: net.minecraftforge.fml.common.eventhandler.EventBus$1@66e80817
642007.09 15:19:13 [Server] Server thread/ERROR [FML]: 328: net.minecraftforge.fml.common.eventhandler.EventBus$1@35c24412
642107.09 15:19:13 [Server] Server thread/ERROR [FML]: 329: net.minecraftforge.fml.common.eventhandler.EventBus$1@26476c54
642207.09 15:19:13 [Server] Server thread/ERROR [FML]: 330: net.minecraftforge.fml.common.eventhandler.EventBus$1@4bdda830
642307.09 15:19:13 [Server] Server thread/ERROR [FML]: 331: net.minecraftforge.fml.common.eventhandler.EventBus$1@6dd3b9ec
642407.09 15:19:13 [Server] Server thread/ERROR [FML]: 332: net.minecraftforge.fml.common.eventhandler.EventBus$1@4a169290
642507.09 15:19:13 [Server] Server thread/ERROR [FML]: 333: net.minecraftforge.fml.common.eventhandler.EventBus$1@57ae624a
642607.09 15:19:13 [Server] Server thread/ERROR [FML]: 334: net.minecraftforge.fml.common.eventhandler.EventBus$1@7194dca7
642707.09 15:19:13 [Server] Server thread/ERROR [FML]: 335: net.minecraftforge.fml.common.eventhandler.EventBus$1@1f807a0
642807.09 15:19:13 [Server] Server thread/ERROR [FML]: 336: net.minecraftforge.fml.common.eventhandler.EventBus$1@7f04871d
642907.09 15:19:13 [Server] Server thread/ERROR [FML]: 337: net.minecraftforge.fml.common.eventhandler.EventBus$1@5b9c1685
643007.09 15:19:13 [Server] Server thread/ERROR [FML]: 338: net.minecraftforge.fml.common.eventhandler.EventBus$1@cba98b5
643107.09 15:19:13 [Server] Server thread/ERROR [FML]: 339: net.minecraftforge.fml.common.eventhandler.EventBus$1@4d3e4b85
643207.09 15:19:13 [Server] Server thread/ERROR [FML]: 340: net.minecraftforge.fml.common.eventhandler.EventBus$1@16d90150
643307.09 15:19:13 [Server] Server thread/ERROR [FML]: 341: net.minecraftforge.fml.common.eventhandler.EventBus$1@2dca1530
643407.09 15:19:13 [Server] Server thread/ERROR [FML]: 342: net.minecraftforge.fml.common.eventhandler.EventBus$1@75ed5f0c
643507.09 15:19:13 [Server] Server thread/ERROR [FML]: 343: net.minecraftforge.fml.common.eventhandler.EventBus$1@4ab05057
643607.09 15:19:13 [Server] Server thread/ERROR [FML]: 344: net.minecraftforge.fml.common.eventhandler.EventBus$1@14bd0bd0
643707.09 15:19:13 [Server] Server thread/ERROR [FML]: 345: net.minecraftforge.fml.common.eventhandler.EventBus$1@69a3efe2
643807.09 15:19:13 [Server] Server thread/ERROR [FML]: 346: net.minecraftforge.fml.common.eventhandler.EventBus$1@76a9d8e5
643907.09 15:19:13 [Server] Server thread/ERROR [FML]: 347: net.minecraftforge.fml.common.eventhandler.EventBus$1@3e531c8f
644007.09 15:19:13 [Server] Server thread/ERROR [FML]: 348: net.minecraftforge.fml.common.eventhandler.EventBus$1@42cc731e
644107.09 15:19:13 [Server] Server thread/ERROR [FML]: 349: net.minecraftforge.fml.common.eventhandler.EventBus$1@34e6585a
644207.09 15:19:13 [Server] Server thread/ERROR [FML]: 350: net.minecraftforge.fml.common.eventhandler.EventBus$1@c30d0d3
644307.09 15:19:13 [Server] Server thread/ERROR [FML]: 351: net.minecraftforge.fml.common.eventhandler.EventBus$1@2a2102be
644407.09 15:19:13 [Server] Server thread/ERROR [FML]: 352: net.minecraftforge.fml.common.eventhandler.EventBus$1@b54c067
644507.09 15:19:13 [Server] Server thread/ERROR [FML]: 353: net.minecraftforge.fml.common.eventhandler.EventBus$1@df67ddf
644607.09 15:19:13 [Server] Server thread/ERROR [FML]: 354: net.minecraftforge.fml.common.eventhandler.EventBus$1@7ca82fa
644707.09 15:19:13 [Server] Server thread/ERROR [FML]: 355: net.minecraftforge.fml.common.eventhandler.EventBus$1@255c544f
644807.09 15:19:13 [Server] Server thread/ERROR [FML]: 356: net.minecraftforge.fml.common.eventhandler.EventBus$1@826ff7b
644907.09 15:19:13 [Server] Server thread/ERROR [FML]: 357: net.minecraftforge.fml.common.eventhandler.EventBus$1@36806325
645007.09 15:19:13 [Server] Server thread/ERROR [FML]: 358: net.minecraftforge.fml.common.eventhandler.EventBus$1@658efa5d
645107.09 15:19:13 [Server] Server thread/ERROR [FML]: 359: net.minecraftforge.fml.common.eventhandler.EventBus$1@22b7248f
645207.09 15:19:13 [Server] Server thread/ERROR [FML]: 360: net.minecraftforge.fml.common.eventhandler.EventBus$1@1d55ca85
645307.09 15:19:13 [Server] Server thread/ERROR [FML]: 361: net.minecraftforge.fml.common.eventhandler.EventBus$1@28790b41
645407.09 15:19:13 [Server] Server thread/ERROR [FML]: 362: net.minecraftforge.fml.common.eventhandler.EventBus$1@3a374001
645507.09 15:19:13 [Server] Server thread/ERROR [FML]: 363: net.minecraftforge.fml.common.eventhandler.EventBus$1@21bf8894
645607.09 15:19:13 [Server] Server thread/ERROR [FML]: 364: net.minecraftforge.fml.common.eventhandler.EventBus$1@128d6fc4
645707.09 15:19:13 [Server] Server thread/ERROR [FML]: 365: net.minecraftforge.fml.common.eventhandler.EventBus$1@724e4dd7
645807.09 15:19:13 [Server] Server thread/ERROR [FML]: 366: net.minecraftforge.fml.common.eventhandler.EventBus$1@72f92cd7
645907.09 15:19:13 [Server] Server thread/ERROR [FML]: 367: net.minecraftforge.fml.common.eventhandler.EventBus$1@2fdff134
646007.09 15:19:13 [Server] Server thread/ERROR [FML]: 368: net.minecraftforge.fml.common.eventhandler.EventBus$1@56555844
646107.09 15:19:13 [Server] Server thread/ERROR [FML]: 369: net.minecraftforge.fml.common.eventhandler.EventBus$1@56f597ac
646207.09 15:19:13 [Server] Server thread/ERROR [FML]: 370: net.minecraftforge.fml.common.eventhandler.EventBus$1@6dd19631
646307.09 15:19:13 [Server] Server thread/ERROR [FML]: 371: net.minecraftforge.fml.common.eventhandler.EventBus$1@3dd78cee
646407.09 15:19:13 [Server] Server thread/ERROR [FML]: 372: net.minecraftforge.fml.common.eventhandler.EventBus$1@413c7468
646507.09 15:19:13 [Server] Server thread/ERROR [FML]: 373: net.minecraftforge.fml.common.eventhandler.EventBus$1@3b8ed314
646607.09 15:19:13 [Server] Server thread/ERROR [FML]: 374: net.minecraftforge.fml.common.eventhandler.EventBus$1@5a8faa4a
646707.09 15:19:13 [Server] Server thread/ERROR [FML]: 375: net.minecraftforge.fml.common.eventhandler.EventBus$1@5b3eed09
646807.09 15:19:13 [Server] Server thread/ERROR [FML]: 376: net.minecraftforge.fml.common.eventhandler.EventBus$1@79834d32
646907.09 15:19:13 [Server] Server thread/ERROR [FML]: 377: net.minecraftforge.fml.common.eventhandler.EventBus$1@34d82765
647007.09 15:19:13 [Server] Server thread/ERROR [FML]: 378: net.minecraftforge.fml.common.eventhandler.EventBus$1@1322064e
647107.09 15:19:13 [Server] Server thread/ERROR [FML]: 379: net.minecraftforge.fml.common.eventhandler.EventBus$1@3fd8f786
647207.09 15:19:13 [Server] Server thread/ERROR [FML]: 380: net.minecraftforge.fml.common.eventhandler.EventBus$1@5c51d792
647307.09 15:19:13 [Server] Server thread/ERROR [FML]: 381: net.minecraftforge.fml.common.eventhandler.EventBus$1@29472072
647407.09 15:19:13 [Server] Server thread/ERROR [FML]: 382: net.minecraftforge.fml.common.eventhandler.EventBus$1@2a544362
647507.09 15:19:13 [Server] Server thread/ERROR [FML]: 383: net.minecraftforge.fml.common.eventhandler.EventBus$1@5248e569
647607.09 15:19:13 [Server] Server thread/ERROR [FML]: 384: net.minecraftforge.fml.common.eventhandler.EventBus$1@f745f5
647707.09 15:19:13 [Server] Server thread/ERROR [FML]: 385: net.minecraftforge.fml.common.eventhandler.EventBus$1@10a3b129
647807.09 15:19:13 [Server] Server thread/ERROR [FML]: 386: net.minecraftforge.fml.common.eventhandler.EventBus$1@1864af0c
647907.09 15:19:13 [Server] Server thread/ERROR [FML]: 387: net.minecraftforge.fml.common.eventhandler.EventBus$1@d1272c4
648007.09 15:19:13 [Server] Server thread/ERROR [FML]: 388: net.minecraftforge.fml.common.eventhandler.EventBus$1@3770567e
648107.09 15:19:13 [Server] Server thread/ERROR [FML]: 389: net.minecraftforge.fml.common.eventhandler.EventBus$1@3a578340
648207.09 15:19:13 [Server] Server thread/ERROR [FML]: 390: net.minecraftforge.fml.common.eventhandler.EventBus$1@7f657c9
648307.09 15:19:13 [Server] Server thread/ERROR [FML]: 391: net.minecraftforge.fml.common.eventhandler.EventBus$1@196c91a1
648407.09 15:19:13 [Server] Server thread/ERROR [FML]: 392: net.minecraftforge.fml.common.eventhandler.EventBus$1@2c1ae754
648507.09 15:19:13 [Server] Server thread/ERROR [FML]: 393: net.minecraftforge.fml.common.eventhandler.EventBus$1@2ad12c14
648607.09 15:19:13 [Server] Server thread/ERROR [FML]: 394: net.minecraftforge.fml.common.eventhandler.EventBus$1@1fac6e98
648707.09 15:19:13 [Server] Server thread/ERROR [FML]: 395: net.minecraftforge.fml.common.eventhandler.EventBus$1@62b00555
648807.09 15:19:13 [Server] Server thread/ERROR [FML]: 396: net.minecraftforge.fml.common.eventhandler.EventBus$1@196b6e10
648907.09 15:19:13 [Server] Server thread/ERROR [FML]: 397: net.minecraftforge.fml.common.eventhandler.EventBus$1@3af940a5
649007.09 15:19:13 [Server] Server thread/ERROR [FML]: 398: net.minecraftforge.fml.common.eventhandler.EventBus$1@46dd21cc
649107.09 15:19:13 [Server] Server thread/ERROR [FML]: 399: net.minecraftforge.fml.common.eventhandler.EventBus$1@24a51eef
649207.09 15:19:13 [Server] Server thread/ERROR [FML]: 400: net.minecraftforge.fml.common.eventhandler.EventBus$1@667cff85
649307.09 15:19:13 [Server] Server thread/ERROR [FML]: 401: net.minecraftforge.fml.common.eventhandler.EventBus$1@16f06787
649407.09 15:19:13 [Server] Server thread/ERROR [FML]: 402: net.minecraftforge.fml.common.eventhandler.EventBus$1@398cf7d4
649507.09 15:19:13 [Server] Server thread/ERROR [FML]: 403: net.minecraftforge.fml.common.eventhandler.EventBus$1@3552d46c
649607.09 15:19:13 [Server] Server thread/ERROR [FML]: 404: net.minecraftforge.fml.common.eventhandler.EventBus$1@34538594
649707.09 15:19:13 [Server] Server thread/ERROR [FML]: 405: net.minecraftforge.fml.common.eventhandler.EventBus$1@210a00c6
649807.09 15:19:13 [Server] Server thread/ERROR [FML]: 406: net.minecraftforge.fml.common.eventhandler.EventBus$1@7fe66164
649907.09 15:19:13 [Server] Server thread/ERROR [FML]: 407: net.minecraftforge.fml.common.eventhandler.EventBus$1@5cb43b40
650007.09 15:19:13 [Server] Server thread/ERROR [FML]: 408: net.minecraftforge.fml.common.eventhandler.EventBus$1@74e36a67
650107.09 15:19:13 [Server] Server thread/ERROR [FML]: 409: net.minecraftforge.fml.common.eventhandler.EventBus$1@59e580d
650207.09 15:19:13 [Server] Server thread/ERROR [FML]: 410: net.minecraftforge.fml.common.eventhandler.EventBus$1@49bff49b
650307.09 15:19:13 [Server] Server thread/ERROR [FML]: 411: net.minecraftforge.fml.common.eventhandler.EventBus$1@342cb8d7
650407.09 15:19:13 [Server] Server thread/ERROR [FML]: 412: net.minecraftforge.fml.common.eventhandler.EventBus$1@5bf35c67
650507.09 15:19:13 [Server] Server thread/ERROR [FML]: 413: net.minecraftforge.fml.common.eventhandler.EventBus$1@2c5a3924
650607.09 15:19:13 [Server] Server thread/ERROR [FML]: 414: net.minecraftforge.fml.common.eventhandler.EventBus$1@1a771b18
650707.09 15:19:13 [Server] Server thread/ERROR [FML]: 415: net.minecraftforge.fml.common.eventhandler.EventBus$1@4bcce281
650807.09 15:19:13 [Server] Server thread/ERROR [FML]: 416: net.minecraftforge.fml.common.eventhandler.EventBus$1@a1d8ffb
650907.09 15:19:13 [Server] Server thread/ERROR [FML]: 417: net.minecraftforge.fml.common.eventhandler.EventBus$1@77f30485
651007.09 15:19:13 [Server] Server thread/ERROR [FML]: 418: net.minecraftforge.fml.common.eventhandler.EventBus$1@557e7eb8
651107.09 15:19:13 [Server] Server thread/ERROR [FML]: 419: net.minecraftforge.fml.common.eventhandler.EventBus$1@790a467c
651207.09 15:19:13 [Server] Server thread/ERROR [FML]: 420: net.minecraftforge.fml.common.eventhandler.EventBus$1@1f8e6cf1
651307.09 15:19:13 [Server] Server thread/ERROR [FML]: 421: net.minecraftforge.fml.common.eventhandler.EventBus$1@70b694a9
651407.09 15:19:13 [Server] Server thread/ERROR [FML]: 422: net.minecraftforge.fml.common.eventhandler.EventBus$1@569bbfb9
651507.09 15:19:13 [Server] Server thread/ERROR [FML]: 423: net.minecraftforge.fml.common.eventhandler.EventBus$1@7d092ab0
651607.09 15:19:13 [Server] Server thread/ERROR [FML]: 424: net.minecraftforge.fml.common.eventhandler.EventBus$1@118c3804
651707.09 15:19:13 [Server] Server thread/ERROR [FML]: 425: net.minecraftforge.fml.common.eventhandler.EventBus$1@55dbe540
651807.09 15:19:13 [Server] Server thread/ERROR [FML]: 426: net.minecraftforge.fml.common.eventhandler.EventBus$1@5e36ee35
651907.09 15:19:13 [Server] Server thread/ERROR [FML]: 427: net.minecraftforge.fml.common.eventhandler.EventBus$1@6ade13e9
652007.09 15:19:13 [Server] Server thread/ERROR [FML]: 428: net.minecraftforge.fml.common.eventhandler.EventBus$1@1a625aae
652107.09 15:19:13 [Server] Server thread/ERROR [FML]: 429: net.minecraftforge.fml.common.eventhandler.EventBus$1@10994d47
652207.09 15:19:13 [Server] Server thread/ERROR [FML]: 430: net.minecraftforge.fml.common.eventhandler.EventBus$1@79374e27
652307.09 15:19:13 [Server] Server thread/ERROR [FML]: 431: net.minecraftforge.fml.common.eventhandler.EventBus$1@636c4bb3
652407.09 15:19:13 [Server] Server thread/ERROR [FML]: 432: net.minecraftforge.fml.common.eventhandler.EventBus$1@6bd3ca5a
652507.09 15:19:13 [Server] Server thread/ERROR [FML]: 433: net.minecraftforge.fml.common.eventhandler.EventBus$1@31fa5112
652607.09 15:19:13 [Server] Server thread/ERROR [FML]: 434: net.minecraftforge.fml.common.eventhandler.EventBus$1@72ff677c
652707.09 15:19:13 [Server] Server thread/ERROR [FML]: 435: net.minecraftforge.fml.common.eventhandler.EventBus$1@734f8b43
652807.09 15:19:13 [Server] Server thread/ERROR [FML]: 436: net.minecraftforge.fml.common.eventhandler.EventBus$1@6bb0e6a
652907.09 15:19:13 [Server] Server thread/ERROR [FML]: 437: net.minecraftforge.fml.common.eventhandler.EventBus$1@652aad6e
653007.09 15:19:13 [Server] Server thread/ERROR [FML]: 438: net.minecraftforge.fml.common.eventhandler.EventBus$1@6c67e230
653107.09 15:19:13 [Server] Server thread/ERROR [FML]: 439: net.minecraftforge.fml.common.eventhandler.EventBus$1@63fd796c
653207.09 15:19:13 [Server] Server thread/ERROR [FML]: 440: net.minecraftforge.fml.common.eventhandler.EventBus$1@3d6be327
653307.09 15:19:13 [Server] Server thread/ERROR [FML]: 441: net.minecraftforge.fml.common.eventhandler.EventBus$1@d1a7839
653407.09 15:19:13 [Server] Server thread/ERROR [FML]: 442: net.minecraftforge.fml.common.eventhandler.EventBus$1@5ebf6dc8
653507.09 15:19:13 [Server] Server thread/ERROR [FML]: 443: net.minecraftforge.fml.common.eventhandler.EventBus$1@5601596a
653607.09 15:19:13 [Server] Server thread/ERROR [FML]: 444: net.minecraftforge.fml.common.eventhandler.EventBus$1@3411fa56
653707.09 15:19:13 [Server] Server thread/ERROR [FML]: 445: net.minecraftforge.fml.common.eventhandler.EventBus$1@6a14975d
653807.09 15:19:13 [Server] Server thread/ERROR [FML]: 446: net.minecraftforge.fml.common.eventhandler.EventBus$1@4fe076fa
653907.09 15:19:13 [Server] Server thread/ERROR [FML]: 447: net.minecraftforge.fml.common.eventhandler.EventBus$1@1376ac65
654007.09 15:19:13 [Server] Server thread/ERROR [FML]: 448: net.minecraftforge.fml.common.eventhandler.EventBus$1@280e3717
654107.09 15:19:13 [Server] Server thread/ERROR [FML]: 449: net.minecraftforge.fml.common.eventhandler.EventBus$1@66eee334
654207.09 15:19:13 [Server] Server thread/ERROR [FML]: 450: net.minecraftforge.fml.common.eventhandler.EventBus$1@2a751eb5
654307.09 15:19:13 [Server] Server thread/ERROR [FML]: 451: net.minecraftforge.fml.common.eventhandler.EventBus$1@c469a1a
654407.09 15:19:13 [Server] Server thread/ERROR [FML]: 452: net.minecraftforge.fml.common.eventhandler.EventBus$1@55a9b20a
654507.09 15:19:13 [Server] Server thread/ERROR [FML]: 453: net.minecraftforge.fml.common.eventhandler.EventBus$1@444f1cc8
654607.09 15:19:13 [Server] Server thread/ERROR [FML]: 454: net.minecraftforge.fml.common.eventhandler.EventBus$1@46cd3242
654707.09 15:19:13 [Server] Server thread/ERROR [FML]: 455: net.minecraftforge.fml.common.eventhandler.EventBus$1@7ee3f6cb
654807.09 15:19:13 [Server] Server thread/ERROR [FML]: 456: net.minecraftforge.fml.common.eventhandler.EventBus$1@664222ff
654907.09 15:19:13 [Server] Server thread/ERROR [FML]: 457: net.minecraftforge.fml.common.eventhandler.EventBus$1@5a57cba3
655007.09 15:19:13 [Server] Server thread/ERROR [FML]: 458: net.minecraftforge.fml.common.eventhandler.EventBus$1@75a7bd89
655107.09 15:19:13 [Server] Server thread/ERROR [FML]: 459: net.minecraftforge.fml.common.eventhandler.EventBus$1@14935858
655207.09 15:19:13 [Server] Server thread/ERROR [FML]: 460: net.minecraftforge.fml.common.eventhandler.EventBus$1@6331c5ef
655307.09 15:19:13 [Server] Server thread/ERROR [FML]: 461: net.minecraftforge.fml.common.eventhandler.EventBus$1@7df10f9
655407.09 15:19:13 [Server] Server thread/ERROR [FML]: 462: net.minecraftforge.fml.common.eventhandler.EventBus$1@4f5cbe7e
655507.09 15:19:13 [Server] Server thread/ERROR [FML]: 463: net.minecraftforge.fml.common.eventhandler.EventBus$1@41037e55
655607.09 15:19:13 [Server] Server thread/ERROR [FML]: 464: net.minecraftforge.fml.common.eventhandler.EventBus$1@2cf0d527
655707.09 15:19:13 [Server] Server thread/ERROR [FML]: 465: net.minecraftforge.fml.common.eventhandler.EventBus$1@53d74098
655807.09 15:19:13 [Server] Server thread/ERROR [FML]: 466: net.minecraftforge.fml.common.eventhandler.EventBus$1@79d2bbd2
655907.09 15:19:13 [Server] Server thread/ERROR [FML]: 467: net.minecraftforge.fml.common.eventhandler.EventBus$1@2379936b
656007.09 15:19:13 [Server] Server thread/ERROR [FML]: 468: net.minecraftforge.fml.common.eventhandler.EventBus$1@90a23ce
656107.09 15:19:13 [Server] Server thread/ERROR [FML]: 469: net.minecraftforge.fml.common.eventhandler.EventBus$1@60b071f7
656207.09 15:19:13 [Server] Server thread/ERROR [FML]: 470: net.minecraftforge.fml.common.eventhandler.EventBus$1@c505a18
656307.09 15:19:13 [Server] Server thread/ERROR [FML]: 471: net.minecraftforge.fml.common.eventhandler.EventBus$1@635d6232
656407.09 15:19:13 [Server] Server thread/ERROR [FML]: 472: net.minecraftforge.fml.common.eventhandler.EventBus$1@3b1129c4
656507.09 15:19:13 [Server] Server thread/ERROR [FML]: 473: net.minecraftforge.fml.common.eventhandler.EventBus$1@58cdd898
656607.09 15:19:13 [Server] Server thread/ERROR [FML]: 474: net.minecraftforge.fml.common.eventhandler.EventBus$1@5643d903
656707.09 15:19:13 [Server] Server thread/ERROR [FML]: 475: net.minecraftforge.fml.common.eventhandler.EventBus$1@5e877d0b
656807.09 15:19:13 [Server] Server thread/ERROR [FML]: 476: net.minecraftforge.fml.common.eventhandler.EventBus$1@6c6a2016
656907.09 15:19:13 [Server] Server thread/ERROR [FML]: 477: net.minecraftforge.fml.common.eventhandler.EventBus$1@5ad52c1b
657007.09 15:19:13 [Server] Server thread/ERROR [FML]: 478: net.minecraftforge.fml.common.eventhandler.EventBus$1@12966d83
657107.09 15:19:13 [Server] Server thread/ERROR [FML]: 479: net.minecraftforge.fml.common.eventhandler.EventBus$1@779c35ff
657207.09 15:19:13 [Server] Server thread/ERROR [FML]: 480: net.minecraftforge.fml.common.eventhandler.EventBus$1@4a4bd18a
657307.09 15:19:13 [Server] Server thread/ERROR [FML]: 481: net.minecraftforge.fml.common.eventhandler.EventBus$1@390d992c
657407.09 15:19:13 [Server] Server thread/ERROR [FML]: 482: net.minecraftforge.fml.common.eventhandler.EventBus$1@18d601fb
657507.09 15:19:13 [Server] Server thread/ERROR [FML]: 483: net.minecraftforge.fml.common.eventhandler.EventBus$1@ef3ecd3
657607.09 15:19:13 [Server] Server thread/ERROR [FML]: 484: net.minecraftforge.fml.common.eventhandler.EventBus$1@1a20bb06
657707.09 15:19:13 [Server] Server thread/ERROR [FML]: 485: net.minecraftforge.fml.common.eventhandler.EventBus$1@4f319597
657807.09 15:19:13 [Server] Server thread/ERROR [FML]: 486: net.minecraftforge.fml.common.eventhandler.EventBus$1@67c09c53
657907.09 15:19:13 [Server] Server thread/ERROR [FML]: 487: net.minecraftforge.fml.common.eventhandler.EventBus$1@7644710c
658007.09 15:19:13 [Server] Server thread/ERROR [FML]: 488: net.minecraftforge.fml.common.eventhandler.EventBus$1@69230c49
658107.09 15:19:13 [Server] Server thread/ERROR [FML]: 489: net.minecraftforge.fml.common.eventhandler.EventBus$1@2a7da1d7
658207.09 15:19:13 [Server] Server thread/ERROR [FML]: 490: net.minecraftforge.fml.common.eventhandler.EventBus$1@493c82cf
658307.09 15:19:13 [Server] Server thread/ERROR [FML]: 491: net.minecraftforge.fml.common.eventhandler.EventBus$1@1ca556f5
658407.09 15:19:13 [Server] Server thread/ERROR [FML]: 492: net.minecraftforge.fml.common.eventhandler.EventBus$1@6d15506c
658507.09 15:19:13 [Server] Server thread/ERROR [FML]: 493: net.minecraftforge.fml.common.eventhandler.EventBus$1@2aa12700
658607.09 15:19:13 [Server] Server thread/ERROR [FML]: 494: net.minecraftforge.fml.common.eventhandler.EventBus$1@726f261
658707.09 15:19:13 [Server] Server thread/ERROR [FML]: 495: net.minecraftforge.fml.common.eventhandler.EventBus$1@31020e8e
658807.09 15:19:13 [Server] Server thread/ERROR [FML]: 496: net.minecraftforge.fml.common.eventhandler.EventBus$1@76d3bef2
658907.09 15:19:13 [Server] Server thread/ERROR [FML]: 497: net.minecraftforge.fml.common.eventhandler.EventBus$1@55691e0f
659007.09 15:19:13 [Server] Server thread/ERROR [FML]: 498: net.minecraftforge.fml.common.eventhandler.EventBus$1@656c4b39
659107.09 15:19:13 [Server] Server thread/ERROR [FML]: 499: net.minecraftforge.fml.common.eventhandler.EventBus$1@44bb4f64
659207.09 15:19:13 [Server] Server thread/ERROR [FML]: 500: net.minecraftforge.fml.common.eventhandler.EventBus$1@2ff45d2f
659307.09 15:19:13 [Server] Server thread/ERROR [FML]: 501: net.minecraftforge.fml.common.eventhandler.EventBus$1@32f0b7b8
659407.09 15:19:13 [Server] Server thread/ERROR [FML]: 502: net.minecraftforge.fml.common.eventhandler.EventBus$1@35c2075c
659507.09 15:19:13 [Server] Server thread/ERROR [FML]: 503: net.minecraftforge.fml.common.eventhandler.EventBus$1@2b1caeef
659607.09 15:19:13 [Server] Server thread/ERROR [FML]: 504: net.minecraftforge.fml.common.eventhandler.EventBus$1@260c9386
659707.09 15:19:13 [Server] Server thread/ERROR [FML]: 505: net.minecraftforge.fml.common.eventhandler.EventBus$1@11f6ad88
659807.09 15:19:13 [Server] Server thread/ERROR [FML]: 506: net.minecraftforge.fml.common.eventhandler.EventBus$1@342ba00d
659907.09 15:19:13 [Server] Server thread/ERROR [FML]: 507: net.minecraftforge.fml.common.eventhandler.EventBus$1@7a8e0bb1
660007.09 15:19:13 [Server] Server thread/ERROR [FML]: 508: net.minecraftforge.fml.common.eventhandler.EventBus$1@385c37c5
660107.09 15:19:13 [Server] Server thread/ERROR [FML]: 509: net.minecraftforge.fml.common.eventhandler.EventBus$1@1ce247ab
660207.09 15:19:13 [Server] Server thread/ERROR [FML]: 510: net.minecraftforge.fml.common.eventhandler.EventBus$1@7520a7f2
660307.09 15:19:13 [Server] Server thread/ERROR [FML]: 511: net.minecraftforge.fml.common.eventhandler.EventBus$1@7ff9e964
660407.09 15:19:13 [Server] Server thread/ERROR [FML]: 512: LOW
660507.09 15:19:13 [Server] Server thread/ERROR [FML]: 513: net.minecraftforge.fml.common.eventhandler.EventBus$1@26c20b41
660607.09 15:19:13 [Server] Server thread/ERROR [FML]: 514: net.minecraftforge.fml.common.eventhandler.EventBus$1@2813cf2d
660707.09 15:19:13 [Server] Server thread/ERROR [FML]: 515: net.minecraftforge.fml.common.eventhandler.EventBus$1@58fce2ea
660807.09 15:19:13 [Server] Server thread/ERROR [FML]: 516: net.minecraftforge.fml.common.eventhandler.EventBus$1@687e8258
660907.09 15:19:13 [Server] Server thread/ERROR [FML]: 517: net.minecraftforge.fml.common.eventhandler.EventBus$1@5ed00415
661007.09 15:19:13 [Server] Server thread/ERROR [FML]: 518: LOWEST
661107.09 15:19:13 [Server] Server thread/ERROR [FML]: 519: net.minecraftforge.fml.common.eventhandler.EventBus$1@680cd245
661207.09 15:19:13 [Server] Server thread/ERROR [FML]: 520: net.minecraftforge.fml.common.eventhandler.EventBus$1@57d8861c
661307.09 15:19:13 [Server] Server thread/ERROR [FML]: 521: net.minecraftforge.fml.common.eventhandler.EventBus$1@4ba8a2fd
661407.09 15:19:13 [Server] Server thread/ERROR [FML]: 522: net.minecraftforge.fml.common.eventhandler.EventBus$1@1506f731
661507.09 15:19:13 [Server] Server thread/ERROR [FML]: 523: net.minecraftforge.fml.common.eventhandler.EventBus$1@1b96912e
661607.09 15:19:13 [Server] Server thread/ERROR [FML]: 524: net.minecraftforge.fml.common.eventhandler.EventBus$1@8ed1c26
661707.09 15:19:13 [Server] Server thread/ERROR [FML]: 525: net.minecraftforge.fml.common.eventhandler.EventBus$1@65cf88c
661807.09 15:19:13 [Server] Server thread/ERROR [FML]: 526: net.minecraftforge.fml.common.eventhandler.EventBus$1@24c12809
661907.09 15:19:13 [Server] Server thread/ERROR [FML]: 527: net.minecraftforge.fml.common.eventhandler.EventBus$1@b71c25e
662007.09 15:19:13 [Server] Server thread/ERROR [FML]: 528: net.minecraftforge.fml.common.eventhandler.EventBus$1@6b9de33a
662107.09 15:19:13 [Server] Server thread/ERROR [FML]: 529: net.minecraftforge.fml.common.eventhandler.EventBus$1@a64fe5d
662207.09 15:19:13 [Server] Server thread/ERROR [FML]: 530: net.minecraftforge.fml.common.eventhandler.EventBus$1@27480e78
662307.09 15:19:13 [Server] Server thread/ERROR [FML]: 531: net.minecraftforge.fml.common.eventhandler.EventBus$1@22ae5bfd
662407.09 15:19:13 [Server] Server thread/ERROR [FML]: 532: net.minecraftforge.fml.common.eventhandler.EventBus$1@262ef8a1
662507.09 15:19:13 [Server] Server thread/ERROR [FML]: 533: net.minecraftforge.fml.common.eventhandler.EventBus$1@b156c2f
662607.09 15:19:13 [Server] Server thread/ERROR [FML]: 534: net.minecraftforge.fml.common.eventhandler.EventBus$1@6c4998fb
662707.09 15:19:13 [Server] Server thread/ERROR [FML]: 535: net.minecraftforge.fml.common.eventhandler.EventBus$1@3ce8573c
662807.09 15:19:13 [Server] Server thread/ERROR [FML]: 536: net.minecraftforge.fml.common.eventhandler.EventBus$1@6dd25bf0
662907.09 15:19:13 [Server] Server thread/ERROR [FML]: 537: net.minecraftforge.fml.common.eventhandler.EventBus$1@4d063671
663007.09 15:19:13 [Server] Server thread/ERROR [FML]: 538: net.minecraftforge.fml.common.eventhandler.EventBus$1@6da8e16a
663107.09 15:19:13 [Server] Server thread/ERROR [FML]: 539: net.minecraftforge.fml.common.eventhandler.EventBus$1@13071a54
663207.09 15:19:13 [Server] Server thread/ERROR [minecraft/MinecraftServer]: Encountered an unexpected exception
663307.09 15:19:13 [Server] INFO java.lang.RuntimeException: Invalid id 4096 - maximum id range exceeded.
663407.09 15:19:13 [Server] INFO at net.minecraftforge.registries.ForgeRegistry.add(ForgeRegistry.java:295) ~[ForgeRegistry.class:?]
663507.09 15:19:13 [Server] INFO at net.minecraftforge.registries.ForgeRegistry.add(ForgeRegistry.java:281) ~[ForgeRegistry.class:?]
663607.09 15:19:13 [Server] INFO at net.minecraftforge.registries.ForgeRegistry.register(ForgeRegistry.java:113) ~[ForgeRegistry.class:?]
663707.09 15:19:13 [Server] INFO at hellfirepvp.modularmachinery.common.registry.RegistryBlocks.register(RegistryBlocks.java:139) ~[RegistryBlocks.class:?]
663807.09 15:19:13 [Server] INFO at hellfirepvp.modularmachinery.common.registry.RegistrationBus.registerBlocks(RegistrationBus.java:32) ~[RegistrationBus.class:?]
663907.09 15:19:13 [Server] INFO at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_1783_RegistrationBus_registerBlocks_Register.invoke(.dynamic) ~[?:?]
664007.09 15:19:13 [Server] INFO at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) ~[ASMEventHandler.class:?]
664107.09 15:19:13 [Server] INFO at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144) ~[EventBus$1.class:?]
664207.09 15:19:13 [Server] INFO at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182) ~[EventBus.class:?]
664307.09 15:19:13 [Server] INFO at net.minecraftforge.registries.GameData.fireRegistryEvents(GameData.java:845) ~[GameData.class:?]
664407.09 15:19:13 [Server] INFO at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:630) ~[Loader.class:?]
664507.09 15:19:13 [Server] INFO at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:99) ~[FMLServerHandler.class:?]
664607.09 15:19:13 [Server] INFO at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) ~[FMLCommonHandler.class:?]
664707.09 15:19:13 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125) ~[nz.class:?]
664807.09 15:19:13 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
664907.09 15:19:13 [Server] INFO at java.lang.Thread.run(Thread.java:748) [?:1.8.0_211]
665007.09 15:19:13 [Server] Server thread/WARN [enderio]: @Devs: See github for dev env setup; set INDEV if needed.
665107.09 15:19:14 [Server] Server thread/WARN [org.dimdev.utils.ModIdentifier]: Failed to identify net.minecraftforge.fml.common.eventhandler.ASMEventHandler_1783_RegistrationBus_registerBlocks_Register (untransformed name: net.minecraftforge.fml.common.eventhandler.ASMEventHandler_1783_RegistrationBus_registerBlocks_Register)
665207.09 15:19:14 [Server] Server thread/ERROR [minecraft/MinecraftServer]: This crash report has been saved to: /./crash-reports/crash-2020-09-07_15.19.14-server.txt
665307.09 15:19:14 [Server] Server thread/INFO [minecraft/MinecraftServer]: Stopping server
665407.09 15:19:14 [Server] Server thread/INFO [minecraft/MinecraftServer]: Saving worlds
665507.09 15:19:14 [Server] INFO Exception in thread "Server thread" [15:19:14] [Server thread/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Advanced Rocketry (advancedrocketry)
665607.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: Caused by: java.lang.NullPointerException
665707.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at zmaster587.advancedRocketry.cable.NetworkRegistry.clearNetworks(NetworkRegistry.java:16)
665807.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at zmaster587.advancedRocketry.AdvancedRocketry.serverStopped(AdvancedRocketry.java:1237)
665907.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
666007.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
666107.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
666207.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at java.lang.reflect.Method.invoke(Method.java:498)
666307.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:637)
666407.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
666507.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
666607.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at java.lang.reflect.Method.invoke(Method.java:498)
666707.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
666807.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
666907.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
667007.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
667107.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
667207.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
667307.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.EventBus.post(EventBus.java:217)
667407.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219)
667507.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)
667607.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
667707.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
667807.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
667907.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at java.lang.reflect.Method.invoke(Method.java:498)
668007.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
668107.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
668207.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
668307.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
668407.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
668507.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
668607.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at com.google.common.eventbus.EventBus.post(EventBus.java:217)
668707.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136)
668807.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at net.minecraftforge.fml.common.Loader.serverStopped(Loader.java:852)
668907.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at net.minecraftforge.fml.common.FMLCommonHandler.handleServerStopped(FMLCommonHandler.java:508)
669007.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:587)
669107.09 15:19:14 [Server] Server thread/INFO [STDERR]: [net.minecraftforge.fml.common.EnhancedRuntimeException:printStackTrace:92]: at java.lang.Thread.run(Thread.java:748)