mirror of
https://github.com/architectury/architectury-api.git
synced 2026-04-02 21:47:40 -05:00
Update to 21w14a, remove typetools, remove fractions in favor of 81000
This commit is contained in:
@@ -25,8 +25,6 @@ dependencies {
|
||||
minecraft "com.mojang:minecraft:${rootProject.architectury.minecraft}"
|
||||
mappings loom.officialMojangMappings()
|
||||
forge "net.minecraftforge:forge:${rootProject.architectury.minecraft}-${rootProject.forge_version}"
|
||||
implementation "net.jodah:typetools:0.6.2"
|
||||
shadowCommon "net.jodah:typetools:0.6.2"
|
||||
|
||||
implementation(project(path: ":common")) {
|
||||
transitive = false
|
||||
@@ -47,7 +45,6 @@ processResources {
|
||||
}
|
||||
|
||||
shadowJar {
|
||||
relocate "net.jodah.typetools", "me.shedaniel.architectury.shadowed.impl.net.jodah.typetools"
|
||||
exclude "fabric.mod.json"
|
||||
exclude "architectury-common.accessWidener"
|
||||
|
||||
|
||||
@@ -63,8 +63,8 @@ public class FluidStackHooksImpl {
|
||||
return FluidStackHooksForge.toForge(stack).writeToNBT(tag);
|
||||
}
|
||||
|
||||
public static Fraction bucketAmount() {
|
||||
return Fraction.ofWhole(1000);
|
||||
public static long bucketAmount() {
|
||||
return 1000;
|
||||
}
|
||||
|
||||
@OnlyIn(Dist.CLIENT)
|
||||
|
||||
Reference in New Issue
Block a user