-
Notifications
You must be signed in to change notification settings - Fork 11
/
crashes.json
2291 lines (2291 loc) · 71.2 KB
/
crashes.json
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
{
"fixes": [
{
"fixtype": 1,
"fix": "Remove Hypixel Mod API from your mods folder, if you have it.",
"causes": [
{
"method": "contains",
"value": "at net.minecraft.client.renderer.entity.RenderItem.<init>"
},
{
"method": "contains",
"value": "bingobrewers"
}
]
},
{
"fixtype": 1,
"fix": "Remove Hypixel Mod API from your mods folder, if you have it.",
"causes": [
{
"method": "contains",
"value": "java.lang.NullPointerException: Initializing game"
},
{
"method": "contains",
"value": "at net.minecraft.client.Minecraft.displayGuiScreen(Minecraft.java)"
},
{
"method": "contains",
"value": "bingobrewers"
}
]
},
{
"fixtype": 1,
"fix": "Remove Partly Sane Skies from your mods folder or disable the custom Auction House GUI.",
"causes": [
{
"method": "contains",
"value": "at me.partlysanestudios.partlysaneskies.features.economy.auctionhousemenu.AuctionHouseGui$Companion.isAuctionHouseFullyLoaded(AuctionHouseGui.kt:259)"
}
]
},
{
"name": "reinstallneu",
"fixtype": 1,
"fix": "NotEnoughUpdates seems to be corrupted. Try removing it from your mods folder and reinstalling it.\n%pathindicator%%profileroot%/mods/%pathindicator%",
"causes": [
{
"method": "contains",
"value": "net.minecraftforge.fml.common.LoaderException: java.lang.ClassNotFoundException: io.github.moulberry.notenoughupdates.NotEnoughUpdates"
},
{
"method": "contains",
"value": "at net.minecraftforge.fml.common.LoadController.transition"
}
]
},
{
"name": "neutabs",
"fixtype": 1,
"fix": "Reset the Controls to List Players and Open Chat",
"causes": [
{
"method": "contains",
"value": "java.lang.IndexOutOfBoundsException"
},
{
"method": "contains",
"value": "at java.nio.DirectByteBuffer.get(DirectByteBuffer.java"
},
{
"method": "contains",
"value": "at org.lwjgl.input.Keyboard.isKeyDown(Keyboard.java"
},
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.overlays.TextTabOverlay.realTick(TextTabOverlay.java"
},
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.listener.NEUEventListener.onTick(NEUEventListener.java"
}
]
},
{
"name": "sbalwjgl",
"fixtype": 1,
"fix": "Update SkyblockAddons",
"causes": [
{
"method": "contains",
"value": "Cannot determine focused state of uncreated window"
},
{
"method": "contains",
"value": "at org.lwjgl.opengl.Display.isActive"
}
]
},
{
"name": "sbanewgui",
"fixtype": 1,
"fix": "Update SkyblockAddons",
"causes": [
{
"method": "contains",
"value": "at codes.biscuit.skyblockaddons.mixins.hooks.EntityRendererHook.onRenderScreenPre(EntityRendererHook.java:17)"
}
]
},
{
"name": "hytilsreborn",
"fixtype": 1,
"fix": "Remove Hytils-Reborn from your mods folder:\n%pathindicator%%profileroot%/mods/%pathindicator%",
"causes": [
{
"method": "contains",
"value": "cc.woverflow.hytils.handlers.chat.modules.modifiers.DefaultChatRestyler"
}
]
},
{
"name": "hytilsreborn-mojangapi",
"fixtype": 1,
"fix": "The Mojang API is down, and so nothing would work anyways. You could try removing Hytils, but what's the point?",
"causes": [
{
"method": "contains",
"value": "java.lang.NullPointerException: Initializing game"
},
{
"method": "contains",
"value": "at cc.woverflow.hytils.util.HypixelAPIUtils.getUUID"
}
]
},
{
"name": "petxprepo",
"fixtype": 1,
"fix": "Step 1: Download the repo at - https://github.com/Moulberry/NotEnoughUpdates-REPO/archive/refs/heads/master.zip\nStep 2: Extract the repo and copy its content - https://i.imgur.com/xsQkqum.png\nStep 3: Navigate to %pathindicator%%profileroot%/config/notenoughupdates%pathindicator%\nStep 4: Create a repo folder if there are none.\nStep 5 : Paste the content you just previously copied\nStep 6 : The final results should look like this - https://i.imgur.com/jgFwsle.png",
"causes": [
{
"method": "contains",
"value": "java.lang.NullPointerException: Unexpected error"
},
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.util.XPInformation.getPetLevel"
},
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.miscfeatures.PetInfoOverlay.onTick"
}
]
},
{
"name": "guineurepo",
"fixtype": 1,
"fix": "Step 1: Download the repo at - https://github.com/Moulberry/NotEnoughUpdates-REPO/archive/refs/heads/master.zip\nStep 2: Extract the repo and copy its content - https://i.imgur.com/xsQkqum.png\nStep 3: Navigate to %pathindicator%%profileroot%/config/notenoughupdates%pathindicator%\nStep 4: Create a repo folder if there are none.\nStep 5 : Paste the content you just previously copied\nStep 6 : The final results should look like this - https://i.imgur.com/jgFwsle.png",
"causes": [
{
"method": "contains",
"value": "java.lang.NoClassDefFoundError: Could not initialize class io.github.moulberry.notenoughupdates.profileviewer.GuiProfileViewer"
},
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.miscfeatures.PetInfoOverlay.updatePetLevels"
}
]
},
{
"name": "neurepo",
"fixtype": 1,
"fix": "Step 1: Download the repo at - https://github.com/Moulberry/NotEnoughUpdates-REPO/archive/refs/heads/master.zip\nStep 2: Extract the repo and copy its content - https://i.imgur.com/xsQkqum.png\nStep 3: Navigate to %pathindicator%%profileroot%/config/notenoughupdates%pathindicator%\nStep 4: Create a repo folder if there are none.\nStep 5 : Paste the content you just previously copied\nStep 6 : The final results should look like this - https://i.imgur.com/jgFwsle.png",
"causes": [
{
"method": "contains",
"value": "this is a placeholder crash for the -crash command"
}
]
},
{
"name": "-805306369",
"fixtype": 1,
"fix": "Try disabling the \"Discord Rich Presence\" aka \"RPC\" aka \"Discord Status\" settings in `/dg`, `/sba` and `/scc`.",
"causes": [
{
"method": "contains",
"value": "THERE ARE NO CAUSES!!!!"
}
]
},
{
"name": "tempfilesfull",
"fixtype": 1,
"fix": "Essential failed to create a TEMP file. Try deleting the contents of the %pathindicator%C:/WINDOWS/TEMP%pathindicator% folder and try again.",
"causes": [
{
"method": "contains",
"value": "java.nio.file.AccessDeniedException: C:\\WINDOWS\\TEMP\\"
}
]
},
{
"name": "ctparticles",
"fixtype": 1,
"fix": "The ChatTriggers module \"ToggleParticles\" seems to be causing issues.\n1. Navigate to %pathindicator%%profileroot%/config/ChatTriggers/modules%pathindicator%\n2. Delete ToggleParticles\n3. Reload the Game or your ChatTriggers modules.",
"causes": [
{
"method": "contains",
"value": "java.lang.NullPointerException: Exception while adding particle"
},
{
"method": "contains",
"value": "at net.optifine.CustomColors.updateWaterFX"
}
]
},
{
"name": "sbaconfig",
"fixtype": 1,
"fix": "Put the following files into %pathindicator%%profileroot%/config%pathindicator%:\nhttps://cdn.discordapp.com/attachments/887818760126345246/974401087094284298/skyblockaddons.cfg\nhttps://cdn.discordapp.com/attachments/887818760126345246/974401087316561980/skyblockaddons_persistent.cfg",
"causes": [
{
"method": "contains",
"value": "java.lang.NullPointerException"
},
{
"method": "contains",
"value": "codes.biscuit.skyblockaddons.config.ConfigValues.addDefaultsAndSave"
},
{
"method": "contains",
"value": "codes.biscuit.skyblockaddons.config.ConfigValues.loadValues"
},
{
"method": "contains",
"value": "codes.biscuit.skyblockaddons.SkyblockAddons.preInit"
}
]
},
{
"name": "null",
"fixtype": 3,
"fix": "To fix the problem:\n1. Go to <https://account.xbox.com/en-us/settings>\n2. Navigate to the `Xbox One/Windows 10 Online Safety` tab. If you are under 18, you may need a parent or guardian to help by getting them to create a family and add you to it.\n3. From there, they should be able to enable multiplayer for your account.\n4. Relaunch Minecraft and you should be able to join any multiplayer server.",
"causes": [
{
"method": "contains",
"value": "Failed to login: null"
}
]
},
{
"fixtype": 3,
"fix": "The Hypixel Alpha server is currently closed!",
"causes": [
{
"method": "contains",
"value": "The Hypixel Alpha server is currently closed!"
}
]
},
{
"fixtype": 0,
"fix": "You're using an old version of Forge (1902).\nUpdate Forge: <https://files.minecraftforge.net/net/minecraftforge/forge/index_1.8.9.html>",
"causes": [
{
"method": "contains",
"value": "Powered by Forge 11.15.1.1902"
}
]
},
{
"fixtype": 0,
"fix": "You're using an old version of Forge (1722).\nUpdate Forge: <https://files.minecraftforge.net/net/minecraftforge/forge/index_1.8.9.html>",
"causes": [
{
"method": "contains",
"value": "Powered by Forge 11.15.1.1722"
}
]
},
{
"fixtype": 0,
"fix": "You are on Optifine M5.",
"causes": [
{
"method": "contains",
"value": "OptiFine_1.8.9_HD_U_M5"
}
]
},
{
"fixtype": 0,
"fix": "You are on Optifine M6.",
"causes": [
{
"method": "contains",
"value": "OptiFine_1.8.9_HD_U_M6"
}
]
},
{
"fixtype": 0,
"fix": "Feather Client is unsupported and any issues it causes need to be reported to Feather Staff.",
"causes": [
{
"method": "contains",
"value": "FeatherTweaker"
}
]
},
{
"fixtype": 1,
"fix": "Looks like you have a corrupted Forge installation.\nReinstall Forge <https://files.minecraftforge.net/net/minecraftforge/forge/index_1.8.9.html>",
"causes": [
{
"method": "contains",
"value": "java.lang.ClassNotFoundException: net.minecraftforge.fml.common.launcher.FMLTweaker"
}
]
},
{
"fixtype": 1,
"fix": "The list of items NotEnoughUpdates uses seems to be corrupt.\n\n1. Download the repo at <https://github.com/Moulberry/NotEnoughUpdates-REPO/archive/refs/heads/master.zip>\n2. Extract the repo and copy its content (example at <https://cdn.discordapp.com/attachments/807409061138006016/832942353839816724/unknown.png>)\n3. Navigate to %pathindicator%%profileroot%/config/notenoughupdates/%pathindicator%\n4. Create a repo folder if there are none.\n5. Paste the content you just previously copied\n6. The final results should look like the example at <https://cdn.discordapp.com/attachments/807409061138006016/832943231359909898/unknown.png>",
"causes": [
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.NEUManager.getLoreReplacements"
},
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.NEUManager.jsonToStack"
}
]
},
{
"fixtype": 1,
"fix": "The cache from the SkyclientCosmetics mod seems to be corrupt.\n1. Navigate to %pathindicator%%profileroot%/SkyclientCosmetics/%pathindicator%\n2. Remove cache.json",
"causes": [
{
"method": "contains",
"value": "scc.googlecom.gson.JsonElement.getAsJsonObject"
},
{
"method": "contains",
"value": "io.github.koxx12dev.scc.utils.managers.CacheManager.loadCache"
}
]
},
{
"fixtype": 1,
"fix": "Update SkyClientCosmetics to 1.1.18 or above. Download https://modrinth.com/mod/scc/versions and put it in your mods folder.",
"causes": [
{
"method": "contains",
"value": "java.lang.NoClassDefFoundError: com/replaymod/core/SettingsRegistry$SettingKey"
}
]
},
{
"fixtype": 1,
"fix": "There was a problem intializing Chatting.\nThis crash seems to be caused by ANY and ALL of the following mods: \nHytilities-Reborn, VanillaHUD, CrashPatch, and Chatting.\nRemove these mods in the meantime.",
"causes": [
{
"method": "contains",
"value": "at cc.woverflow.chatting.Chatting.onFMLPreInitialization(Chatting.kt:73)"
}
]
},
{
"fixtype": 1,
"fix": "There was a problem intializing Hytilities.\nThis crash seems to be caused by ANY and ALL of the following mods: \nHytilities-Reborn, VanillaHUD, CrashPatch, and Chatting.\nRemove these mods in the meantime.",
"causes": [
{
"method": "contains",
"value": "at net.wyvest.hytilities.Hytilities.onFMLPreInitialization(Hytilities.java:108)"
}
]
},
{
"name": "oldscc",
"fixtype": 1,
"fix": "There was a bug in this outdated copy of SkyclientCosmetics.\nPlease update SkyclientCosmetics.",
"causes": [
{
"method": "contains",
"value": "org.json.JSONException: JSONObject[\"HpRanks\"] not found."
},
{
"method": "contains",
"value": "at org.json.JSONObject.get(JSONObject.java:572)"
},
{
"method": "contains",
"value": "at io.github.koxx12dev.scc.utils.Requests.reloadTags(Requests.java:44)"
}
]
},
{
"name": "oldscc2",
"fixtype": 1,
"fix": "SkyclientCosmetics had an error parsing JSON.\nPlease update SkyclientCosmetics.",
"causes": [
{
"method": "contains",
"value": "[io.github.koxx12dev.scc.listeners.ChatListeners:onChatMsgTags:108]: org.json.JSONException: JSONArray[0] is not a JSONObject."
}
]
},
{
"fixtype": 1,
"fix": "Something went wrong with NotEnoughUpdates' mining overlay.\nRemoving CustomMainMenu appears to fix this crash.",
"causes": [
{
"method": "contains",
"value": "io.github.moulberry.notenoughupdates.overlays.MiningOverlay.update"
},
{
"method": "contains",
"value": "com.google.gson.JsonSyntaxException"
}
]
},
{
"name": "miningoverlay",
"fixtype": 1,
"fix": "Something went wrong with NotEnoughUpdates' mining overlay.\n1. Enable Player list info (example at <https://cdn.discordapp.com/attachments/740707612474998826/907950067808337950/enable_player_list_info.mp4>)\n2. If this does not fix your crash, disable NotEnoughUpdates' Dwarven overlay (by running `/neu mining`)",
"causes": [
{
"method": "contains",
"value": "io.github.moulberry.notenoughupdates.overlays.MiningOverlay.update"
}
]
},
{
"name": "inteldrivers",
"fixtype": 1,
"fix": "Update your Intel Graphics Drivers.",
"causes": [
{
"method": "contains",
"value": "ig75icd64.dll"
}
]
},
{
"fixtype": 1,
"fix": "Unable to download Essential, please check your internet connection.\nThis can be caused by VPN or something similar.\nIf the problem persists, please contact Essential's support at <https://discord.gg/essential>.",
"causes": [
{
"method": "contains",
"value": "Error occurred when downloading file 'https://downloads.essential.gg"
}
]
},
{
"fixtype": 1,
"fix": "Essential's DI is not initialized! Try manually updating Essential via https://modrinth.com/mod/essential/versions?l=forge&g=1.8.9. If that doesn't work, contact Essential's support at <https://discord.gg/essential>.",
"causes": [
{
"method": "contains",
"value": "Caused by: java.lang.RuntimeException: DI not initialised!"
}
]
},
{
"name": "vanillablockchange",
"fixtype": 1,
"fix": "This crash was caused by a vanilla Minecraft bug that's caused by changing a block with special states and cannot be fixed.",
"causes": [
{
"method": "contains",
"value": "java.lang.IllegalArgumentException: Cannot get property PropertyEnum"
},
{
"method": "contains",
"value": "at net.minecraft.block.state.BlockState$StateImplementation.getValue(BlockState.java:137)"
},
{
"method": "contains",
"value": "at net.minecraft.block.BlockStairs.doesSideBlockRendering(BlockStairs.java:79)"
},
{
"method": "contains",
"value": "at club.sk1er.patcher.hooks.BlockInfoHook.updateLightMatrix"
}
]
},
{
"name": "medal",
"fixtype": 1,
"fix": "Medal's drivers interfered.\nRemove the Medal.tv clipping software from your computer.",
"causes": [
{
"method": "contains",
"value": "medal-hook64.dl"
},
{
"method": "contains",
"value": "atio6axx.dll"
}
]
},
{
"fixtype": 1,
"fix": "Couldn't log in to multiplayer serivces.\nIf you use a Microsoft account, enable multiplayer.\n1. Go to <https://account.xbox.com/en-us/Settings>\n2. Navigate to the Xbox One/Windows 10 Online Safety tab. If you are under 18, you may need a parent or guardian to help by getting them to create a family and add you to it.\n3. From there, they should be able to enable multiplayer for your account.",
"causes": [
{
"method": "contains",
"value": "Failed to login: null"
}
]
},
{
"name": "neustorage",
"fixtype": 1,
"fix": "NotEnoughUpdates' custom storage ran into an error.\n1. Navigate to %pathindicator%%profileroot%/config/notenoughupdates%pathindicator%\n2. Delete storageItems.json",
"causes": [
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.miscgui.StorageOverlay.render(StorageOverlay.java:599)"
}
]
},
{
"fixtype": 1,
"fix": "While rendering, there was an error.\n1. Disable Optifine's fast render.\n2. If you can't access the settings, navigate to %pathindicator%%profileroot%%pathindicator% and delete optionsof.txt",
"causes": [
{
"method": "contains",
"value": "nvoglv64.dll+0xe04120"
}
]
},
{
"name": "godmode",
"fixtype": 1,
"fix": "There was an error in Windows.\nDelete any God Mode shortcuts on your PC.",
"causes": [
{
"method": "contains",
"value": "EXCEPTION_ACCESS_VIOLATION"
},
{
"method": "contains",
"value": "msvcr100.dll+0x36adf"
}
]
},
{
"fixtype": 1,
"fix": "The Essential Backend is down and a file is failing to download.\nWith all due respect, please try again in five minutes.",
"causes": [
{
"method": "contains",
"value": "Caused by: org.spongepowered.asm.mixin.transformer.throwables.InvalidMixinException: Unexpecteded NoSuchElementException whilst applying the mixin class: null"
}
]
},
{
"fixtype": 1,
"fix": "Essential appears to be experiencing issues while downloading itself.\nWith all due respect, please try again in five minutes.",
"causes": [
{
"method": "contains",
"value": "java.io.FileNotFoundException: https://downloads.essential.gg"
}
]
},
{
"fixtype": 1,
"fix": "The Essential Backend is down and a file is failing to download.\nWith all due respect, please try again in five minutes.",
"causes": [
{
"method": "contains",
"value": "net.minecraftforge.fml.common.LoaderException: java.lang.AbstractMethodError"
},
{
"method": "contains",
"value": "at gg.essential.vigilance.data.PropertyAttributes$Companion.fromPropertyAnnotation(Property.kt:138)"
}
]
},
{
"fixtype": 1,
"fix": "The Essential Backend might be down for maintenance and Essential can't load some data.\nWith all due respect, please try again in five minutes.",
"causes": [
{
"method": "contains",
"value": "Loading tweak class name gg.essential.loader.stage0.EssentialSetupTweaker"
},
{
"method": "contains",
"value": "java.net.SocketTimeoutException: Read timed out"
},
{
"method": "contains",
"value": "at gg.essential.loader.stage1.EssentialLoader.fetchLatestMetadata(EssentialLoader.java"
}
]
},
{
"fixtype": 1,
"fix": "Failed to connect to SkyclientCosmetics' API.\nWith all due respect, please try again in five minutes.",
"causes": [
{
"method": "contains",
"value": "java.net.UnknownHostException: koxx12-dev.github.io"
}
]
},
{
"fixtype": 2,
"fix": "Sk1er API appears to be down.\nWith all due respect, please try again in five minutes.",
"causes": [
{
"method": "contains",
"value": "Server returned HTTP response code: 521 for URL: https://api.sk1er.club"
}
]
},
{
"name": "essentialonboarding",
"fixtype": 1,
"fix": "There was a bug in an outdated copy of Essential.\n1. Navigate to %pathindicator%%profileroot%/essential/%pathindicator%\n2. Delete onboarding.json",
"causes": [
{
"method": "contains",
"value": "com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line"
},
{
"method": "contains",
"value": "at gg.essential.data.OnboardingData.loadData(OnboardingData.kt:77)"
}
]
},
{
"name": "oldpatcher",
"fixtype": 1,
"fix": "NotEnoughUpdates is conflicting with an old version of Patcher.\nUpdate (Poly)Patcher to the latest version.",
"causes": [
{
"method": "contains",
"value": "at club.sk1er.patcher.registry.AsyncBlockAndItems.load(AsyncBlockAndItems.kt:28)"
},
{
"method": "contains",
"value": "at io.github.moulberry.notenoughupdates.miscfeatures.CustomSkulls.func_110549_a(CustomSkulls.java:85)"
}
]
},
{
"fixtype": 1,
"fix": "One or more of your mods has not been reobfuscated properly.\n1. Ask the developer of the mod to fix this issue.\n2. Remove the mod in the meantime.",
"causes": [
{
"method": "contains",
"value": "net.minecraftforge.fml.common.LoaderException: java.lang.NoSuchMethodError: net/minecraft/client/Minecraft"
}
]
},
{
"name": "ctm",
"fixtype": 1,
"fix": "Optifine's connected textures had an error. You can do one or both of the following:\n- Update (Poly)Patcher to the latest version\n- Set your `Connected Textures` mode to `Fast`. (`Options` > `Video Settings` > `Quality` > `Connected Textures`).",
"causes": [
{
"method": "contains",
"value": "net.optifine.ConnectedTextures"
}
]
},
{
"name": "debug",
"fixtype": 1,
"fix": "YOU LITERALLY INTENTIONALLY CRASHED THE GAME.\n %gameroot% %profileroot% Don't hold F3+C",
"causes": [
{
"method": "contains",
"value": "Description: Manually triggered debug crash"
}
]
},
{
"fixtype": 1,
"fix": "XanderLib encountered an issue whilst installing.\nTry to update mods that use it, such as EvergreenHUD.",
"causes": [
{
"method": "contains",
"value": "Caused by: java.lang.NoClassDefFoundError: co/uk/isxander/xanderlib"
}
]
},
{
"name": "dsmmusic",
"fixtype": 1,
"fix": "Danker's Skyblock Mod threw an error.\n1. Navigate to %pathindicator%%profileroot%/config%pathindicator%\n2. Delete the `dsmmusic` folder.",
"causes": [
{
"method": "contains",
"value": "at me.Danker this sollution is impossible to get"
}
]
},
{
"name": "oldpc",
"fixtype": 1,
"fix": "Your GPU appears to be too old for some rendering options in Minecraft.\nUpgrade your PC.\n\nNo seriously, that's the only solution.",
"causes": [
{
"method": "contains",
"value": "java.lang.IllegalStateException: Function is not supported"
}
]
},
{
"fixtype": 1,
"fix": "While Essential was trying to render text, it ran into an error.\nGet support on Essential's Discord server: <https://discord.gg/essential>",
"causes": [
{
"method": "contains",
"value": "java.lang.NoSuchMethodError: gg.essential.elementa.components.UIWrappedText.<init>(Ljava/lang/String;ZLjava/awt/Color;ZZFLjava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V"
}
]
},
{
"name": "debugtags",
"fixtype": 1,
"fix": "While SkyclientCosmetics was rendering a name, an error was encountered.\nDon't use \"Debug Display Tags\" in SkyclientCosmetics settings—it's a debug feature for a reason.",
"causes": [
{
"method": "contains",
"value": "at io.github.koxx12dev.scc.listeners.PlayerListeners.onNameFormat(PlayerListeners.java:25)"
}
]
},
{
"fixtype": 1,
"fix": "A mod is looking for an old shared library.\n1. Navigate to %pathindicator%%profileroot%%pathindicator%\n2. Remove the folder called `modcore`",
"causes": [
{
"method": "contains",
"value": "net.minecraftforge.fml.common.LoaderException: java.lang.NoClassDefFoundError: club/sk1er/mods/core/gui/notification/Notifications"
}
]
},
{
"fixtype": 1,
"fix": "Optifine's GUI threw an exception.\n1. Remove all OptiFine jars in %pathindicator%%profileroot%/mods%pathindicator%\n2. Reinstall OptiFine",
"causes": [
{
"method": "contains",
"value": "java.lang.NoClassDefFoundError: net/optifine/gui/GuiMessage"
}
]
},
{
"fixtype": 1,
"fix": "Essential is not compatible with OpenJ9.\nRemove OpenJ9.",
"causes": [
{
"method": "contains",
"value": "java.lang.NoSuchFieldException: allowedModes"
}
]
},
{
"fixtype": 1,
"fix": "Cowlections is causing the issue.\nRemove the mod for now and get support at <https://discord.gg/cowshed>.",
"causes": [
{
"method": "contains",
"value": "at de.cowtipper.cowlection.util.ChatHelper.sendMessage(ChatHelper.java:"
}
]
},
{
"fixtype": 1,
"fix": "EvergreenHUD appears to be outdated.\nUpdate it at <https://modrinth.com/mod/evergreenhud>.",
"causes": [
{
"method": "contains",
"value": "at co.uk.isxander.xanderlib.utils.GuiUtils.stripFormattingCodes(GuiUtils.java:129)"
}
]
},
{
"fixtype": 1,
"fix": "ParticlesEnchanced caused an issue. Remove it and see if anything changes.",
"causes": [
{
"method": "contains",
"value": "at dev.isxander.particlesenhanced"
}
]
},
{
"name": "sbaowo",
"fixtype": 1,
"fix": "This looks like the SBA OwO language crash.\nPlease change your SBA language to a more conventional language.",
"causes": [
{
"method": "contains",
"value": "java.lang.StackOverflowError: Rendering screen"
},
{
"method": "contains",
"value": "at net.minecraft.client.gui.FontRenderer.func_78280_d(FontRenderer.java:999)"
},
{
"method": "contains",
"value": "Screen name: net.minecraft.client.gui.inventory.GuiChest"
}
]
},
{
"name": "owo",
"fix": "To find the solution for SBA's OwO crash, see `-crash sbaowo`. Otherwise, you may be thinking of Kerbybit's MinecwaftOwO, which corresponds to `-crash owomod`.",
"causes": [
{
"method": "regex",
"value": "this is a placeholder crash for the -crash command"
}
]
},
{
"name": "owomod",
"fixtype": 1,
"fix": "Kerbybit's MinecwaftOwO was detected. Remove the mod to see if your issue persists.",
"causes": [
{
"method": "contains",
"value": "kerbybit.minecwaft"
}
]
},
{
"name": "sk1eroam",
"fixtype": 1,
"fix": "Sk1er's Old Animations is outdated.\nGet help in <https://discord.gg/sk1er>.",
"causes": [
{
"method": "contains",
"value": "[club.sk1er.mods.sk1eroldanimations.ModCoreInstaller:fetchString:262]: java.net.SocketTimeoutException: connect timed out"
}
]
},
{
"name": "wyvtilsname",
"fixtype": 1,
"fix": "Wyvilities is no longer supported.\nReplace it with REDACTION: <https://github.com/W-OVERFLOW/REDACTION/releases>",
"causes": [
{
"method": "contains",
"value": "at net.wyvest.wyvtilities.listeners.Listener.getColor(Listener.kt:"
}
]
},
{
"name": "yasm",
"fixtype": 1,
"fix": "\"Yet Another Skyblock Mod\" caused a crash.\nDelete it, as it's no longer supported by its developer.",
"causes": [
{
"method": "contains",
"value": "java.util.ConcurrentModificationException"
},
{
"method": "contains",
"value": "Enqueued coremod YASMTweaker"
}
]
},
{
"name": "dgclassloader",
"fixtype": 1,
"fix": "DungeonsGuide issue. Remove it from your mods folder (%pathindicator%%profileroot%/mods%pathindicator%) and launch again.",
"causes": [
{
"method": "contains",
"value": "at kr.syeyoung.dungeonsguide.launcher.loader.DGClassLoader.getLoadedPackages(DGClassLoader.java:96)"
}
]
},
{
"name": "dgload",
"fixtype": 1,
"fix": "DungeonsGuide couldn't load.\n1. Attempt to get support at <https://discord.gg/dg>.\n2. If you can't get it to work, remove it.",
"causes": [
{
"method": "contains",
"value": "DungeonsGuide has ran into error while loading itself"
}
]
},
{
"fixtype": 1,
"fix": "Issue with Essential.\nTry manually updating Essential via https://modrinth.com/mod/essential/versions?l=forge&g=1.8.9. If that doesn't work, go to Essential's Discord server for support: <https://discord.gg/essential>",
"causes": [
{
"method": "contains",
"value": "java.lang.NoClassDefFoundError: Could not initialize class gg.essential.api.EssentialAPI"
}
]
},
{
"name": "doublepatcher",
"fixtype": 1,
"fix": "Looks like you have installed two copies of Patcher.\nPlease remove the outdated one.",
"causes": [
{
"method": "contains",
"value": "Caused by: java.lang.ClassFormatError: Duplicate field name&signature in class file net/minecraft/client/gui/GuiChat"
}
]
},
{
"name": "javaprocess",
"fixtype": 1,
"fix": "This is caused by a random Java process being there when it shouldn't.\nRestart your computer, or use Task Manager (if on Windows)/Activity Monitor (if on macOS) to close the process.",
"causes": [
{
"method": "contains",
"value": "at gg.essential.loader.stage1.EssentialLoader.load(EssentialLoader.java:99) ~[stage1.jar:2]"
}
]
},
{
"name": "extracted",
"fixtype": 1,
"fix": "This crash was likely caused by extracted mods. You will likely never need to extract a mod.\n1. Delete the extracted mod.\n2. Install the original `jar`.",
"causes": [
{
"method": "contains",
"value": "There appear to be jars extracted into the mods directory. This is VERY BAD and will almost NEVER WORK WELL"
}
]
},
{
"name": "outofmem",
"fixtype": 1,
"fix": "You are probably running out of memory (or something else).\n1. Allocate a reasonable amount of RAM to Minecraft (ask in support servers for what \"reasonable\" is—you should expect anything between 2 to 4 GB).",
"causes": [
{
"method": "contains",
"value": "Caused by: java.lang.OutOfMemoryError:"
}
]
},
{
"name": "bossbar",
"fixtype": 1,
"fix": "Bossbar Customizer couldn't load.\n1. Try to delete the bossbar_customizer.cfg file in %pathindicator%%profileroot%/config%pathindicator%\n2. If that doesn't work, you can delete the mod.",
"causes": [
{
"method": "contains",
"value": "club.sk1er.bossbarcustomizer.BossbarMod.loadConfig"
}
]
},
{
"name": "cmmload",
"fixtype": 1,
"fix": "CustomMainMenu couldn't load.\n1. Attempt to fix your config for it, and for help, you could ask the community that it came from.\n2. Remove CustomMainMenu from %pathindicator%%profileroot%/mods%pathindicator%",
"causes": [
{
"method": "contains",
"value": "at lumien.custommainmenu.configuration.ConfigurationLoader.load(ConfigurationLoader.java:142)"
}
]
},
{
"name": "queefering",
"fixtype": 1,
"fix": "Qalcyo, Requsitie and Queef have been abandonded and are outdated.\n1. Remove them from %pathindicator%%profileroot%/mods%pathindicator%.\n2. Install some replacement mods <https://woverflow.cc>",
"causes": [
{
"method": "contains",
"value": "java.lang.NoClassDefFoundError: xyz/matthewtgm/requisite/keybinds/KeyBind"
}
]
},
{
"fixtype": 1,
"fix": "Cheaters get banned. (PizzaClient)",
"causes": [
{
"method": "contains",
"value": "pizzaclient"
}
]
},
{
"fixtype": 1,
"fix": "Cheaters get banned. (PizzaClientV2)",
"causes": [
{