Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
IAFEnvoy committed Dec 20, 2024
1 parent 8569af5 commit 521786d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
// Remove the next line if you don't want to depend on the API
modApi "dev.architectury:architectury:${rootProject.architectury_version}"

modImplementation "maven.modrinth:neptune:NztAXzNA"
modImplementation "maven.modrinth:neptune:PTGLkQIL"
modImplementation "maven.modrinth:jupiter:nhqjUZZy"

modImplementation "com.github.apace100:origins-fabric:${project.origins_version}"
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }

modImplementation "dev.emi:trinkets:${trinkets_version}"
modImplementation "maven.modrinth:neptune:NztAXzNA"
modImplementation "maven.modrinth:neptune:PTGLkQIL"
modImplementation "maven.modrinth:jupiter:nhqjUZZy"

modApi(include("dev.onyxstudios.cardinal-components-api:cardinal-components-base:${project.cca_version}"))
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
// Curios
modImplementation "top.theillusivec4.curios:curios-forge:${curios_version}"

modImplementation "maven.modrinth:neptune:S3nXwRir"
modImplementation "maven.modrinth:neptune:rQyefCw5"
modImplementation "maven.modrinth:jupiter:quscWB5K"

// Optional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class SongsOfWarForgeClient {
@SubscribeEvent
public static void process(FMLClientSetupEvent event) {
event.enqueueWork(SongsOfWarClient::process);
ItemPropertiesRegistry.register(SowItems.PROTEPOINT_SHIELD.get(), Identifier.of("blocking"), (stack, world, entity, seed) -> entity != null && entity.isUsingItem() ? 1 : 0);
ItemPropertiesRegistry.register(SowItems.PROTEPOINT_SHIELD.get(), Identifier.of(Identifier.DEFAULT_NAMESPACE, "blocking"), (stack, world, entity, seed) -> entity != null && entity.isUsingItem() ? 1 : 0);
ModLoadingContext.get().registerExtensionPoint(ConfigScreenHandler.ConfigScreenFactory.class, () -> new ConfigScreenHandler.ConfigScreenFactory((client, screen) -> new ConfigSelectScreen<>(Text.translatable("config.sow.title"), screen, SowConfig.INSTANCE, null)));
}

Expand Down

0 comments on commit 521786d

Please sign in to comment.