Skip to content
This repository has been archived by the owner on Aug 30, 2019. It is now read-only.

Commit

Permalink
Merge branch 'release/v1.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-kirby committed Jul 29, 2019
2 parents 6731fd1 + f2c4ff3 commit b2415ca
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ apply plugin: 'org.spongepowered.mixin'

def buildnumber = System.getenv('TRAVIS_BUILD_NUMBER')
def suffix = buildnumber != null ? ".$buildnumber" : "-SNAPSHOT"
version = "1.3.2$suffix"
version = "1.3.3$suffix"
group = "uk.bobbytables.jeidsi" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "jeidsi"

Expand Down Expand Up @@ -69,6 +69,7 @@ dependencies {
compileOnly "2710:204:HammerCore-1.12.2-2.0.4.7@jar"
compileOnly "2733:984:AdvancedRocketry-1.12.2-1.6.0-151-universal@jar"
compileOnly "2731:147:LibVulpes-1.12.2-0.4.1-59-universal@jar"
compileOnly "2724:738:gaiadimension-1.12.2-1.0.5@jar"
}

mixin {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package uk.bobbytables.jeidsi.core.compat.gaiadimension.mixins;

import androsa.gaiadimension.world.layer.GenLayerGDRiverMix;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.Constant;
import org.spongepowered.asm.mixin.injection.ModifyConstant;

@Mixin(GenLayerGDRiverMix.class)
public class MixinGenLayerGDRiverMix {
@ModifyConstant(method = "func_75904_a", constant = @Constant(intValue = 255), remap = false)
private int getBitMask(int oldValue) {
return 0xFFFFFFFF;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ private void beforeModSupportMixins(List<String> injectedModContainers, Callback
"mixins.jeidsi.creepingnether.json",
"mixins.jeidsi.cyclopscore.json",
"mixins.jeidsi.extrautils2.json",
"mixins.jeidsi.gaiadimension.json",
"mixins.jeidsi.hammercore.json",
"mixins.jeidsi.tofucraft.json",
"mixins.jeidsi.thebetweenlands.json",
Expand Down
11 changes: 11 additions & 0 deletions src/main/resources/mixins.jeidsi.gaiadimension.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"package": "uk.bobbytables.jeidsi.core.compat.gaiadimension",
"required": true,
"refmap": "mixins.jeidsi.refmap.json",
"target": "@env(DEFAULT)",
"minVersion": "0.6",
"compatibilityLevel": "JAVA_8",
"mixins": [
"mixins.MixinGenLayerGDRiverMix"
]
}

0 comments on commit b2415ca

Please sign in to comment.