Skip to content

Commit

Permalink
fix #26
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Sep 29, 2023
1 parent 14dbf16 commit 1c950da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

compileOnly "maven.modrinth:splasher:${project.splasher_version}-${project.minecraft_version}"
modCompileOnly "maven.modrinth:splasher:${project.splasher_version}-mc${project.minecraft_version}"
}

processResources {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ minecraft_version = 1.20
yarn_mappings = 1.20+build.1
loader_version = 0.14.22

mod_version = 3.1.0
mod_version = 3.1.1
maven_group = net.krlite
archives_base_name = bounced

# Dependencies
fabric_version = 0.83.0+1.20
splasher_version = v5.0.0
splasher_version = 5.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
class Trigger {
@Inject(method = "setScreen", at = @At("TAIL"))
private void trigger(Screen screen, CallbackInfo ci) {
System.out.println(screen.getClass());
if (!(screen instanceof TitleScreen)) Bounced.push();
}
}
Expand Down

0 comments on commit 1c950da

Please sign in to comment.