Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: CleanroomMC/Fugue
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.16.1
Choose a base ref
...
head repository: CleanroomMC/Fugue
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.16.2
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 27, 2024

  1. More LP fix

    kappa-maintainer committed Aug 27, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    caa945a View commit details
  2. Bump version

    kappa-maintainer committed Aug 27, 2024
    Copy the full SHA
    8d7c906 View commit details
Showing with 9 additions and 1 deletion.
  1. +1 −1 gradle.properties
  2. +8 −0 src/main/java/com/cleanroommc/fugue/transformer/logisticpipes/LogisticsPipesTrigger.java
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ mappings_version=39-1.12
mod_id=fugue
mod_name=Fugue
mod_main_class=Fugue
mod_version=0.16.1
mod_version=0.16.2
mod_base_package=com.cleanroommc.fugue
mod_authors=kappa_maintainer
mod_description=A mod that patch dead mods for Cleanroom
Original file line number Diff line number Diff line change
@@ -12,6 +12,14 @@ public byte[] transform(byte[] bytes) {
Launch.classLoader.findClass("logisticspipes.network.packets.pipe.FluidSupplierMinMode");
Launch.classLoader.findClass("logisticspipes.network.abstractguis.ModuleCoordinatesGuiProvider");
Launch.classLoader.findClass("logisticspipes.network.guis.upgrade.SneakyUpgradeConfigGuiProvider");
Launch.classLoader.findClass("logisticspipes.network.packets.block.SecurityCardPacket");
Launch.classLoader.findClass("logisticspipes.network.packets.debug.PipeDebugLogAskForTarget");
Launch.classLoader.findClass("logisticspipes.network.packets.block.SecurityAuthorizationPacket");
Launch.classLoader.findClass("logisticspipes.network.packets.orderer.DiskDropPacket");
Launch.classLoader.findClass("logisticspipes.network.packets.AddNewChannelPacket");
Launch.classLoader.findClass("logisticspipes.network.packets.block.SecurityStationCCIDs");
Launch.classLoader.findClass("logisticspipes.network.guis.block.PowerProviderGui");
Launch.classLoader.findClass("logisticspipes.network.guis.module.inpipe.FluidSupplierSlot");
} catch (ClassNotFoundException ignored) {}
return bytes;
}