Skip to content

Commit

Permalink
Update to 1.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan19 committed Aug 21, 2019
1 parent 0c7665a commit d22b82c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '0.2.0'
version = '0.3.0'
group = 'com.alan199921.astral' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'astral'

Expand Down Expand Up @@ -71,7 +71,7 @@ dependencies {
// Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft 'net.minecraftforge:forge:1.14.3-27.0.50'
minecraft 'net.minecraftforge:forge:1.14.4-28.0.55'

// You may put jars on which you depend on in ./libs or you may define them like so..
// compile "some.group:artifact:version:classifier"
Expand Down
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Wed Aug 21 14:41:26 EDT 2019
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import net.minecraft.potion.EffectInstance;
import net.minecraft.server.management.PlayerList;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.ServerWorld;
import net.minecraft.world.dimension.DimensionType;
import net.minecraft.world.server.ServerWorld;
import net.minecraft.world.storage.WorldInfo;
import net.minecraftforge.common.ForgeHooks;
import net.minecraftforge.fml.hooks.BasicEventHooks;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.alan199921.astral.events;

import com.alan199921.astral.Astral;
import com.alan199921.astral.util.MobHelper;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.LivingEntity;
import net.minecraft.potion.Effect;
Expand All @@ -18,7 +17,7 @@ public class TravellingHandlers {
public static void doNotTargetAstrals(LivingSetAttackTargetEvent event) {
if (isAstralVsNonAstral(event.getTarget(), event.getEntityLiving())) {
// System.out.println(event.getEntityLiving().getName().getString() + " is no longer targetting you!");
event.getEntityLiving().setRevengeTarget(null);
event.getTarget().setRevengeTarget(null);
}
}

Expand Down

0 comments on commit d22b82c

Please sign in to comment.