Skip to content

Commit

Permalink
Merge pull request #26 from DaFuqs/1.18.2
Browse files Browse the repository at this point in the history
Cleanup of unused mixin classes
  • Loading branch information
MBatt1 authored Dec 5, 2022
2 parents b1f5514 + feba2a6 commit b96faa9
Show file tree
Hide file tree
Showing 15 changed files with 460 additions and 652 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,15 @@ dependencies {
modImplementation(include("dev.onyxstudios.cardinal-components-api:cardinal-components-entity:${project.cardinal_version}"))

// Implement Trinkets for parachutes, rings etc.
modImplementation(include("dev.emi:trinkets:${project.trinkets_version}"))
modImplementation("dev.emi:trinkets:${project.trinkets_version}")

modRuntimeOnly "com.terraformersmc:modmenu:${project.modmenu_version}"

modImplementation "io.wispforest:owo-lib:${project.owo_version}+1.18"
modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}"

testImplementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'javax.annotation:javax.annotation-api:1.3.2'
}

loom {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ max_errors=400
fabric_version=0.66.0+1.18.2

# Mod Properties
mod_version = 1.8.0-INDEV.2
mod_version = 1.8.1+1.18.2
# todo change
maven_group = azzy.fabric
archives_base_name = incubus-core
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

@Nonnull
@TypeQualifierDefault({
ElementType.FIELD,
ElementType.METHOD,
ElementType.PARAMETER})
ElementType.FIELD,
ElementType.METHOD,
ElementType.PARAMETER})
@Retention(RetentionPolicy.CLASS)
public @interface NonnullByDefault {

Expand Down
9 changes: 1 addition & 8 deletions src/main/java/net/id/incubus_core/misc/IncubusSounds.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@
import static net.id.incubus_core.IncubusCore.registerSoundEvent;

public class IncubusSounds {

public static final SoundEvent DUPED_SHOVELS = registerSoundEvent("duped_shovels");
public static final SoundEvent COSMIC_OCEAN = registerSoundEvent("cosmic_ocean");
public static final SoundEvent DECLINE = registerSoundEvent("decline");
public static final SoundEvent VINESUS = registerSoundEvent("vinesus");


public static final SoundEvent WEAK = registerSoundEvent("weak");
public static final SoundEvent BLAST = registerSoundEvent("blast");
public static final SoundEvent PARRY = registerSoundEvent("parry");
Expand All @@ -22,7 +17,5 @@ public class IncubusSounds {
public static final SoundEvent DRIP = registerSoundEvent("drip");
public static final SoundEvent DRIP_LONG = registerSoundEvent("drip_long");

public static final SoundEvent TRASH_ISAAC = registerSoundEvent("trash_isaac");

public static void init() {}
}
Loading

0 comments on commit b96faa9

Please sign in to comment.