-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrash - dismantle teleporter.log
1326 lines (1318 loc) · 107 KB
/
crash - dismantle teleporter.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[00:00:00] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:00:00] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:00:02] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:00:02] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:00:14] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:00:14] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:00:18] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:00:18] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:00:31] [Client thread/INFO]: [CHAT] §aRequested: §a40 Sulfur§f
[00:00:31] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:00:39] [Client thread/INFO]: [CHAT] §aRequested: §a10 Mystical Red Flower§f
[00:00:39] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:00:41] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:00:41] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:00:45] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:00:45] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:00:58] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:00:58] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:01:13] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:01:13] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:01:36] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:01:36] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:01:54] [Client thread/INFO]: [CHAT] §aRequested: §a20 Logistics Chassis Mk2§f
[00:01:54] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:01:58] [Client thread/INFO]: [CHAT] §aRequested: §a20 Logistics Chassis Mk2§f
[00:01:58] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:02:08] [Client thread/INFO]: [CHAT] §cMissing: §c19 Floral Red Powder§f
[00:02:15] [Client thread/INFO]: [CHAT] §cMissing: §c9 Floral Red Powder§f
[00:02:33] [Client thread/INFO]: [CHAT] §aRequested: §a20 Polymorphic ItemSink module§f
[00:02:33] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:02:41] [Client thread/INFO]: [CHAT] §aRequested: §a20 Blank Module§f
[00:02:41] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:02:45] [Client thread/INFO]: [CHAT] §aRequested: §a20 Iron Chipset§f
[00:02:45] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:02:50] [Client thread/INFO]: [CHAT] §aRequested: §a20 Floral Orange Powder§f
[00:02:50] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:02:51] [Client thread/INFO]: [CHAT] §aRequested: §a20 Floral Orange Powder§f
[00:02:51] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:02:58] [Client thread/INFO]: [CHAT] §aRequested: §a20 ItemSink module§f
[00:02:58] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:02:58] [Client thread/INFO]: [CHAT] §aRequested: §a20 ItemSink module§f
[00:02:58] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:03:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:03:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:03:05] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:03:05] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:03:09] [Client thread/INFO]: net.machinemuse.general.gui.PortableCraftingGui
[00:03:09] [Client thread/INFO]: net.machinemuse.general.gui.frame.PortableCraftingContainer
[00:03:21] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:03:21] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:03:26] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:03:26] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:04:53] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:04:53] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:04:58] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:04:58] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:05:00] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:05:00] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:05:03] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:05:03] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:05:52] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:05:52] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:05:55] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:05:55] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:06:41] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:06:41] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:06:52] [Client thread/INFO]: [CHAT] §aRequested: §a20 Inverted White Cage Lamp§f
[00:06:52] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:06:54] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:06:54] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:07:12] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:07:12] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:07:18] [Client thread/INFO]: [CHAT] §aRequested: §a64 Stone Bricks§f
[00:07:18] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:07:24] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:07:24] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:08:36] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:08:36] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:08:46] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:08:46] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:08:49] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:08:49] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:09:32] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:09:32] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:11:00] [Client thread/INFO]: net.minecraft.client.gui.GuiIngameMenu
[00:12:02] [Client thread/INFO]: net.minecraft.client.gui.GuiIngameMenu
[00:12:14] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:12:14] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:12:17] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:12:17] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:12:21] [Client thread/INFO]: [CHAT] §aRequested: §a1 Chunk Loader§f
[00:12:21] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:12:42] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:12:42] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:12:45] [Client thread/INFO]: logisticspipes.gui.modules.GuiItemSink
[00:12:45] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:12:54] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:12:54] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:12:57] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:12:57] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:13:10] [Client thread/INFO]: [CHAT] §aRequested: §a40 Diamond Chipset§f
[00:13:10] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:13:16] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:13:16] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:13:22] [Client thread/INFO]: codechicken.chunkloader.GuiChunkLoader
[00:13:28] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:13:28] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:14:04] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:14:04] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:14:07] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:14:07] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:14:08] [Client thread/INFO]: net.minecraft.client.gui.GuiChat
[00:14:10] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:14:10] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:14:16] [Client thread/INFO]: [CHAT] §aRequested: §a96 Warp Itemduct§f
[00:14:16] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:14:28] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:14:28] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:14:47] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:14:47] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:15:37] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:15:37] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:15:52] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:15:52] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:16:02] [Client thread/INFO]: net.minecraft.client.gui.GuiIngameMenu
[00:16:03] [Client thread/INFO]: net.minecraft.client.gui.GuiChat
[00:16:06] [Client thread/INFO]: [CHAT] Your game mode has been updated
[00:16:08] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:16:12] [Client thread/INFO]: [CHAT] Teleported firelizzard to -1491.5,43.5,1395.5
[00:16:19] [Client thread/INFO]: net.minecraft.client.gui.GuiIngameMenu
[00:16:20] [Client thread/INFO]: net.minecraft.client.gui.GuiChat
[00:16:22] [Client thread/INFO]: [CHAT] Your game mode has been updated
[00:16:25] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:16:25] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:16:52] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:16:58] [Client thread/INFO]: [CHAT] Teleported firelizzard to -392.5,66.5,1021.5
[00:17:00] [JM-task-5/WARN]: Iconloader failed to get base color for BlockMD [MineFactoryReloaded:laserair:5] (Error)
[00:17:00] [JM-task-5/WARN]: Iconloader failed to get base color for BlockMD [MineFactoryReloaded:laserair:3] (Error)
[00:17:00] [JM-task-5/WARN]: Iconloader failed to get base color for BlockMD [MineFactoryReloaded:laserair:4] (Error)
[00:17:00] [JM-task-5/WARN]: Iconloader failed to get base color for BlockMD [MineFactoryReloaded:laserair:6] (Error)
[00:17:02] [Client thread/INFO]: Mapping halted in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM-112
[00:17:02] [Client thread/INFO]: Requesting World ID
[00:17:04] [Client thread/INFO]: Requesting World ID
[00:17:05] [Client thread/INFO]: Received handshake from server
[00:17:05] [Client thread/INFO]: Available server commands: SetAE2FakeSlot
[00:17:05] [Client thread/INFO]: Requesting speed packet from server
[00:17:05] [Client thread/INFO]: Server speed is set to 20.0
[00:17:05] [Client thread/INFO]: Requesting World ID
[00:17:05] [Client thread/INFO]: Loaded 15 waypoints from C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\waypoints
[00:17:05] [Client thread/INFO]: Blocks and textures are current
[00:17:05] [Client thread/INFO]: Mapping started in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM0. Memory: 2658MB total, 734MB free
[00:17:06] [Client thread/INFO]: [CHAT] Unknown command. Try /help for a list of commands
[00:17:07] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:17:10] [Client thread/INFO]: [CHAT] Teleported firelizzard to 1953.5,10.5,282.5
[00:17:14] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:17:14] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:17:21] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:17:21] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:17:43] [Client thread/INFO]: [CHAT] §cMissing: §c1 Hardened Energy Cell§f
[00:18:05] [Client thread/INFO]: [CHAT] §aRequested: §a1 Leadstone Energy Cell Frame§f
[00:18:05] [Client thread/INFO]: [CHAT] §aRequested: §a4 Invar Ingot§f
[00:18:05] [Client thread/INFO]: [CHAT] §aRequested: §a1 Redstone Conductance Coil§f
[00:18:05] [Client thread/INFO]: [CHAT] §aRequested: §a3 Copper Ingot§f
[00:18:05] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:18:06] [Client thread/INFO]: [CHAT] §aRequested: §a3 Copper Ingot§f
[00:18:06] [Client thread/INFO]: [CHAT] §aRequested: §a1 Redstone Conductance Coil§f
[00:18:06] [Client thread/INFO]: [CHAT] §aRequested: §a1 Leadstone Energy Cell Frame§f
[00:18:06] [Client thread/INFO]: [CHAT] §aRequested: §a4 Invar Ingot§f
[00:18:06] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:18:07] [Client thread/INFO]: [CHAT] §aRequested: §a1 Leadstone Energy Cell Frame§f
[00:18:07] [Client thread/INFO]: [CHAT] §aRequested: §a4 Invar Ingot§f
[00:18:07] [Client thread/INFO]: [CHAT] §aRequested: §a1 Redstone Conductance Coil§f
[00:18:07] [Client thread/INFO]: [CHAT] §aRequested: §a3 Copper Ingot§f
[00:18:07] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:18:07] [Client thread/INFO]: [CHAT] §aRequested: §a1 Redstone Conductance Coil§f
[00:18:07] [Client thread/INFO]: [CHAT] §aRequested: §a3 Copper Ingot§f
[00:18:07] [Client thread/INFO]: [CHAT] §aRequested: §a1 Leadstone Energy Cell Frame§f
[00:18:07] [Client thread/INFO]: [CHAT] §aRequested: §a4 Invar Ingot§f
[00:18:07] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:18:26] [Client thread/INFO]: logisticspipes.gui.GuiLogisticsCraftingTable
[00:18:26] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:18:34] [Client thread/INFO]: logisticspipes.gui.GuiLogisticsCraftingTable
[00:18:34] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:18:42] [Client thread/INFO]: [CHAT] Server Backup started!
[00:18:42] [Client thread/INFO]: [CHAT] [Server: Turned off world auto-saving]
[00:18:42] [Client thread/INFO]: [CHAT] [Server: Saved the world]
[00:18:44] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:18:44] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:18:54] [Client thread/INFO]: [CHAT] §aRequested: §a24 Nether Quartz§f
[00:18:54] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:1] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:3] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:7] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:6] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:14] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:8] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:5] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:2] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:15] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:13] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:10] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:11] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:9] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:4] (CustomBiomeColor)
[00:18:57] [JM-task-16/INFO]: Custom biome color will be used with BlockMD [minecraft:reeds:12] (CustomBiomeColor)
[00:19:04] [Client thread/INFO]: crazypants.enderio.machine.alloy.GuiAlloySmelter
[00:19:04] [Client thread/INFO]: crazypants.enderio.machine.alloy.ContainerAlloySmelter
[00:19:07] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:19:07] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:19:12] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiFurnace
[00:19:12] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerFurnace
[00:19:13] [Client thread/INFO]: crazypants.enderio.machine.alloy.GuiAlloySmelter
[00:19:13] [Client thread/INFO]: crazypants.enderio.machine.alloy.ContainerAlloySmelter
[00:19:22] [Client thread/INFO]: buildcraft.silicon.gui.GuiAssemblyTable
[00:19:22] [Client thread/INFO]: buildcraft.silicon.gui.ContainerAssemblyTable
[00:19:26] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:19:26] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:19:40] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:19:40] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:20:29] [Client thread/INFO]: [CHAT] §aRequested: §a3 Bronze Ingot§f
[00:20:29] [Client thread/INFO]: [CHAT] §aRequested: §a4 Enderium Ingot§f
[00:20:29] [Client thread/INFO]: [CHAT] §aRequested: §a1 Translocation Plate§f
[00:20:29] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:20:30] [Client thread/INFO]: [CHAT] §cMissing: §c1 Translocation Plate§f
[00:20:33] [Client thread/INFO]: [CHAT] §cMissing: §c1 Translocation Plate§f
[00:20:44] [Client thread/INFO]: [CHAT] §cMissing: §c8 Signalum Ingot§f
[00:20:55] [Client thread/INFO]: [CHAT] §cMissing: §c16 Destabilized Redstone Bucket§f
[00:21:06] [Client thread/INFO]: [CHAT] §cMissing: §c16 Destabilized Redstone Bucket§f
[00:21:09] [Client thread/INFO]: [CHAT] §aRequested: §a64 Bucket§f
[00:21:09] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:21:21] [Client thread/INFO]: [CHAT] §aRequested: §a64 Block of Redstone§f
[00:21:21] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:21:32] [Client thread/INFO]: [CHAT] §aRequested: §a64 Redstone§f
[00:21:32] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:21:52] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:21:52] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:22:06] [Client thread/INFO]: cofh.thermalexpansion.gui.client.ender.GuiTesseract
[00:22:06] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:22:20] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiCrucible
[00:22:20] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerCrucible
[00:22:24] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:22:24] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:22:33] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiCrucible
[00:22:33] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerCrucible
[00:22:38] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:22:38] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:22:42] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiCrucible
[00:22:42] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerCrucible
[00:22:50] [Client thread/INFO]: [CHAT] Server backup done in 00:04:07! (2.0GB | 16.5GB)
[00:22:50] [Client thread/INFO]: [CHAT] [Server: Turned on world auto-saving]
[00:23:08] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:23:08] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:23:24] [Client thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerHopper
[00:23:24] [Client thread/INFO]: net.minecraft.client.gui.GuiHopper
[00:23:24] [Client thread/INFO]: net.minecraft.inventory.ContainerHopper
[00:23:28] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:23:28] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:23:44] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:23:44] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:23:50] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:23:50] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:23:55] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:23:55] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:24:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:24:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:24:07] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:24:07] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:24:14] [Client thread/INFO]: net.minecraft.client.gui.GuiHopper
[00:24:14] [Client thread/INFO]: net.minecraft.inventory.ContainerHopper
[00:24:16] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:24:16] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:24:54] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:24:54] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:24:55] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:24:55] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:25:00] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:25:00] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:25:10] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:25:10] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:25:32] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:25:32] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:25:37] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:25:37] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:25:49] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:25:49] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:25:55] [Client thread/INFO]: [CHAT] §aRequested: §a256 Signalum Blend§f
[00:25:55] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:26:18] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiSmelter
[00:26:18] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerSmelter
[00:26:21] [Client thread/INFO]: ic2.core.block.machine.gui.GuiInduction
[00:26:21] [Client thread/INFO]: ic2.core.block.machine.container.ContainerInduction
[00:27:09] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:27:09] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:27:13] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:27:13] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:27:19] [Client thread/INFO]: [CHAT] §aRequested: §a3 Plate Frame§f
[00:27:19] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:27:27] [Client thread/INFO]: [CHAT] §aRequested: §a4 Enderium Ingot§f
[00:27:27] [Client thread/INFO]: [CHAT] §aRequested: §a3 Bronze Ingot§f
[00:27:27] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:27:28] [Client thread/INFO]: [CHAT] §aRequested: §a4 Enderium Ingot§f
[00:27:28] [Client thread/INFO]: [CHAT] §aRequested: §a3 Bronze Ingot§f
[00:27:28] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:27:28] [Client thread/INFO]: [CHAT] §aRequested: §a3 Bronze Ingot§f
[00:27:28] [Client thread/INFO]: [CHAT] §aRequested: §a4 Enderium Ingot§f
[00:27:28] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:27:52] [Client thread/INFO]: logisticspipes.gui.orderer.FluidGuiOrderer
[00:27:52] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:27:55] [Client thread/INFO]: [CHAT] §aRequested: §a3000mB Resonant Ender§f
[00:27:55] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:27:58] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:27:58] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:28:27] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:28:27] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:28:46] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:28:46] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:28:53] [Client thread/INFO]: [CHAT] §aRequested: §a4 RedNet Energy Cable§f
[00:28:53] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:29:07] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:29:07] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:29:24] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:29:24] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:29:46] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:29:46] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:29:51] [Client thread/INFO]: Mapping halted in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM0
[00:29:52] [Client thread/INFO]: Requesting World ID
[00:29:55] [Client thread/INFO]: Requesting World ID
[00:29:55] [Client thread/INFO]: Received handshake from server
[00:29:55] [Client thread/INFO]: Available server commands: SetAE2FakeSlot
[00:29:55] [Client thread/INFO]: Requesting speed packet from server
[00:29:56] [Client thread/INFO]: Server speed is set to 20.0
[00:29:56] [Client thread/INFO]: Loaded 15 waypoints from C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\waypoints
[00:29:56] [Client thread/INFO]: Blocks and textures are current
[00:29:56] [Client thread/INFO]: Mapping started in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM-112. Memory: 3038MB total, 1341MB free
[00:29:56] [Client thread/INFO]: [CHAT] Unknown command. Try /help for a list of commands
[00:30:07] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:30:07] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:30:09] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:30:09] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:30:15] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:30:15] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:30:19] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:30:19] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:30:37] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:30:37] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:30:40] [Client thread/INFO]: [CHAT] §aRequested: §a1 Resonant Fluxduct§f
[00:30:40] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:30:42] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:30:42] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:30:45] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:30:45] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:30:49] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:30:49] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:30:58] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:30:58] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:31:10] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:31:17] [Client thread/INFO]: cofh.thermalexpansion.gui.client.ender.GuiTesseract
[00:31:17] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:31:25] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:31:25] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:31:41] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:31:45] [Client thread/INFO]: [CHAT] Teleported firelizzard to -393.5,46.5,1909.5
[00:32:20] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:32:20] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:32:26] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:32:26] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:32:42] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:32:42] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:32:50] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:32:50] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:32:57] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:32:59] [Client thread/INFO]: cofh.thermalexpansion.gui.client.ender.GuiTesseract
[00:32:59] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:33:01] [Client thread/INFO]: cofh.thermalexpansion.gui.client.ender.GuiTesseract
[00:33:01] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:33:03] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:33:11] [Client thread/INFO]: [CHAT] Teleported firelizzard to -1491.5,43.5,1395.5
[00:33:15] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:33:15] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:33:19] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:33:25] [Client thread/INFO]: [CHAT] Teleported firelizzard to -393.5,46.5,1909.5
[00:33:29] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:33:31] [Client thread/INFO]: [CHAT] Teleported firelizzard to -392.5,66.5,1021.5
[00:33:40] [Client thread/INFO]: journeymap.client.ui.waypoint.WaypointEditor
[00:33:50] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:34:05] [Client thread/INFO]: erogenousbeef.bigreactors.client.gui.GuiTurbineController
[00:34:05] [Client thread/INFO]: erogenousbeef.bigreactors.gui.container.ContainerSlotless
[00:34:22] [Client thread/INFO]: erogenousbeef.bigreactors.client.gui.GuiReactorStatus
[00:34:22] [Client thread/INFO]: erogenousbeef.bigreactors.gui.container.ContainerReactorController
[00:34:28] [Client thread/INFO]: erogenousbeef.bigreactors.client.gui.GuiReactorControlRod
[00:34:28] [Client thread/INFO]: erogenousbeef.bigreactors.gui.container.ContainerBasic
[00:34:35] [Client thread/INFO]: erogenousbeef.bigreactors.client.gui.GuiReactorStatus
[00:34:35] [Client thread/INFO]: erogenousbeef.bigreactors.gui.container.ContainerReactorController
[00:35:07] [Client thread/INFO]: erogenousbeef.bigreactors.client.gui.GuiTurbineController
[00:35:07] [Client thread/INFO]: erogenousbeef.bigreactors.gui.container.ContainerSlotless
[00:35:11] [Client thread/INFO]: erogenousbeef.bigreactors.client.gui.GuiTurbineController
[00:35:11] [Client thread/INFO]: erogenousbeef.bigreactors.gui.container.ContainerSlotless
[00:35:30] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:35:30] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:35:36] [Client thread/INFO]: Mapping halted in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM-112
[00:35:36] [Client thread/INFO]: Requesting World ID
[00:35:40] [Client thread/INFO]: Requesting World ID
[00:35:40] [Client thread/INFO]: Received handshake from server
[00:35:40] [Client thread/INFO]: Available server commands: SetAE2FakeSlot
[00:35:40] [Client thread/INFO]: Requesting speed packet from server
[00:35:41] [Client thread/INFO]: Requesting World ID
[00:35:41] [Client thread/INFO]: Loaded 15 waypoints from C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\waypoints
[00:35:41] [Client thread/INFO]: Blocks and textures are current
[00:35:41] [Client thread/INFO]: Mapping started in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM0. Memory: 2984MB total, 832MB free
[00:35:44] [Client thread/INFO]: Server speed is set to 20.0
[00:35:44] [Client thread/INFO]: [CHAT] Unknown command. Try /help for a list of commands
[00:35:50] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:35:50] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:35:55] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:35:55] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:35:59] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:35:59] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:36:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:36:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:36:03] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:36:03] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:36:11] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:36:11] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:36:15] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:36:15] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:36:20] [Client thread/INFO]: [CHAT] §aRequested: §a40 Provider module MK2§f
[00:36:20] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:36:33] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:36:33] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:36:34] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:36:34] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:36:35] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:36:35] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:36:41] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:36:41] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:36:46] [Client thread/INFO]: [CHAT] §cMissing: §c144 Nether Quartz§f
[00:37:03] [Client thread/INFO]: tconstruct.smeltery.gui.SmelteryGui
[00:37:03] [Client thread/INFO]: tconstruct.smeltery.inventory.SmelteryContainer
[00:37:21] [Client thread/INFO]: logisticspipes.gui.orderer.NormalMk2GuiOrderer
[00:37:21] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:37:33] [Client thread/INFO]: [CHAT] §aRequested: §a36 Shiny Ingot§f
[00:37:33] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:37:39] [Client thread/INFO]: [CHAT] §aRequested: §a36 Silver Dust§f
[00:37:39] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:37:45] [Client thread/INFO]: [CHAT] §aRequested: §a36 Tin Dust§f
[00:37:45] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:37:45] [Client thread/INFO]: [CHAT] §aRequested: §a36 Tin Dust§f
[00:37:45] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:37:48] [Client thread/INFO]: logisticspipes.gui.orderer.FluidGuiOrderer
[00:37:48] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:37:53] [Client thread/INFO]: [CHAT] §aRequested: §a36000mB Resonant Ender§f
[00:37:53] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:37:56] [Client thread/INFO]: tconstruct.smeltery.gui.SmelteryGui
[00:37:56] [Client thread/INFO]: tconstruct.smeltery.inventory.SmelteryContainer
[00:38:08] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:38:08] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:38:16] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:38:16] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:38:20] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:38:20] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:38:22] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:38:22] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:38:33] [Client thread/INFO]: tconstruct.smeltery.gui.SmelteryGui
[00:38:33] [Client thread/INFO]: tconstruct.smeltery.inventory.SmelteryContainer
[00:38:42] [Client thread/INFO]: logisticspipes.gui.orderer.NormalMk2GuiOrderer
[00:38:42] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:38:51] [Client thread/INFO]: [CHAT] §aRequested: §a36 Tin Dust§f
[00:38:51] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:38:53] [Client thread/INFO]: [CHAT] §aRequested: §a27 Tin Dust§f
[00:38:53] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:38:57] [Client thread/INFO]: tconstruct.smeltery.gui.SmelteryGui
[00:38:57] [Client thread/INFO]: tconstruct.smeltery.inventory.SmelteryContainer
[00:39:33] [Client thread/INFO]: tconstruct.smeltery.gui.SmelteryGui
[00:39:33] [Client thread/INFO]: tconstruct.smeltery.inventory.SmelteryContainer
[00:40:51] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:40:51] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:40:59] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:40:59] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:41:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:41:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:41:05] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:41:05] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:41:09] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:41:09] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:41:11] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:41:11] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:41:13] [Client thread/INFO]: net.minecraft.client.gui.GuiChat
[00:41:26] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:41:26] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:41:38] [Client thread/INFO]: Mapping halted in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM0
[00:41:38] [Client thread/INFO]: Requesting World ID
[00:41:42] [Client thread/INFO]: Requesting World ID
[00:41:42] [Client thread/INFO]: net.minecraft.client.gui.GuiDownloadTerrain
[00:41:42] [Client thread/INFO]: Received handshake from server
[00:41:42] [Client thread/INFO]: Available server commands: SetAE2FakeSlot
[00:41:42] [Client thread/INFO]: Requesting speed packet from server
[00:41:42] [Client thread/INFO]: Server speed is set to 20.0
[00:41:42] [Client thread/INFO]: Loaded 15 waypoints from C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\waypoints
[00:41:42] [Client thread/INFO]: Blocks and textures are current
[00:41:42] [Client thread/INFO]: Mapping started in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM-112. Memory: 3036MB total, 1291MB free
[00:41:43] [Client thread/INFO]: [CHAT] Unknown command. Try /help for a list of commands
[00:41:46] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:41:46] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:41:54] [Client thread/INFO]: [CHAT] §aRequested: §a640 Nether Quartz Ore§f
[00:41:54] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:41:56] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:41:56] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:42:00] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:42:00] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:42:04] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:42:04] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:42:06] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:42:06] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:42:14] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:42:14] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:42:23] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:42:23] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:42:26] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:42:26] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:42:28] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:42:28] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:42:32] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:42:32] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:42:34] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:42:34] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:42:36] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:42:36] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:42:47] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:42:47] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:42:49] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:42:49] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:42:53] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:42:53] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:43:00] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:43:00] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:43:04] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:43:04] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:43:07] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:43:07] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:43:10] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:43:10] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:43:13] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:43:13] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:43:16] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:43:16] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:43:35] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:43:35] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:43:37] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:43:37] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:43:39] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiPulverizer
[00:43:39] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerPulverizer
[00:43:48] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:43:48] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:44:04] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:44:04] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:44:09] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:44:09] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:44:13] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:44:13] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:44:18] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:44:18] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:44:23] [Client thread/INFO]: [CHAT] §aRequested: §a10 Tesseract Frame (Empty)§f
[00:44:23] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:44:24] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:44:24] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:44:31] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:44:31] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:44:40] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:44:40] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:44:48] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:44:48] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:44:58] [Client thread/INFO]: [CHAT] §aRequested: §a1728 Nether Quartz Ore§f
[00:44:58] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:45:02] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:45:02] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:45:12] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:45:12] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:45:14] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:14] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:19] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:19] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:22] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:45:22] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:45:25] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:25] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:28] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:28] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:32] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:32] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:38] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:38] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:43] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:43] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:45] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:45] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:48] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:48] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:52] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:45:52] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:45:56] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:45:56] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:46:05] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:46:05] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:46:08] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:46:08] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:46:11] [Client thread/INFO]: Mapping halted in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM-112
[00:46:11] [Client thread/INFO]: Requesting World ID
[00:46:15] [Client thread/INFO]: Requesting World ID
[00:46:15] [Client thread/INFO]: Received handshake from server
[00:46:15] [Client thread/INFO]: Available server commands: SetAE2FakeSlot
[00:46:16] [Client thread/INFO]: Requesting speed packet from server
[00:46:16] [Thread-31/INFO]: [paulscode.sound.SoundSystemLogger:errorMessage:131]: Error in class 'SourceLWJGL OpenAL'
[00:46:16] [Thread-31/INFO]: [paulscode.sound.SoundSystemLogger:errorMessage:132]: Channel null in method 'stop'
[00:46:17] [Client thread/INFO]: Requesting World ID
[00:46:17] [Client thread/INFO]: Loaded 15 waypoints from C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\waypoints
[00:46:17] [Client thread/INFO]: Blocks and textures are current
[00:46:17] [Client thread/INFO]: Mapping started in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM0. Memory: 3041MB total, 985MB free
[00:46:17] [Client thread/INFO]: Server speed is set to 20.0
[00:46:17] [Client thread/INFO]: [CHAT] Unknown command. Try /help for a list of commands
[00:46:18] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:46:18] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:47:16] [Client thread/INFO]: logisticspipes.gui.GuiLogisticsCraftingTable
[00:47:16] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:47:19] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:47:19] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:47:23] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:47:23] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:47:40] [Client thread/INFO]: crazypants.enderio.machine.alloy.GuiAlloySmelter
[00:47:40] [Client thread/INFO]: crazypants.enderio.machine.alloy.ContainerAlloySmelter
[00:47:48] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:47:48] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:47:52] [Client thread/INFO]: [CHAT] §aRequested: §a192 Nether Quartz§f
[00:47:52] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:47:55] [Client thread/INFO]: crazypants.enderio.machine.alloy.GuiAlloySmelter
[00:47:55] [Client thread/INFO]: crazypants.enderio.machine.alloy.ContainerAlloySmelter
[00:47:59] [Client thread/INFO]: crazypants.enderio.machine.alloy.GuiAlloySmelter
[00:47:59] [Client thread/INFO]: crazypants.enderio.machine.alloy.ContainerAlloySmelter
[00:48:28] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:48:28] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:48:35] [Client thread/INFO]: logisticspipes.gui.orderer.FluidGuiOrderer
[00:48:35] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:48:40] [Client thread/INFO]: [CHAT] §aRequested: §a10000mB Resonant Ender§f
[00:48:40] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:48:43] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:48:43] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:50:18] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:50:18] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:50:22] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:50:22] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:50:28] [Client thread/INFO]: [CHAT] §aRequested: §a10 Tesseract§f
[00:50:28] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:50:38] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:50:38] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:50:44] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:50:44] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:50:54] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:50:54] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:50:59] [Client thread/INFO]: [CHAT] §cMissing: §c64 Redstone Energy Fluxduct§f
[00:51:10] [Client thread/INFO]: [CHAT] §aRequested: §a64 Redstone Energy Fluxduct (Empty)§f
[00:51:10] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:51:13] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:51:13] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:51:18] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:51:18] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:51:23] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:51:23] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:51:32] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:51:32] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:51:44] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiStrongbox
[00:51:44] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerStrongbox
[00:51:55] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiStrongbox
[00:51:55] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerStrongbox
[00:52:18] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:52:18] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:52:21] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:52:21] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:52:29] [Client thread/INFO]: cofh.thermalexpansion.gui.client.GuiSatchel
[00:52:29] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerSatchel
[00:52:33] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:52:33] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.io.FileNotFoundException: C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\saves\NEI\remote\52.44.37.36~25565\world\NEI.dat (The requested operation cannot be performed on a file with a user-mapped section open)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.io.FileOutputStream.open(Native Method)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.io.FileOutputStream.<init>(FileOutputStream.java:213)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.io.FileOutputStream.<init>(FileOutputStream.java:162)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.NEIServerUtils.writeNBT(NEIServerUtils.java:399)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.config.ConfigSet.saveNBT(ConfigSet.java:38)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.NEIClientConfig.setSearchExpression(NEIClientConfig.java:378)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.SearchField.onTextChange(SearchField.java:89)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.TextField.setText(TextField.java:114)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.TextField.handleKeyPress(TextField.java:64)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.LayoutManager.keyTyped(LayoutManager.java:135)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.guihook.GuiContainerManager.firstKeyTyped(GuiContainerManager.java:318)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.guihook.GuiContainerManager.keyTyped(GuiContainerManager.java:472)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at codechicken.nei.guihook.GuiContainerManager.handleKeyboardInput(GuiContainerManager.java:465)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.gui.inventory.GuiContainer.func_146282_l(GuiContainer.java)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.gui.GuiScreen.func_146269_k(GuiScreen.java:276)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1640)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:973)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.main.Main.main(SourceFile:148)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:483)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
[00:52:37] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
[00:52:57] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiCrucible
[00:52:57] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerCrucible
[00:53:01] [Client thread/INFO]: logisticspipes.gui.orderer.NormalMk2GuiOrderer
[00:53:01] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:53:04] [Client thread/INFO]: [CHAT] §aRequested: §a64 Redstone§f
[00:53:04] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:53:07] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:53:07] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:53:11] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiCrucible
[00:53:11] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerCrucible
[00:53:35] [Client thread/INFO]: logisticspipes.gui.orderer.NormalMk2GuiOrderer
[00:53:35] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:53:39] [Client thread/INFO]: [CHAT] §aRequested: §a64 Redstone§f
[00:53:39] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:53:41] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:53:41] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:53:44] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiCrucible
[00:53:44] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerCrucible
[00:54:07] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:54:07] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:54:16] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:54:16] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:54:21] [Client thread/INFO]: logisticspipes.gui.orderer.NormalMk2GuiOrderer
[00:54:21] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:54:27] [Client thread/INFO]: [CHAT] §aRequested: §a64 Redstone§f
[00:54:27] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:54:30] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:54:30] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:54:36] [Client thread/INFO]: [CHAT] §aRequested: §a32 Redstone Energy Fluxduct (Empty)§f
[00:54:36] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:54:42] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:54:42] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:54:45] [Client thread/INFO]: logisticspipes.gui.orderer.GuiRequestTable
[00:54:45] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:54:49] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[00:54:49] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:54:57] [Client thread/INFO]: [CHAT] §aRequested: §a64 Cryo-Stabilized Fluxduct (Empty)§f
[00:54:57] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:55:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:55:01] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:55:05] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:55:05] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:55:10] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:55:10] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:55:11] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiCrucible
[00:55:11] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerCrucible
[00:55:12] [Client thread/INFO]: cofh.thermalexpansion.gui.client.machine.GuiTransposer
[00:55:12] [Client thread/INFO]: cofh.thermalexpansion.gui.container.machine.ContainerTransposer
[00:55:16] [Client thread/INFO]: logisticspipes.gui.orderer.FluidGuiOrderer
[00:55:16] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[00:55:23] [Client thread/INFO]: [CHAT] §aRequested: §a32000mB Gelid Cryotheum§f
[00:55:23] [Client thread/INFO]: [CHAT] §aRequest successful!
[00:55:30] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:55:30] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:55:51] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[00:55:51] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[00:56:04] [Client thread/INFO]: Mapping halted in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM0
[00:56:04] [Client thread/INFO]: Requesting World ID
[00:56:08] [Client thread/INFO]: Requesting World ID
[00:56:08] [Client thread/INFO]: net.minecraft.client.gui.GuiDownloadTerrain
[00:56:08] [Client thread/INFO]: Received handshake from server
[00:56:08] [Client thread/INFO]: Available server commands: SetAE2FakeSlot
[00:56:08] [Client thread/INFO]: Requesting speed packet from server
[00:56:09] [Client thread/INFO]: Server speed is set to 20.0
[00:56:09] [Client thread/INFO]: Loaded 15 waypoints from C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\waypoints
[00:56:09] [Client thread/INFO]: Blocks and textures are current
[00:56:09] [Client thread/INFO]: Mapping started in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM-112. Memory: 3039MB total, 1159MB free
[00:56:10] [Client thread/INFO]: [CHAT] Unknown command. Try /help for a list of commands
[00:56:17] [Client thread/INFO]: cpw.mods.ironchest.client.GUIChest
[00:56:17] [Client thread/INFO]: cpw.mods.ironchest.ContainerIronChest
[00:56:32] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:56:35] [Client thread/INFO]: [CHAT] Teleported firelizzard to -1491.5,43.5,1395.5
[00:56:39] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:56:42] [Client thread/INFO]: [CHAT] Teleported firelizzard to -1491.5,43.5,1395.5
[00:56:43] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:56:47] [Client thread/INFO]: [CHAT] Teleported firelizzard to -393.5,46.5,1909.5
[00:57:00] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:57:13] [Client thread/INFO]: [CHAT] Teleported firelizzard to -393.5,46.5,1909.5
[00:57:15] [Client thread/INFO]: journeymap.client.ui.fullscreen.Fullscreen
[00:57:17] [Client thread/INFO]: [CHAT] Teleported firelizzard to -1491.5,43.5,1395.5
[00:57:19] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:57:19] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:57:21] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:57:21] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:57:26] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[00:57:26] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[00:58:41] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:58:41] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[00:59:02] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[00:59:02] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:00:00] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[01:00:00] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[01:00:03] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[01:00:03] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[01:00:07] [Client thread/INFO]: [CHAT] §aRequested: §a4 Warp Itemduct§f
[01:00:07] [Client thread/INFO]: [CHAT] §aRequest successful!
[01:00:39] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:00:39] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:00:44] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[01:00:44] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[01:01:19] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:01:19] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:01:51] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:01:51] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:01:56] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[01:01:56] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[01:02:01] [Client thread/INFO]: cofh.thermalexpansion.gui.client.ender.GuiTesseract
[01:02:01] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[01:02:19] [Client thread/INFO]: cofh.thermalexpansion.gui.client.ender.GuiTesseract
[01:02:19] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[01:02:21] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:02:21] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:02:24] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[01:02:24] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[01:02:28] [Client thread/INFO]: cofh.thermalexpansion.gui.client.plate.GuiPlateTeleport
[01:02:28] [Client thread/INFO]: cofh.thermalexpansion.gui.container.ContainerTEBase
[01:03:03] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:03:03] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:03:06] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:03:06] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:04:04] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:04:04] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:04:06] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[01:04:06] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[01:04:10] [Client thread/INFO]: [CHAT] §aRequested: §a1 Structuralduct (Opaque)§f
[01:04:10] [Client thread/INFO]: [CHAT] §aRequest successful!
[01:04:21] [Client thread/INFO]: logisticspipes.gui.orderer.NormalGuiOrderer
[01:04:21] [Client thread/INFO]: logisticspipes.utils.gui.DummyContainer
[01:04:25] [Client thread/INFO]: [CHAT] §aRequested: §a2 Iron Ingot§f
[01:04:25] [Client thread/INFO]: [CHAT] §aRequest successful!
[01:04:31] [Client thread/INFO]: [CHAT] §aRequested: §a9 Lead Ingot§f
[01:04:31] [Client thread/INFO]: [CHAT] §aRequest successful!
[01:04:34] [Client thread/INFO]: codechicken.enderstorage.storage.item.GuiEnderItemStorage
[01:04:34] [Client thread/INFO]: codechicken.enderstorage.storage.item.ContainerEnderItemStorage
[01:04:36] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:04:36] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:04:42] [Client thread/INFO]: net.machinemuse.general.gui.PortableCraftingGui
[01:04:42] [Client thread/INFO]: net.machinemuse.general.gui.frame.PortableCraftingContainer
[01:04:48] [Client thread/INFO]: net.minecraft.client.gui.inventory.GuiInventory
[01:04:48] [Client thread/INFO]: net.minecraft.inventory.ContainerPlayer
[01:05:13] [Client thread/INFO]: Mapping halted in C:\Users\firelizzard\Documents\Curse\Minecraft\Instances\FTB Infinity Evolved\journeymap\data\mp\NiusWorks\DIM-112
[01:05:13] [Client thread/INFO]: Applying holder lookups
[01:05:13] [Client thread/INFO]: Holder lookups applied
[01:05:18] [Client thread/FATAL]: Unreported exception thrown!
java.lang.NullPointerException
at cofh.thermalexpansion.block.plate.TilePlateTeleporter.blockBroken(TilePlateTeleporter.java:492) ~[TilePlateTeleporter.class:?]
at cofh.core.block.TileCoFHBase.blockDismantled(TileCoFHBase.java:46) ~[TileCoFHBase.class:?]
at cofh.thermalexpansion.block.BlockTEBase.dismantleBlock(BlockTEBase.java:131) ~[BlockTEBase.class:?]
at cofh.core.block.BlockCoFHBase.dismantleBlock(BlockCoFHBase.java:338) ~[BlockCoFHBase.class:?]
at com.firelizzard.firecraft.item.DestroyerTool.onItemUse_dismantle(DestroyerTool.java:253) ~[DestroyerTool.class:?]
at com.firelizzard.firecraft.item.DestroyerTool.onItemUse_machine(DestroyerTool.java:228) ~[DestroyerTool.class:?]
at com.firelizzard.firecraft.item.DestroyerTool.func_77648_a(DestroyerTool.java:483) ~[DestroyerTool.class:?]
at net.minecraft.item.ItemStack.func_77943_a(ItemStack.java:129) ~[add.class:?]
at net.minecraft.client.multiplayer.PlayerControllerMP.func_78760_a(PlayerControllerMP.java:360) ~[bje.class:?]
at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1447) ~[bao.class:?]
at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1953) ~[bao.class:?]
at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:973) ~[bao.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898) [bao.class:?]
at net.minecraft.client.main.Main.main(SourceFile:148) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
[01:05:18] [Client thread/INFO]: [net.minecraft.client.Minecraft:func_71377_b:349]: ---- Minecraft Crash Report ----
// Surprise! Haha. Well, this is awkward.
Time: 10/4/17 1:05 AM
Description: Unexpected error
java.lang.NullPointerException: Unexpected error
at cofh.thermalexpansion.block.plate.TilePlateTeleporter.blockBroken(TilePlateTeleporter.java:492)
at cofh.core.block.TileCoFHBase.blockDismantled(TileCoFHBase.java:46)
at cofh.thermalexpansion.block.BlockTEBase.dismantleBlock(BlockTEBase.java:131)
at cofh.core.block.BlockCoFHBase.dismantleBlock(BlockCoFHBase.java:338)
at com.firelizzard.firecraft.item.DestroyerTool.onItemUse_dismantle(DestroyerTool.java:253)
at com.firelizzard.firecraft.item.DestroyerTool.onItemUse_machine(DestroyerTool.java:228)
at com.firelizzard.firecraft.item.DestroyerTool.func_77648_a(DestroyerTool.java:483)
at net.minecraft.item.ItemStack.func_77943_a(ItemStack.java:129)
at net.minecraft.client.multiplayer.PlayerControllerMP.func_78760_a(PlayerControllerMP.java:360)
at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1447)
at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1953)
at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:973)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at cofh.thermalexpansion.block.plate.TilePlateTeleporter.blockBroken(TilePlateTeleporter.java:492)
at cofh.core.block.TileCoFHBase.blockDismantled(TileCoFHBase.java:46)
at cofh.thermalexpansion.block.BlockTEBase.dismantleBlock(BlockTEBase.java:131)
at cofh.core.block.BlockCoFHBase.dismantleBlock(BlockCoFHBase.java:338)
at com.firelizzard.firecraft.item.DestroyerTool.onItemUse_dismantle(DestroyerTool.java:253)
at com.firelizzard.firecraft.item.DestroyerTool.onItemUse_machine(DestroyerTool.java:228)
at com.firelizzard.firecraft.item.DestroyerTool.func_77648_a(DestroyerTool.java:483)
at net.minecraft.item.ItemStack.func_77943_a(ItemStack.java:129)
at net.minecraft.client.multiplayer.PlayerControllerMP.func_78760_a(PlayerControllerMP.java:360)
at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1447)
at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1953)
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [GCEntityClientPlayerMP['firelizzard'/22046541, l='MpServer', x=-1493.46, y=44.54, z=1393.55]]
Chunk stats: MultiplayerChunkCache: 441, 441
Level seed: 0
Level generator: ID 04 - BIOMESOP, ver 0. Features enabled: false
Level generator options:
Level spawn location: World: (8,64,8), Chunk: (at 8,4,8 in 0,0; contains blocks 0,0,0 to 15,255,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 109227365 game time, 12085319 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: true), thunder time: 0 (now: false)
Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 3 total; [EntityHat['unknown'/4911369, l='MpServer', x=-1493.46, y=44.54, z=1393.55], GCEntityClientPlayerMP['firelizzard'/22046541, l='MpServer', x=-1493.46, y=44.54, z=1393.55], EntityTrail['unknown'/4911265, l='MpServer', x=-1493.46, y=44.54, z=1393.55]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Non-integrated multiplayer server
Stacktrace:
at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:927)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_25, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 474810528 bytes (452 MB) / 3173515264 bytes (3026 MB) up to 3173515264 bytes (3026 MB)
JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3072m -Xms256m -XX:PermSize=256m
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 15, tallocated: 95
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 204 mods loaded, 199 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJA FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJA Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJA AM2-Preloader{0.0.3} [AMCore] (minecraft.jar)
UCHIJA appliedenergistics2-core{rv3-beta-6} [Applied Energistics 2 Core] (minecraft.jar)
UCHIJA Aroma1997Core{1.0.2.16} [Aroma1997Core] (Aroma1997Core-1.7.10-1.0.2.16.jar)
UCHIJA CodeChickenCore{1.0.7.47} [CodeChicken Core] (minecraft.jar)
UCHIJA Micdoodlecore{} [Micdoodle8 Core] (minecraft.jar)
UCHIJA NotEnoughItems{1.0.5.120} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.120-universal.jar)
UCHIJA ThE-core{1.0.0.1} [Thaumic Energistics Core] (minecraft.jar)
UCHIJA ThaumicTinkerer-preloader{0.1} [Thaumic Tinkerer Core] (minecraft.jar)
UCHIJA ChocoPatcher{1.1} [Choco Patcher] (minecraft.jar)
UCHIJA OpenModsCore{0.10} [OpenModsCore] (minecraft.jar)
UCHIJA <CoFH ASM>{000} [CoFH ASM] (minecraft.jar)
UCHIJA BinniePatcher{1.8.2} [Binnie Patcher] (minecraft.jar)
UCHIJA FastCraft{1.23} [FastCraft] (fastcraft-1.23.jar)
UCHIJA debug{1.0} [debug] (denseores-1.6.2.jar)
UCHIJA AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar)
UCHIJA arsmagica2{1.4.0.009} [Ars Magica 2] (1.7.10_AM2-1.4.0.009.jar)
UCHIJA IC2{2.2.827-experimental} [IndustrialCraft 2] (industrialcraft-2-2.2.827-experimental.jar)
UCHIJA AdvancedSolarPanel{1.7.10-3.5.1} [Advanced Solar Panels] (AdvancedSolarPanel-1.7.10-3.5.1.jar)
UCHIJA AgriCraft{1.7.10-1.5.0} [AgriCraft] (AgriCraft-1.7.10-1.5.0.jar)
UCHIJA appliedenergistics2{rv3-beta-6} [Applied Energistics 2] (appliedenergistics2-rv3-beta-6.jar)
UCHIJA Aroma1997CoreHelper{1.0.2.16} [Aroma1997Core|Helper] (Aroma1997Core-1.7.10-1.0.2.16.jar)
UCHIJA Aroma1997sDimension{1.0} [Aroma1997's Dimensional World] (Aroma1997s-Dimensional-World-1.7.10-1.1.0.1.jar)
UCHIJA CoFHCore{1.7.10R3.1.4} [CoFH Core] (CoFHCore-[1.7.10]3.1.4-329.jar)
UCHIJA MineFactoryReloaded{1.7.10R2.8.1} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)
UCHIJA Baubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar)
UCHIJA Thaumcraft{4.2.3.5} [Thaumcraft] (Thaumcraft-1.7.10-4.2.3.5.jar)
UCHIJA MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.1} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)
UCHIJA Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar)
UCHIJA Automagy{0.28.2} [Automagy] (Automagy-1.7.10-0.28.2.jar)
UCHIJA AWWayofTime{v1.3.3} [Blood Magic: Alchemical Wizardry] (BloodMagic-1.7.10-1.3.3-17.jar)
UCHIJA Botania{r1.8-249} [Botania] (Botania r1.8-249.jar)
UCHIJA Avaritia{1.11} [Avaritia] (Avaritia-1.11.jar)
UCHIJA ThermalFoundation{1.7.10R1.2.6} [Thermal Foundation] (ThermalFoundation-[1.7.10]1.2.6-118.jar)
UCHIJA ThermalExpansion{1.7.10R4.1.5} [Thermal Expansion] (ThermalExpansion-[1.7.10]4.1.5-248.jar)
UCHIJA BigReactors{0.4.3A} [Big Reactors] (BigReactors-0.4.3A.jar)
UCHIJA Mantle{1.7.10-0.3.2.jenkins191} [Mantle] (Mantle-1.7.10-0.3.2b.jar)
UCHIJA Natura{2.2.0} [Natura] (natura-1.7.10-2.2.0.1.jar)
UCHIJA BiomesOPlenty{2.1.0} [Biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.1889-universal.jar)
UCHIJA BrandonsCore{1.0.0.12} [Brandon's Core] (BrandonsCore-1.0.0.12.jar)