Skip to content

Commit

Permalink
*re-port* to 1.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Aug 25, 2020
1 parent 8fc3d38 commit dee3da0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -119,7 +119,7 @@ task genGitChangelog() {
}

dependencies {
minecraft 'net.minecraftforge:forge:1.16.1-32.0.63'
minecraft 'net.minecraftforge:forge:1.16.2-33.0.7'
}

// Example for how to get properties into the manifest for reading by the runtime..
Expand Down Expand Up @@ -232,7 +232,7 @@ task updateVersionTracker {
def body = [
'author' : "${project.findProperty('versionTrackerAuthor')}",
'projectName' : "clumps",
'gameVersion' : "1.16.1",
'gameVersion' : "1.16.2",
'projectVersion': "${version}",
'homepage' : "${project.findProperty('versionTrackerHomepage')}",
'uid' : "${project.findProperty('versionTrackerKey')}"
Expand Down
Expand Up @@ -66,7 +66,7 @@ public void tick() {
this.setMotion(this.getMotion().add(0.0D, -0.03D, 0.0D));
}

if(this.world.getFluidState(this.func_233580_cy_()).isTagged(FluidTags.LAVA)) {
if(this.world.getFluidState(this.getPosition()).isTagged(FluidTags.LAVA)) {
this.setMotion((double) ((this.rand.nextFloat() - this.rand.nextFloat()) * 0.2F), (double) 0.2F, (double) ((this.rand.nextFloat() - this.rand.nextFloat()) * 0.2F));
this.playSound(SoundEvents.ENTITY_GENERIC_BURN, 0.4F, 2.0F + this.rand.nextFloat() * 0.4F);
}
Expand Down
5 changes: 3 additions & 2 deletions src/main/resources/META-INF/mods.toml
@@ -1,13 +1,14 @@
modLoader="javafml"
loaderVersion="[32,)"
loaderVersion="[33,)"
issueTrackerURL="https://github.com/jaredlll08/Clumps/issues"
license="MIT"

[[mods]] #mandatory
modId="clumps"
version="${file.jarVersion}"
displayName="Clumps"
displayURL="https://www.curseforge.com/minecraft/mc-mods/clumps"
updateJSONURL="https://updates.blamejared.com/get?n=clumps&gv=1.16.1"
updateJSONURL="https://updates.blamejared.com/get?n=clumps&gv=1.16.2"
credits=""
authors="Jaredlll08"
description='''
Expand Down

0 comments on commit dee3da0

Please sign in to comment.