diff --git a/gradle.properties b/gradle.properties index e5d2143..f547b95 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false jar_name=handles minecraft_version=1.14.4 -mod_version = 0.0.2 +mod_version = 0.0.3 # Deps jei_version=6.0.0.10 diff --git a/src/main/java/com/vandendaelen/handles/tardis/subsystems/AprioritronSubsystem.java b/src/main/java/com/vandendaelen/handles/tardis/subsystems/AprioritronSubsystem.java index 5e0b836..6c39e6d 100644 --- a/src/main/java/com/vandendaelen/handles/tardis/subsystems/AprioritronSubsystem.java +++ b/src/main/java/com/vandendaelen/handles/tardis/subsystems/AprioritronSubsystem.java @@ -21,5 +21,8 @@ public void deserializeNBT(CompoundNBT nbt) { } - + @Override + public boolean stopFlight() { + return false; + } } diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 1511d87..bb80ccb 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -8,7 +8,7 @@ issueTrackerURL="https://github.com/LotuxPunk/Handles/issues" #optional # The modid of the mod modId="handles" #mandatory # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it -version="${file.jarVersion}" #mandatory +version="${version}" #mandatory # A display name for the mod displayName="Handles" #mandatory # A URL to query for updates for this mod. See the JSON update specification