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

Commit

Permalink
(4.1.5) Fix planet teleport issues, Io requires Venus should fix bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattparks committed May 17, 2015
1 parent b376db2 commit 334fa2a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ buildscript {

apply plugin: 'forge'

version = "p4.1.4"
group= "com" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
version = "4.1.5"
group= "mattparks" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "4Space"

minecraft {
version = "1.7.10-10.13.3.1403-1.7.10"
version = "1.7.10-10.13.3.1407-1.7.10"
runDir = "eclipse"
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/mattparks/mods/space/core/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class Constants {
public static final int LOCALMAJVERSION = 4;
public static final int LOCALMINVERSION = 1;
public static final int LOCALBUILDVERSION = 4;
public static final int LOCALBUILDVERSION = 5;

public static final String VERSION = (LOCALMAJVERSION + "." + LOCALMINVERSION + "." + LOCALBUILDVERSION);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public double getFuelUsageMultiplier() {

@Override
public boolean canSpaceshipTierPass(int tier) {
return tier >= 4;
return tier >= 3;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/mattparks/mods/space/io/IoCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;

@Mod(modid = Constants.MOD_ID_IO, name = Constants.MOD_NAME_IO, version = Constants.VERSION, dependencies = "required-after:GalacticraftCore;required-after:SpaceCore;")
@Mod(modid = Constants.MOD_ID_IO, name = Constants.MOD_NAME_IO, version = Constants.VERSION, dependencies = "required-after:GalacticraftCore;required-after:SpaceCore;required-after:SpaceVenus;")
public class IoCore {
public static final String ASSET_PREFIX = "spaceio";
public static final String TEXTURE_PREFIX = IoCore.ASSET_PREFIX + ":";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public double getFuelUsageMultiplier() {

@Override
public boolean canSpaceshipTierPass(int tier) {
return tier >= 5;
return tier >= 3;
}

@Override
Expand Down

0 comments on commit 334fa2a

Please sign in to comment.