Skip to content

Commit

Permalink
fix forge launching issue
Browse files Browse the repository at this point in the history
  • Loading branch information
IAFEnvoy committed Dec 3, 2024
1 parent d981e28 commit 7368823
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
// Architectury API. This is optional, and you can comment it out if you don't need it.
modImplementation "dev.architectury:architectury:$rootProject.architectury_api_version"

modImplementation "maven.modrinth:uranus:X68ygGRD"
modImplementation "maven.modrinth:uranus:QApUFfAv"
modImplementation "maven.modrinth:jupiter:nhqjUZZy"

modCompileOnly "dev.emi:emi-fabric:${emi_version}:api"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
import net.minecraft.client.render.entity.FlyingItemEntityRenderer;
import net.minecraft.util.Identifier;

import java.io.IOException;

@Environment(EnvType.CLIENT)
public final class IafRenderers {
public static final TabulaModel SEA_SERPENT_BASE_MODEL = getOrNull("/assets/iceandfire/models/tabula/seaserpent/seaserpent_base", new SeaSerpentTabulaModelAnimator());
Expand All @@ -48,7 +46,7 @@ public final class IafRenderers {
public static TabulaModel getOrNull(String modelPath, ITabulaModelAnimator<?> tabulaAnimator) {
try {
return new TabulaModel(TabulaModelHandlerHelper.loadTabulaModel(modelPath), tabulaAnimator);
} catch (IOException e) {
} catch (Exception e) {
IceAndFire.LOGGER.error(e);
}
return null;
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
common(project(path: ':common', configuration: 'namedElements')) { transitive false }
shadowBundle project(path: ':common', configuration: 'transformProductionFabric')

modImplementation "maven.modrinth:uranus:X68ygGRD"
modImplementation "maven.modrinth:uranus:QApUFfAv"
modImplementation "maven.modrinth:jupiter:nhqjUZZy"

// CCA
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {
implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:0.2.0"))
implementation(include("io.github.llamalad7:mixinextras-forge:0.2.0"))

modImplementation "maven.modrinth:uranus:ZuvylYTl"
modImplementation "maven.modrinth:uranus:kFwK3xGG"
modImplementation "maven.modrinth:jupiter:quscWB5K"

modLocalRuntime "dev.emi:emi-forge:${emi_version}"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx2G
org.gradle.parallel=true

# Mod properties
mod_version = 0.8
mod_version = 0.8-bugfix
maven_group = com.iafenvoy.iceandfire
archives_name = IceAndFireCE
enabled_platforms = fabric,forge
Expand Down

0 comments on commit 7368823

Please sign in to comment.