Skip to content

Commit

Permalink
v1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Furgl committed Jan 16, 2017
1 parent 61c47c8 commit 185664d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the nessasary things for Forge to be setup.


version = "1.11-1.5.3"
version = "1.11-1.5.4"
group= "furgl.babyMobs" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "BabyMobs"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/furgl/babyMobs/common/BabyMobs.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class BabyMobs
{
public static final String MODID = "babymobs";
public static final String MODNAME = "Baby Mobs";
public static final String VERSION = "1.5.3";
public static final String VERSION = "1.5.4";
@Mod.Instance(MODID)
public static BabyMobs instance;
@SidedProxy(clientSide = "furgl.babyMobs.client.ClientProxy", serverSide = "furgl.babyMobs.common.CommonProxy")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public EntityWitherWitherSkull(World world, EntityLivingBase entitylivingbase, d
protected void onImpact(RayTraceResult mop)
{
super.onImpact(mop);
if (!this.worldObj.isRemote)
if (!this.worldObj.isRemote && this.shootingEntity != null)
{
for (int i=0; i<7; i++)
{
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "babymobs",
"name": "Baby Mobs",
"description": "Adds baby versions of many vanilla monsters, each with its own special abilities.",
"version": "1.5.3",
"version": "1.5.4",
"mcversion": "1.11",
"url": "https://sites.google.com/site/furglsmods/baby-mobs",
"updateUrl": "",
Expand Down

0 comments on commit 185664d

Please sign in to comment.