Skip to content

Commit

Permalink
bump version to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
XDjackieXD committed Jul 7, 2016
1 parent dc6e66c commit 67d0bb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
apply plugin: 'idea'
apply plugin: 'net.minecraftforge.gradle.forge'

version = "0.8.0-MC1.9.4"
version = "0.8.1-MC1.9.4"
group = "at.chaosfield.openradio"
archivesBaseName = "OpenRadio"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/at/chaosfield/openradio/OpenRadio.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Created by Jakob Riepler (XDjackieXD)
*/

@Mod(name = "Open Radio", modid = OpenRadio.MODID, version = "0.8.0", modLanguage = "java", dependencies = "required-after:OpenComputers@[1.6.0,)")
@Mod(name = "Open Radio", modid = OpenRadio.MODID, version = "0.8.1", modLanguage = "java", dependencies = "required-after:OpenComputers@[1.6.0,)")
public class OpenRadio{

public static final String MODID = "openradio";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
import net.minecraft.init.Blocks;
import net.minecraft.server.MinecraftServer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.util.math.RayTraceResult;
import net.minecraft.util.math.Vec3d;
Expand Down Expand Up @@ -141,7 +139,7 @@ public void onEntityUpdate(){
int i = this.getMaxInPortalTime();

if(this.inPortal){
if(minecraftserver.getAllowNether()){
if(minecraftserver != null && minecraftserver.getAllowNether()){
if(this.getRidingEntity() == null && this.portalCounter++ >= i){
this.portalCounter = i;
this.timeUntilPortal = this.getPortalCooldown();
Expand Down

0 comments on commit 67d0bb1

Please sign in to comment.