Skip to content

Commit

Permalink
fix: A couple quick fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zekromaster committed Jul 31, 2024
1 parent b3fc92b commit 69c94c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ if (use_modrinth) {
loaders.add("fabric")
dependencies {
required.project("stationapi")
required.version("fabric-language-kotlin", ">=1.11.0+kotlin.2.0.0")
required.project("fabric-language-kotlin")
}
syncBodyFrom = project.file("README.md").readText(Charset.forName("UTF-8"))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import net.minecraft.entity.player.PlayerEntity
import net.minecraft.inventory.Inventory
import net.minecraft.item.Item
import net.minecraft.item.ItemStack
import net.minecraft.recipe.CraftingRecipeManager
import net.modificationstation.stationapi.api.client.event.texture.TextureRegisterEvent
import net.modificationstation.stationapi.api.event.block.entity.BlockEntityRegisterEvent
import net.modificationstation.stationapi.api.event.recipe.RecipeRegisterEvent
import net.modificationstation.stationapi.api.event.registry.BlockRegistryEvent
Expand All @@ -19,8 +17,6 @@ import uk.co.benjiweber.expressions.tuple.BiTuple
import java.util.function.BiFunction
import java.util.function.Supplier

data class ChestWithId(val identifier: Identifier, val block: Block)

object IronChests {

@JvmStatic @get:JvmName("ironChest")
Expand Down Expand Up @@ -114,12 +110,4 @@ internal object RegisterGUIs {
IronChestFactory(IronChestMaterial.DIAMOND)
))
}
}

internal object RegisterTextures {

fun registerTextures(event: TextureRegisterEvent) {

}

}

0 comments on commit 69c94c2

Please sign in to comment.