Skip to content

Commit

Permalink
Remove Bogosort Support
Browse files Browse the repository at this point in the history
Original fix was integrated in 1.4.9.
  • Loading branch information
IntegerLimit committed Jan 26, 2025
1 parent b27e4a0 commit c9354cb
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 137 deletions.
9 changes: 1 addition & 8 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,6 @@ dependencies {
// Top Addons (from CurseForge)
compileOnly rfg.deobf("curse.maven:top-addons-247111:2887479") // Version 1.13.0

// Inventory BogoSorter (from CurseForge)
compileOnly rfg.deobf("curse.maven:inventory-bogosorter-632327:5162169") // Version 1.4.8

// Thermal Foundation (from CurseForge)
compileOnly "curse.maven:thermal-foundation-222880:2926428" // Version 2.6.7.1

Expand Down Expand Up @@ -302,11 +299,7 @@ dependencies {
if (project.enable_aa.toBoolean()) {
runtimeOnly "curse.maven:actually-additions-228404:3117927" // Version r152
}

if (project.enable_bogo.toBoolean()) {
runtimeOnly "curse.maven:inventory-bogosorter-632327:5162169" // Version 1.4.8
}

z
if (project.enable_find.toBoolean()) {
runtimeOnly "curse.maven:findmyitemsandfluids-610085:3748963" // Version 1.0.0
}
Expand Down
3 changes: 0 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,6 @@ enable_aa = false
# If this is set to false, the remappers will not apply there.
enable_ender_storage = false

# Whether to enable Inventory BogoSorter in runtime. Fixes duplication glitch with Thermal Satchels.
enable_bogo = false

# Whether to enable FindMyItemsAndFluids in runtime. Fixes issues with a keybind not registering.
enable_find = false

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public class LabsLateMixinLoader implements ILateMixinLoader {
.put(LabsValues.AE2_MODID, true)
.put(LabsValues.ENDER_IO_MODID, true)
.put(LabsValues.AA_MODID, true)
.put(LabsValues.BOGOSORT_MODID, true)
.put(LabsValues.THERMAL_FOUNDATION_MODID, true)
.put(LabsValues.BQU_MODID, true)
.put(LabsValues.BETTER_P2P_MODID, true)
Expand Down

This file was deleted.

12 changes: 0 additions & 12 deletions src/main/resources/mixins.nomilabs.bogosorter.json

This file was deleted.

0 comments on commit c9354cb

Please sign in to comment.