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
1001
1002
1003
1004
1005
1006
|
[19:00:42] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[19:00:42] [main/INFO] [FML/]: Forge Mod Loader version 11.15.1.1722 for Minecraft 1.8.9 loading
[19:00:42] [main/INFO] [FML/]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_275, running on Linux:amd64:5.8.0-36-generic, installed at /usr/lib/jvm/java-8-openjdk-amd64/jre
[19:00:42] [main/DEBUG] [FML/]: Java classpath at launch is /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/cldrdata.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/dnsns.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/icedtea-sound.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jaccess.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/java-atk-wrapper.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/localedata.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nashorn.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunec.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunjce_provider.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunpkcs11.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/zipfs.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/management-agent.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar:/home/syeyoung/Documents/Dungeons Guide/build/classes/production/Dungeons_Guide.main:/home/syeyoung/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar:/home/syeyoung/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.16/6dc192c7f93ec1853f70d59d8a6dcf94eb42866/lombok-1.18.16.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.jetbrains/annotations-java5/19.0.0/475a5aea56b94cb13acf3853e27636db4354cb1/annotations-java5-19.0.0.jar:/home/syeyoung/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/stable/20/forgeSrc-1.8.9-11.15.1.1722.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/netty/1.6/4b75825a06139752bd800d9e29c5fd55b8b1b1e4/netty-1.6.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.21/aefba0d5b53fbcb70860bc8046ab95d5854c07a5/authlib-1.5.21.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.7.59/9c6c59b742d8e038a15f64c1aa273a893a658424/realms-1.7.59.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/2.0.1/516c03b21d50a644d538de0f0369c620989cd8f0/jsr305-2.0.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/6.5/320a2dfd18513a5f41b4e75729df684488cbd925/twitch-6.5.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/5f9d1ee26257b3a33f0ca06fed335ef462af659f/twitch-platform-6.5-natives-osx.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/206c4ccaecdbcfd2a1631150c69a97bbc9c20c11/twitch-platform-6.5-natives-windows-32.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/9fdd0fd5aed0817063dcf95b69349a171f447ebd/twitch-platform-6.5-natives-windows-64.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/syeyoung/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/start:/home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/lib/idea_rt.jar:/home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/plugins/Groovy/lib/agent/gragent.jar:/home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/plugins/java/lib/rt/debugger-agent.jar
[19:00:42] [main/DEBUG] [FML/]: Java library path at launch is /usr/java/packages/lib/amd64:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib:/home/syeyoung/.gradle/caches/minecraft/net/minecraft/natives/1.8.9
[19:00:42] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[19:00:42] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[19:00:42] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[19:00:42] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[19:00:42] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[19:00:42] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[19:00:42] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[19:00:42] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/syeyoung/Documents/Dungeons Guide/.
[19:00:42] [main/DEBUG] [FML/]: Discovering coremods
[19:00:42] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[19:00:42] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[19:00:42] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[19:00:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:00:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[19:00:42] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[19:00:42] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:00:42] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:00:42] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[19:00:42] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[19:00:42] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[19:00:42] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[19:00:42] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[19:00:42] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[19:00:42] [main/DEBUG] [FML/]: Injection complete
[19:00:42] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[19:00:42] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[19:00:42] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[19:00:42] [main/DEBUG] [FML/]: Loading deobfuscation resource /home/syeyoung/.gradle/caches/minecraft/de/oceanlabs/mcp/mcp_stable/20/srgs/srg-mcp.srg with 27884 records
[19:00:43] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[19:00:43] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[19:00:43] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[19:00:43] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[19:00:43] [main/DEBUG] [FML/]: Injection complete
[19:00:43] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[19:00:43] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[19:00:43] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[19:00:43] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[19:00:43] [main/DEBUG] [FML/]: Loaded 163 rules from AccessTransformer config file forge_at.cfg
[19:00:43] [main/DEBUG] [FML/]: Validating minecraft
[19:00:44] [main/DEBUG] [FML/]: Minecraft validated, launching...
[19:00:44] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[19:00:44] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[19:00:44] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[19:00:44] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[19:00:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.005s
[19:00:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - Animation took 0.000s
[19:00:49] [Client thread/INFO] [FML/]: MinecraftForge v11.15.1.1722 Initialized
[19:00:49] [Client thread/INFO] [FML/]: Replaced 204 ore recipies
[19:00:50] [Client thread/DEBUG] [FML/]: File /home/syeyoung/Documents/Dungeons Guide/config/injectedDependencies.json not found. No dependencies injected
[19:00:50] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[19:00:50] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/cldrdata.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/dnsns.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/icedtea-sound.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jaccess.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/java-atk-wrapper.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/localedata.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nashorn.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunec.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunjce_provider.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunpkcs11.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/zipfs.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jfr.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/management-agent.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar, examining for mod candidates
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/syeyoung/Documents/Dungeons Guide/build/classes/production/Dungeons_Guide.main, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.16/6dc192c7f93ec1853f70d59d8a6dcf94eb42866/lombok-1.18.16.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.jetbrains/annotations-java5/19.0.0/475a5aea56b94cb13acf3853e27636db4354cb1/annotations-java5-19.0.0.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/stable/20/forgeSrc-1.8.9-11.15.1.1722.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/netty/1.6/4b75825a06139752bd800d9e29c5fd55b8b1b1e4/netty-1.6.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar, examining for mod candidates
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.21/aefba0d5b53fbcb70860bc8046ab95d5854c07a5/authlib-1.5.21.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.7.59/9c6c59b742d8e038a15f64c1aa273a893a658424/realms-1.7.59.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/2.0.1/516c03b21d50a644d538de0f0369c620989cd8f0/jsr305-2.0.1.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar, examining for mod candidates
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/6.5/320a2dfd18513a5f41b4e75729df684488cbd925/twitch-6.5.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar, examining for mod candidates
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/5f9d1ee26257b3a33f0ca06fed335ef462af659f/twitch-platform-6.5-natives-osx.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/206c4ccaecdbcfd2a1631150c69a97bbc9c20c11/twitch-platform-6.5-natives-windows-32.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/9fdd0fd5aed0817063dcf95b69349a171f447ebd/twitch-platform-6.5-natives-windows-64.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar
[19:00:50] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/syeyoung/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/start, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/lib/idea_rt.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/plugins/Groovy/lib/agent/gragent.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/plugins/java/lib/rt/debugger-agent.jar, examining for mod candidates
[19:00:50] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[19:00:50] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[19:00:50] [Client thread/INFO] [FML/]: Searching /home/syeyoung/Documents/Dungeons Guide/mods for mods
[19:00:50] [Client thread/DEBUG] [FML/]: Examining file charsets.jar for potential mods
[19:00:50] [Client thread/DEBUG] [FML/]: The mod container charsets.jar appears to be missing an mcmod.info file
[19:00:50] [Client thread/DEBUG] [FML/]: Examining file cldrdata.jar for potential mods
[19:00:50] [Client thread/DEBUG] [FML/]: The mod container cldrdata.jar appears to be missing an mcmod.info file
[19:00:50] [Client thread/DEBUG] [FML/]: Examining file dnsns.jar for potential mods
[19:00:50] [Client thread/DEBUG] [FML/]: The mod container dnsns.jar appears to be missing an mcmod.info file
[19:00:50] [Client thread/DEBUG] [FML/]: Examining file icedtea-sound.jar for potential mods
[19:00:50] [Client thread/DEBUG] [FML/]: The mod container icedtea-sound.jar appears to be missing an mcmod.info file
[19:00:50] [Client thread/DEBUG] [FML/]: Examining file jaccess.jar for potential mods
[19:00:50] [Client thread/DEBUG] [FML/]: The mod container jaccess.jar appears to be missing an mcmod.info file
[19:00:50] [Client thread/DEBUG] [FML/]: Examining file java-atk-wrapper.jar for potential mods
[19:00:50] [Client thread/DEBUG] [FML/]: The mod container java-atk-wrapper.jar appears to be missing an mcmod.info file
[19:00:50] [Client thread/DEBUG] [FML/]: Examining file localedata.jar for potential mods
[19:00:50] [Client thread/DEBUG] [FML/]: The mod container localedata.jar appears to be missing an mcmod.info file
[19:00:50] [Client thread/DEBUG] [FML/]: Examining file nashorn.jar for potential mods
[19:00:50] [Client thread/DEBUG] [FML/]: The mod container nashorn.jar appears to be missing an mcmod.info file
[19:00:51] [Client thread/DEBUG] [FML/]: Examining file sunec.jar for potential mods
[19:00:51] [Client thread/DEBUG] [FML/]: The mod container sunec.jar appears to be missing an mcmod.info file
[19:00:51] [Client thread/DEBUG] [FML/]: Examining file sunjce_provider.jar for potential mods
[19:00:51] [Client thread/DEBUG] [FML/]: The mod container sunjce_provider.jar appears to be missing an mcmod.info file
[19:00:51] [Client thread/DEBUG] [FML/]: Examining file sunpkcs11.jar for potential mods
[19:00:51] [Client thread/DEBUG] [FML/]: The mod container sunpkcs11.jar appears to be missing an mcmod.info file
[19:00:51] [Client thread/DEBUG] [FML/]: Examining file zipfs.jar for potential mods
[19:00:51] [Client thread/DEBUG] [FML/]: The mod container zipfs.jar appears to be missing an mcmod.info file
[19:00:51] [Client thread/DEBUG] [FML/]: Examining file jce.jar for potential mods
[19:00:51] [Client thread/DEBUG] [FML/]: The mod container jce.jar appears to be missing an mcmod.info file
[19:00:51] [Client thread/DEBUG] [FML/]: Examining file jfr.jar for potential mods
[19:00:51] [Client thread/DEBUG] [FML/]: The mod container jfr.jar appears to be missing an mcmod.info file
[19:00:51] [Client thread/DEBUG] [FML/]: Examining file jsse.jar for potential mods
[19:00:51] [Client thread/DEBUG] [FML/]: The mod container jsse.jar appears to be missing an mcmod.info file
[19:00:52] [Client thread/DEBUG] [FML/]: Examining file management-agent.jar for potential mods
[19:00:52] [Client thread/DEBUG] [FML/]: The mod container management-agent.jar appears to be missing an mcmod.info file
[19:00:52] [Client thread/DEBUG] [FML/]: Examining file resources.jar for potential mods
[19:00:52] [Client thread/DEBUG] [FML/]: The mod container resources.jar appears to be missing an mcmod.info file
[19:00:52] [Client thread/DEBUG] [FML/]: Examining directory Dungeons_Guide.main for potential mods
[19:00:52] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory Dungeons_Guide.main
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide
[19:00:52] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (kr.syeyoung.dungeonsguide.a) - loading
[19:00:52] [Client thread/TRACE] [skyblock_dungeons_guide/]: Parsed dependency info : [] [] []
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.commands
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.config
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.config.guiconfig
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.config.types
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.d
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.actions
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.actions.tree
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.data
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.doorfinder
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.mechanics
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.mechanics.predicates
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.roomfinder
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.eventlistener
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.events
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.features
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.features.impl
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.features.listener
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.elements
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.gui
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.mechanicedit
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.panes
[19:00:52] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.valueedit
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.bossfight
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.boxpuzzle
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.icefill
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.waterpuzzle
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.waterpuzzle.nodes
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.utils
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file lombok-1.18.16.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container lombok-1.18.16.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/ERROR] [FML/]: Unable to read a class file correctly
java.lang.IllegalArgumentException
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-5.0.3.jar:5.0.3]
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) [ASMModParser.class:?]
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:69) [JarDiscoverer.class:?]
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:134) [ModDiscoverer.class:?]
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:363) [Loader.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:488) [Loader.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:451) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
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:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
[19:00:53] [Client thread/ERROR] [FML/]: There was a problem reading the entry module-info.class in the jar /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.16/6dc192c7f93ec1853f70d59d8a6dcf94eb42866/lombok-1.18.16.jar - probably a corrupt zip
net.minecraftforge.fml.common.LoaderException: java.lang.IllegalArgumentException
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:58) ~[ASMModParser.class:?]
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:69) [JarDiscoverer.class:?]
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:134) [ModDiscoverer.class:?]
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:363) [Loader.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:488) [Loader.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:451) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
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:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-5.0.3.jar:5.0.3]
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) ~[ASMModParser.class:?]
... 22 more
[19:00:53] [Client thread/WARN] [FML/]: Zip file lombok-1.18.16.jar failed to read properly, it will be ignored
net.minecraftforge.fml.common.LoaderException: java.lang.IllegalArgumentException
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:58) ~[ASMModParser.class:?]
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:69) [JarDiscoverer.class:?]
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:134) [ModDiscoverer.class:?]
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:363) [Loader.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:488) [Loader.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:451) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
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:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-5.0.3.jar:5.0.3]
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) ~[ASMModParser.class:?]
... 22 more
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file annotations-java5-19.0.0.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container annotations-java5-19.0.0.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.8.9-11.15.1.1722.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.8.9-11.15.1.1722.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file netty-1.6.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container netty-1.6.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package net
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
[19:00:53] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file idea_rt.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container idea_rt.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file gragent.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container gragent.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/DEBUG] [FML/]: Examining file debugger-agent.jar for potential mods
[19:00:53] [Client thread/DEBUG] [FML/]: The mod container debugger-agent.jar appears to be missing an mcmod.info file
[19:00:53] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[19:00:53] [Client thread/TRACE] [FML/]: Received a system property request ''
[19:00:53] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[19:00:53] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[19:00:53] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8.9-11.15.1.1722.jar [en_US, en_US]
[19:00:53] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8.9-11.15.1.1722.jar [en_US, en_US]
[19:00:53] [Client thread/DEBUG] [skyblock_dungeons_guide/]: Enabling mod skyblock_dungeons_guide
[19:00:53] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[19:00:53] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[19:00:54] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[19:00:54] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[19:00:54] [Client thread/DEBUG] [FML/]: Mod sorting data
[19:00:54] [Client thread/DEBUG] [FML/]: skyblock_dungeons_guide(Skyblock Dungeons Guide:1.0): Dungeons_Guide.main ()
[19:00:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[19:00:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.002s
[19:00:54] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[19:00:54] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[19:00:54] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[19:00:54] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[19:00:54] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, skyblock_dungeons_guide] at CLIENT
[19:00:54] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, skyblock_dungeons_guide] at SERVER
[19:00:54] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0.442s
[19:00:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[19:00:54] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[19:00:54] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[19:00:54] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (11.15.1.1722)
[19:00:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.008s
[19:00:54] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLConstructionEvent to mod skyblock_dungeons_guide
[19:00:54] [Client thread/WARN] [FML/skyblock_dungeons_guide]: =============================================================
[19:00:54] [Client thread/WARN] [FML/skyblock_dungeons_guide]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[19:00:54] [Client thread/WARN] [FML/skyblock_dungeons_guide]: Offendor: kr/syeyoung/dungeonsguide/a$1.actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V
[19:00:54] [Client thread/WARN] [FML/skyblock_dungeons_guide]: Use FMLCommonHandler.exitJava instead
[19:00:54] [Client thread/WARN] [FML/skyblock_dungeons_guide]: =============================================================
[19:00:54] [Client thread/TRACE] [FML/skyblock_dungeons_guide]: Mod skyblock_dungeons_guide is using network checker : Accepting version 1.0
[19:00:54] [Client thread/TRACE] [FML/skyblock_dungeons_guide]: Testing mod skyblock_dungeons_guide to verify it accepts its own version in a remote connection
[19:00:54] [Client thread/TRACE] [FML/skyblock_dungeons_guide]: The mod skyblock_dungeons_guide accepts its own version (1.0)
[19:00:54] [Client thread/DEBUG] [FML/skyblock_dungeons_guide]: Attempting to inject @SidedProxy classes into skyblock_dungeons_guide
[19:00:54] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLConstructionEvent to mod skyblock_dungeons_guide
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Skyblock Dungeons Guide took 0.015s
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0.467s
[19:00:54] [Client thread/DEBUG] [FML/]: Mod signature data
[19:00:54] [Client thread/DEBUG] [FML/]: Valid Signatures:
[19:00:54] [Client thread/DEBUG] [FML/]: Missing Signatures:
[19:00:54] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.19) minecraft.jar
[19:00:54] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.8.9-11.15.1.1722.jar
[19:00:54] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 11.15.1.1722) forgeSrc-1.8.9-11.15.1.1722.jar
[19:00:54] [Client thread/DEBUG] [FML/]: skyblock_dungeons_guide (Skyblock Dungeons Guide 1.0) Dungeons_Guide.main
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.004s
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.007s
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.006s
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Skyblock Dungeons Guide took 0.000s
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 0.029s
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.030s
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.048s
[19:00:54] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[19:00:54] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[19:00:54] [Client thread/DEBUG] [Skyblock Dungeons Guide/]: Mod Skyblock Dungeons Guide is missing a pack.mcmeta file, substituting a dummy one
[19:00:54] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[19:00:54] [Client thread/INFO] [FML/]: Found 384 ObjectHolder annotations
[19:00:54] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[19:00:54] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[19:00:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[19:00:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.000s
[19:00:54] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[19:00:54] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.014s
[19:00:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[19:00:54] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[19:00:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[19:00:54] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.046s
[19:00:54] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLPreInitializationEvent to mod skyblock_dungeons_guide
[19:00:54] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[19:00:55] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
"homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
"promos": {
"1.1-latest": "1.3.2.6",
"1.10-latest": "12.18.0.2000",
"1.10.2-latest": "12.18.3.2511",
"1.10.2-recommended": "12.18.3.2185",
"1.11-latest": "13.19.1.2199",
"1.11-recommended": "13.19.1.2189",
"1.11.2-latest": "13.20.1.2588",
"1.11.2-recommended": "13.20.1.2386",
"1.12-latest": "14.21.1.2443",
"1.12-recommended": "14.21.1.2387",
"1.12.1-latest": "14.22.1.2485",
"1.12.1-recommended": "14.22.1.2478",
"1.12.2-latest": "14.23.5.2854",
"1.12.2-recommended": "14.23.5.2854",
"1.13.2-latest": "25.0.219",
"1.14.2-latest": "26.0.63",
"1.14.3-latest": "27.0.60",
"1.14.4-latest": "28.2.23",
"1.14.4-recommended": "28.2.0",
"1.15-latest": "29.0.4",
"1.15.1-latest": "30.0.51",
"1.15.2-latest": "31.2.47",
"1.15.2-recommended": "31.2.0",
"1.16.1-latest": "32.0.108",
"1.16.2-latest": "33.0.61",
"1.16.3-latest": "34.1.42",
"1.16.3-recommended": "34.1.0",
"1.16.4-latest": "35.1.37",
"1.16.4-recommended": "35.1.4",
"1.16.5-latest": "36.0.0",
"1.5.2-latest": "7.8.1.738",
"1.5.2-recommended": "7.8.1.737",
"1.6.1-latest": "8.9.0.775",
"1.6.2-latest": "9.10.1.871",
"1.6.2-recommended": "9.10.1.871",
"1.6.3-latest": "9.11.0.878",
"1.6.4-latest": "9.11.1.1345",
"1.6.4-recommended": "9.11.1.1345",
"1.7.10-latest": "10.13.4.1614",
"1.7.10-latest-1.7.10": "10.13.2.1343",
"1.7.10-recommended": "10.13.4.1558",
"1.7.2-latest": "10.12.2.1147",
"1.7.2-recommended": "10.12.2.1121",
"1.8-latest": "11.14.4.1577",
"1.8-recommended": "11.14.4.1563",
"1.8.8-latest": "11.15.0.1655",
"1.8.9-latest": "11.15.1.2318",
"1.8.9-recommended": "11.15.1.1722",
"1.9-latest": "12.16.0.1942",
"1.9-recommended": "12.16.1.1887",
"1.9.4-latest": "12.17.0.2051",
"1.9.4-recommended": "12.17.0.1976",
"latest-1.7.10": "10.13.2.1343"
}
}
[19:00:55] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null
[19:00:57] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLPreInitializationEvent to mod skyblock_dungeons_guide
[19:00:57] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Skyblock Dungeons Guide took 3.250s
[19:00:57] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 3.311s
[19:00:57] [Client thread/INFO] [FML/]: Applying holder lookups
[19:00:57] [Client thread/INFO] [FML/]: Holder lookups applied
[19:00:57] [Client thread/INFO] [FML/]: Injecting itemstacks
[19:00:57] [Client thread/INFO] [FML/]: Itemstack injection complete
[19:00:57] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s
[19:00:58] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 3.959s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.004s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.002s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.048s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.042s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.000s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.008s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[19:01:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[19:01:04] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 1.583s
[19:01:04] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.466s
[19:01:04] [Client thread/INFO] [FML/]: Max texture size: 16384
[19:01:04] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.001s
[19:01:04] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.002s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 2.517s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 2.565s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.002s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.303s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.154s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 3.030s
[19:01:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[19:01:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s
[19:01:05] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[19:01:05] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.000s
[19:01:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[19:01:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.000s
[19:01:05] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLInitializationEvent to mod skyblock_dungeons_guide
[19:01:05] [Timer-0/INFO] [STDOUT/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:55]: I think i'm loading ah
[19:01:05] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLInitializationEvent to mod skyblock_dungeons_guide
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Skyblock Dungeons Guide took 0.342s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.342s
[19:01:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[19:01:05] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[19:01:05] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.004s
[19:01:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[19:01:05] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[19:01:05] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s
[19:01:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[19:01:05] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[19:01:05] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s
[19:01:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod skyblock_dungeons_guide
[19:01:05] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event IMCEvent to mod skyblock_dungeons_guide
[19:01:05] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event IMCEvent to mod skyblock_dungeons_guide
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Skyblock Dungeons Guide took 0.000s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.005s
[19:01:05] [Client thread/INFO] [FML/]: Injecting itemstacks
[19:01:05] [Client thread/INFO] [FML/]: Itemstack injection complete
[19:01:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[19:01:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s
[19:01:05] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[19:01:05] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s
[19:01:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[19:01:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.078s
[19:01:05] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLPostInitializationEvent to mod skyblock_dungeons_guide
[19:01:05] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLPostInitializationEvent to mod skyblock_dungeons_guide
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Skyblock Dungeons Guide took 0.000s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.078s
[19:01:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[19:01:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s
[19:01:05] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[19:01:05] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s
[19:01:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[19:01:05] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 14: RecipeEntry("Before", UNKNOWN, )
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 13: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 12: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[19:01:05] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, )
[19:01:05] [Client thread/DEBUG] [FML/Forge]: Sorting recipies
[19:01:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.007s
[19:01:05] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLLoadCompleteEvent to mod skyblock_dungeons_guide
[19:01:05] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLLoadCompleteEvent to mod skyblock_dungeons_guide
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Skyblock Dungeons Guide took 0.000s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.007s
[19:01:05] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[19:01:05] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s
[19:01:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.005s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.007s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Skyblock Dungeons Guide took 0.000s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.003s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/logo_1 took 0.000s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.004s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/dungeonmap/map_1 took 0.000s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/dungeons/map/_1 took 0.000s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.002s
[19:01:06] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.010s
[19:01:06] [Timer-0/INFO] [STDOUT/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.b:d:239]: waiting for 150762 bytes
[19:01:07] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 0.959s
[19:01:07] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.326s
[19:01:07] [Client thread/INFO] [FML/]: Max texture size: 16384
[19:01:09] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 1.452s
[19:01:09] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0.161s
[19:01:09] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.021s
[19:01:09] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.038s
[19:01:09] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 3.796s
[19:01:09] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 3.796s
[19:01:09] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 3.809s
[19:01:09] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[19:01:09] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[19:01:09] [Client thread/DEBUG] [Skyblock Dungeons Guide/]: Mod Skyblock Dungeons Guide is missing a pack.mcmeta file, substituting a dummy one
[19:01:09] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 19.877s
[19:01:19] [Netty Epoll Client IO #0/TRACE] [FML/]: Handshake channel activating
[19:01:19] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[19:01:19] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: HELLO
[19:01:19] [Netty Epoll Client IO #0/INFO] [FML/]: Server FML protocol version 1, no additional data received
[19:01:19] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[19:01:19] [Netty Epoll Client IO #0/INFO] [FML/]: Server protocol version 1
[19:01:19] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERDATA
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:0 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[19:01:20] [Netty Epoll Client IO #0/INFO] [FML/]: Attempting connection with missing mods [mcp, FML, Forge, skyblock_dungeons_guide] at SERVER
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $RegistryData:23 mappings->FMLHandshakeClientState$4:WAITINGSERVERCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Received Mod Registry mapping for minecraft:potions: 23 IDs 0 subs 0 dummied
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $RegistryData:5 mappings->FMLHandshakeClientState$4:WAITINGSERVERCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Received Mod Registry mapping for minecraft:villagerprofessions: 5 IDs 0 subs 0 dummied
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $RegistryData:198 mappings->FMLHandshakeClientState$4:WAITINGSERVERCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Received Mod Registry mapping for minecraft:blocks: 198 IDs 0 subs 0 dummied
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $RegistryData:337 mappings->FMLHandshakeClientState$4:WAITINGSERVERCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/INFO] [FML/]: Injecting existing block and item data into this client instance
[19:01:20] [Netty Epoll Client IO #0/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[19:01:20] [Netty Epoll Client IO #0/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s
[19:01:20] [Netty Epoll Client IO #0/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[19:01:20] [Netty Epoll Client IO #0/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[19:01:20] [Netty Epoll Client IO #0/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[19:01:20] [Netty Epoll Client IO #0/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.000s
[19:01:20] [Netty Epoll Client IO #0/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLModIdMappingEvent to mod skyblock_dungeons_guide
[19:01:20] [Netty Epoll Client IO #0/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLModIdMappingEvent to mod skyblock_dungeons_guide
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Step: ModIdMapping - Skyblock Dungeons Guide took 0.000s
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.001s
[19:01:20] [Netty Epoll Client IO #0/INFO] [FML/]: Applying holder lookups
[19:01:20] [Netty Epoll Client IO #0/INFO] [FML/]: Holder lookups applied
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: PENDINGCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: COMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: DONE
[19:01:20] [Netty Epoll Client IO #0/INFO] [FML/]: [Netty Epoll Client IO #0] Client side modded connection established
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{5}->FMLHandshakeClientState$7:DONE
[19:01:20] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: DONE
[19:01:21] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[19:01:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[19:01:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[19:01:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eWelcome to §r§aHypixel SkyBlock§r§e!§r
[19:01:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eSelected: §r§bFloor IV§r
[19:01:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[19:01:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[19:01:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§7falit_gg §r§ejoined the dungeon group! (§r§bMage Level 6§r§e)§r
[19:01:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§aCD0105 §r§ejoined the dungeon group! (§r§bBerserk Level 7§r§e)§r
[19:01:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§aItzEizz §r§ejoined the dungeon group! (§r§bMage Level 7§r§e)§r
[19:01:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:01:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eYou left the party.§r
[19:01:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:01:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aRefreshing...§r
[19:02:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aRefreshing...§r
[19:02:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[19:02:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[19:02:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------
§r§b[MVP§r§d+§r§b] lethergamer§r§f §r§eentered §r§cThe Catacombs§r§e, §r§eFloor V§r§e!
§r§9§m-----------------------------§r
[19:02:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:02:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§r§d+§r§b] lethergamer§r§e warped the party to a SkyBlock dungeon!§r
[19:02:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eLooting §r§cThe Catacombs §r§ewith §r§95/5 players §r§eon §r§6Floor V§r§e!§r
[19:02:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:02:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini243W...§r
[19:02:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[19:02:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[19:02:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYour active Potion Effects have been paused and stored. They will be restored when you leave Dungeons! You are not allowed to use existing Potion Effects while in Dungeons.§r
[19:02:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[19:02:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§blethergamer§r§a has started the dungeon countdown. The dungeon will begin in 1 minute.§r
[19:02:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rTalk to me to change your class and ready up.§r
[19:02:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§blethergamer§r§a is now ready!§r
[19:02:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aGriantje§r§a is now ready!§r
[19:02:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a is now ready!§r
[19:02:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:02:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7ddo1 §r§ehas disconnected, they have §r§c5 §r§eminutes to rejoin before they are removed from the party.§r
[19:02:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:02:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDelenomes§r§a is now ready!§r
[19:02:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 4 seconds.§r
[19:02:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 3 seconds.§r
[19:02:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 2 seconds.§r
[19:02:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 1 second.§r
[19:02:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rHere, I found this map when I first entered the dungeon.§r
[19:02:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rYou should find it useful if you get lost.§r
[19:02:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDelenomes's §r§6Wish §r§ehealed you for §r§a0 §r§ehealth and granted you an absorption shield with §r§a1,356 §r§ehealth!§r
[19:02:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rGood luck.§r
[19:02:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[19:02:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[19:02:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[19:02:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP] Delenomes§r§f §r§ehas obtained §r§6Revive Stone§r§e!§r
[19:03:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[19:03:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aDelenomes§r§7 was killed by Fels§r§7 and became a ghost§r§7.§r
[19:03:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aDelenomes §r§7is reviving §r§aDelenomes§r§7!§r
[19:03:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§lPUZZLE SOLVED! §r§asyeyoung §r§etied Tic Tac Toe! §r§4G§r§co§r§6o§r§ed§r§a §r§2j§r§bo§r§3b§r§5!§r
[19:03:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou were splashed by §aGriantje §fwith §r§cHealing VIII§r§f!§r
[19:03:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou can no longer consume or splash any potions during the remainder of this Dungeon run!§r
[19:03:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aDelenomes§r§a was revived by §r§aDelenomes§r§a!§r
[19:03:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Life V§r§f!§r
[19:03:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+1,392.5 HP §r§7and §r§a+0.18% §r§7health regeneration.§r
[19:03:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aDelenomes§r§7 was killed by Fels§r§7 and became a ghost§r§7.§r
[19:03:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[19:03:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[19:03:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c34,799.8 §r§7damage.§r
[19:03:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c34,939 §r§7damage.§r
[19:03:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,078.7 §r§7damage.§r
[19:03:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,219 §r§7damage.§r
[19:03:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,359.9 §r§7damage.§r
[19:03:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,501.3 §r§7damage.§r
[19:03:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,643.3 §r§7damage.§r
[19:03:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❶§r§7: You have dealt §r§c350000§r§7 Total Damage so far! §r§a01m 16s§r
[19:03:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c332,460.2 §r§7damage.§r
[19:03:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,928.9 §r§7damage.§r
[19:03:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,072.6 §r§7damage.§r
[19:03:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,216.9 §r§7damage.§r
[19:03:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,361.7 §r§7damage.§r
[19:03:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[19:03:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,507.1 §r§7damage.§r
[19:03:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,653.1 §r§7damage.§r
[19:03:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,799.7 §r§7damage.§r
[19:03:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,946.9 §r§7damage.§r
[19:03:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,094.6 §r§7damage.§r
[19:03:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,243 §r§7damage.§r
[19:03:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,391.9 §r§7damage.§r
[19:03:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,541.5 §r§7damage.§r
[19:03:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cLost Adventurer §r§aused §r§bIce Spray §r§aon you!§r
[19:03:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,691.6 §r§7damage.§r
[19:03:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,842.3 §r§7damage.§r
[19:03:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,993.7 §r§7damage.§r
[19:03:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,145.6 §r§7damage.§r
[19:03:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,298.2 §r§7damage.§r
[19:03:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,451.3 §r§7damage.§r
[19:03:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,605.1 §r§7damage.§r
[19:03:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,759.5 §r§7damage.§r
[19:03:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,914.5 §r§7damage.§r
[19:03:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,070.1 §r§7damage.§r
[19:03:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,226.4 §r§7damage.§r
[19:03:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,383.2 §r§7damage.§r
[19:04:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,540.7 §r§7damage.§r
[19:04:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❷§r§7: You have dealt §r§c1750000§r§7 Total Damage so far! §r§a01m 23s§r
[19:04:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,059.4 §r§7damage.§r
[19:04:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,207.6 §r§7damage.§r
[19:04:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,356.4 §r§7damage.§r
[19:04:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,505.8 §r§7damage.§r
[19:04:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,655.8 §r§7damage.§r
[19:04:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,806.4 §r§7damage.§r
[19:04:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,957.6 §r§7damage.§r
[19:04:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,109.4 §r§7damage.§r
[19:04:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7You were killed by §r§d§lFrozen Adventurer§r§7 and became a ghost§r§7.§r
[19:04:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,793.5 §r§7damage.§r
[19:04:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Fireball hit §r§c0 §r§7enemies for §r§c0 §r§7damage.§r
[19:04:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aDelenomes§r§a was revived by §r§aDelenomes§r§a!§r
[19:05:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aDelenomes§r§7 disconnected from the Dungeon and became a ghost§r§7.§r
[19:05:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:05:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Delenomes §r§ehas left the party.§r
[19:05:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:05:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§dBlessing of Wisdom§r§e!§r
[19:05:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§blethergamer §r§ffound a §r§dBlessing of Wisdom V§r§f! (§r§a02m 53s§r§f)§r
[19:05:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[19:05:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[19:05:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[19:07:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§blethergamer§r§a opened a §r§8§lWITHER §r§adoor!§r
[19:07:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:07:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7ddo1 §r§ewas removed from your party because they disconnected§r
[19:07:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:07:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §b[MVP§d+§b] lethergamer§f: §rill revive soon§r
[19:07:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §b[MVP§d+§b] lethergamer§f: §rdont leave§r
[19:07:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §b[MVP§2+§b] Hobiezilla §3[GM]§f: §rLOL§r
[19:07:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §b[MVP§4+§b] ToNSpaghetti §3[CoL]§f: §rhoes mad§r
[19:07:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[19:07:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[19:07:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[19:08:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §b[MVP§2+§b] Hobiezilla §3[GM]§f: §rSTOP MALDING§r
[19:08:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP] Policeop §3[Loser]§f: §rtf that mean§r
[19:08:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§blethergamer §r§ffound a §r§dBlessing of Life II§r§f!§r
[19:08:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§660ms §r§eleft.§r
[19:08:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §b[MVP§4+§b] ToNSpaghetti §3[CoL]§f: §rjoin vc for the explanation§r
[19:08:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §b[MVP§c+§b] akaewol §3[Mem]§f: §rwhat does peasent mean§r
[19:08:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§aPoliceop §r§eleft.§r
[19:09:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§blethergamer §r§ffound a §r§dBlessing of Power V§r§f!§r
[19:09:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§blethergamer§r§a opened a §r§8§lWITHER §r§adoor!§r
[19:09:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aTeleported you to §r§blethergamer§r§a!§r
[19:10:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§blethergamer §r§ffound a §r§dBlessing of Wisdom I§r§f!§r
[19:10:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[19:10:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[19:10:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[19:10:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aGriantje§r§a was revived by §r§dDesini the Fairy§r§a!§r
[19:10:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§asyeyoung§r§a was revived by §r§dIlene the Fairy§r§a!§r
[19:10:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§dIlene the Fairy§r§f: Have a great life!§r
[19:10:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aGriantje§r§a opened a §r§8§lWITHER §r§adoor!§r
[19:10:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[19:10:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aGriantje§r§7 was killed by Crypt Souleater§r§7 and became a ghost§r§7.§r
[19:10:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aGriantje§r§a was revived by §r§dQ'ara the Fairy§r§a!§r
[19:11:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§dBlessing of Stone§r§e!§r
[19:11:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§blethergamer §r§ffound a §r§dBlessing of Stone V§r§f! (§r§a08m 34s§r§f)§r
[19:11:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a796.1 §r§a❈ Defense §r§7and §r§a+36 §r§c❁ Damage§r§7.§r
[19:11:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] lethergamer§r§f §r§ehas obtained §r§cBlood Key§r§e!§r
[19:11:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7the §r§cBLOOD DOOR§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[19:11:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] Griantje§r§f §r§ehas obtained §r§6Revive Stone§r§e!§r
[19:11:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aGriantje§r§7 was killed by Skeleton Master§r§7 and became a ghost§r§7.§r
[19:11:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aGriantje §r§7is reviving §r§aGriantje§r§7!§r
[19:11:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[19:11:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aGriantje§r§a was revived by §r§aGriantje§r§a!§r
[19:11:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe §r§c§lBLOOD DOOR§r§c has been opened!§r
[19:11:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§5A shiver runs down your spine...§r
[19:11:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm starting to get tired of seeing you around here...§r
[19:11:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: This time I've imbued my minions with special properties!§r
[19:11:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: These will be stubborn and unwilling to change!§r
[19:11:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[19:11:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[19:11:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[19:12:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[19:12:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[19:12:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c236,057.2 §r§7damage.§r
[19:12:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Let's see how you can handle this.§r
[19:12:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aGriantje§r§7 was killed by §r§c§lBoomer Bonzo§r§7 and became a ghost§r§7.§r
[19:12:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c103,916 §r§7damage.§r
[19:12:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c104,162.1 §r§7damage.§r
[19:12:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c104,777.2 §r§7damage.§r
[19:12:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c105,027.4 §r§7damage.§r
[19:12:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c105,276.1 §r§7damage.§r
[19:12:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c106,283.2 §r§7damage.§r
[19:12:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Bonzo's Balloon hit you for §r§c8000.0§r§7 damage.§r
[19:12:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c106,918.8 §r§7damage.§r
[19:12:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c107,172 §r§7damage.§r
[19:12:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c107,425.8 §r§7damage.§r
[19:12:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c107,680.2 §r§7damage.§r
[19:12:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c108,330.6 §r§7damage.§r
[19:12:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c108,717.3 §r§7damage.§r
[19:12:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c109,372.4 §r§7damage.§r
[19:12:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c109,631.4 §r§7damage.§r
[19:12:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[19:12:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c109,893.2 §r§7damage.§r
[19:12:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c110,155.6 §r§7damage.§r
[19:12:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c110,812.5 §r§7damage.§r
[19:12:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c111,471.6 §r§7damage.§r
[19:12:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c111,735.6 §r§7damage.§r
[19:12:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c111,962.9 §r§7damage.§r
[19:12:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Very nice.§r
[19:12:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c111,962.9 §r§7damage.§r
[19:12:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c111,962.9 §r§7damage.§r
[19:12:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cBoomer Bonzo§r§c 'sploded on you for 12,750 HP!§r
[19:12:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7You were killed by Zombie§r§7 and became a ghost§r§7.§r
[19:12:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[19:12:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP§6+§a] syeyoung§f: §rit was§r
[19:12:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP§6+§a] syeyoung§f: §rbomb§r
[19:12:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:12:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eYou left the party.§r
[19:12:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[19:12:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[19:12:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r
[19:12:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[19:12:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[19:12:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eWelcome to §r§aHypixel SkyBlock§r§e!§r
[19:12:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are now in the §r§6GUILD§r§a channel§r
[19:12:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rcan we run f6 once rn§r
[19:13:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rf5 f6 f7 all once§r
[19:13:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rpls§r
[19:13:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rI need chat§r
[19:13:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §r1 runs§r
[19:13:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §reach§r
[19:13:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rfor f5 6 7§r
[19:13:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rdid you change all talismans lol§r
[19:14:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:14:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[19:15:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§brioho §r§ejoined.§r
[19:16:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §cYou're already in this channel!§r
[19:16:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rhi will§r
[19:16:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rI feel like i need to beat f5 f6 f7 once§r
[19:17:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§aPoliceop §r§ejoined.§r
[19:17:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§6toto7735 §r§eleft.§r
[19:17:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§2143 GEXP §r§afrom playing SkyBlock!§r
[19:20:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §ron what?§r
[19:21:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rgold§r
[19:21:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§aJoe_Is_Real §r§eleft.§r
[19:21:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §r?§r
[19:21:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §ropinion on god?§r
[19:21:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §roh god pleas§r
[19:21:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou can't travel further than 176 blocks in that direction!§r
[19:21:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou can't travel further than 176 blocks in that direction!§r
[19:21:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:21:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:22:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§aJoe_Is_Real §r§ejoined.§r
[19:22:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§268 GEXP §r§afrom playing SkyBlock!§r
[19:23:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§bPeriodic__table §r§eleft.§r
[19:23:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§7PandaBear12344 §r§ejoined.§r
[19:23:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§bakaewol §r§eleft.§r
[19:24:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§bakaewol §r§ejoined.§r
[19:26:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §cYou're already in this channel!§r
[19:26:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rso you want to talk to me§r
[19:27:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:27:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:27:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §r?§r
[19:27:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §ridk§r
[19:27:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rmaybe make them a mod§r
[19:27:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§248 GEXP §r§afrom playing SkyBlock!§r
[19:28:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §cYou're already in this channel!§r
[19:28:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rI really don't have ability to give life-advice and tips though§r
[19:28:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rhuh§r
[19:28:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dTo §r§b[MVP§r§4+§r§b] ToNSpaghetti§r§7: §r§7"why are you guys not being rude to you"§r
[19:28:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dTo §r§b[MVP§r§4+§r§b] ToNSpaghetti§r§7: §r§7"or not saying bad things"§r
[19:29:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dTo §r§b[MVP§r§4+§r§b] ToNSpaghetti§r§7: §r§7ye§r
[19:29:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§balpha_kai_NET §r§eleft.§r
[19:29:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:30:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:30:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:30:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:30:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:30:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:31:05] [Timer-0/INFO] [STDOUT/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:55]: I think i'm loading ah
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: java.io.IOException: Server returned HTTP response code: 403 for URL: https://dungeonsguide.kro.kr/resource/keys
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1900)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:92)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1490)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1488)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at java.security.AccessController.doPrivileged(Native Method)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:784)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1487)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:268)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at kr.syeyoung.dungeonsguide.b.d(b.java:214)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at kr.syeyoung.dungeonsguide.utils.AhUtils.loadAuctions(AhUtils.java:59)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at kr.syeyoung.dungeonsguide.utils.AhUtils$1.run(AhUtils.java:30)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at java.util.TimerThread.mainLoop(Timer.java:555)
[19:31:06] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at java.util.TimerThread.run(Timer.java:505)
[19:31:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:31:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:31:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:31:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:31:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[19:32:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§aDoggydude257 §r§ejoined.§r
[19:32:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§2400 GEXP §r§afrom playing SkyBlock!§r
[19:36:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§7RedCoyote01 §r§ejoined.§r
[19:37:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§bHobiezilla §r§eleft.§r
[19:37:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§215 GEXP §r§afrom playing SkyBlock!§r
[19:40:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§bSummer__Kkangchu §r§ejoined.§r
[19:41:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§bRagingRahu §r§ejoined.§r
[19:44:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§axMaark §r§eleft.§r
[19:48:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eYou are being transferred to the §r§aHUB §r§efor being §r§cAFK§r§e!§r
[19:48:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini192D...§r
[19:48:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[19:48:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[19:48:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[19:49:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] MaxR428§f§r§f: what is the best sword§r
[19:49:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP§6+§a] lc_jab_onYT§f§r§f: midas§r
[19:49:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] T3rminator64§f§r§f: depends the class in dungeon§r
[19:49:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP§6+§a] lc_jab_onYT§f§r§f: or aotd§r
[19:49:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP§6+§a] TheMrDopey§f§r§f: lc_jab_onYT no they are trash§r
[19:49:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP§6+§a] TheMrDopey§f§r§f: valkyre or hyperion§r
[19:49:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] T3rminator64§f§r§f: no, its valkyrie for berserk, hyperion for mage§r
[19:50:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] T3rminator64§f§r§f: Yeah TheMrDopey :D§r
[19:53:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §2Guild > §r§7PandaBear12344 §r§eleft.§r
[19:55:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§bAviationCraft §r§ejoined.§r
[19:55:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§bPeriodic__table §r§ejoined.§r
[19:55:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§bPeriodic__table §r§eleft.§r
[19:56:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§brioho §r§eleft.§r
[19:57:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sterrenkoning§7§r§7: lapis§r
[19:58:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aDiamond_guy11§r§7 fell to their death§r§7.§r
|