Skip to content

Commit

Permalink
2.10 Update
Browse files Browse the repository at this point in the history
- Added a GUI for Exchangers, allows all kinds of configuring within the GUI instead of a bunch of keybinds

- Enforced 1.12 resource pack format on the mod's assets

- Fully migrated to Forge Energy, Redstone Flux mod is no longer required for powered exchangers to work

- Added Void Items mode, voids all exchanged items

- Added Fuzzy Placement mode, allows the exchanger to place blocks on a percentage basis, configurable within the GUI, closes #63

- Modified the recipe for Melodic Exchanger, should fix a startup crash, closes #66

- Closes #67

- Massive code refactors and cleanups
  • Loading branch information
JackyyTV committed Jan 20, 2021
1 parent b680b84 commit 3776345
Show file tree
Hide file tree
Showing 40 changed files with 1,453 additions and 284 deletions.
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,12 @@ buildscript {
repositories {
jcenter()
maven { url = "http://files.minecraftforge.net/maven" }
maven { url = "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath 'com.wynprice.cursemaven:CurseMaven:2.+'
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'com.wynprice.cursemaven'

version = "${mc_version}-${mod_version}"
group = "jackyy.exchangers"
Expand All @@ -37,21 +34,25 @@ repositories {
}
maven {
name = "Hwyla Maven"
url = "https://tehnut.info/maven"
url = "https://maven.tehnut.info"
}
maven {
name = "CoFH Maven"
url = "http://maven.covers1624.net"
}
maven {
name = "Curse Maven"
url = "https://www.cursemaven.com"
}
}

dependencies {
deobfCompile "mezz.jei:jei_1.12.2:+"
deobfCompile "mcp.mobius.waila:Hwyla:1.8.26-B41_1.12.2"
deobfCompile "cofh:RedstoneFlux:1.12-2.+:universal"
deobfCompile "cofh:CoFHCore:1.12.2-4.+:universal"
deobfCompile "curse.maven:gunpowderlib:2852431"
deobfCompile "curse.maven:better-with-mods:2885221"
deobfCompile "curse.maven:gunpowderlib-356646:3168863" //1.12.2-1.1
deobfCompile "curse.maven:better-with-mods-246760:2965308" //1.12-2.3.23
}

processResources {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
org.gradle.jvmargs=-Xmx4G
mc_version=1.12.2
forge_version=1.12.2-14.23.5.2847
mod_version=2.9
mod_version=2.10
mappings_version=stable_39
65 changes: 0 additions & 65 deletions src/main/java/jackyy/exchangers/client/Keys.java

This file was deleted.

Loading

0 comments on commit 3776345

Please sign in to comment.