nothing workksssss

This commit is contained in:
gamma-delta 2022-05-14 15:15:25 -05:00
parent a0e3c1ae00
commit f0e697bc53
7 changed files with 21 additions and 12 deletions

View file

@ -1,6 +1,6 @@
plugins {
id 'fabric-loom' version '0.11-SNAPSHOT'
id 'maven-publish'
id 'fabric-loom' version "$loomVersion"
id 'io.github.juuxel.loom-quiltflower-mini' version '1.2.1'
}
version = getVersion("fabric")
@ -42,20 +42,21 @@ dependencies {
mappings loom.officialMojangMappings()
modImplementation "net.fabricmc:fabric-loader:${fabricLoaderVersion}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${fabricVersion}"
modImplementation("net.fabricmc:fabric-language-kotlin:1.7.4+kotlin.1.6.21")
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.1'
compileOnly project(":Common")
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
modImplementation "at.petra-k.paucal:paucal-$minecraftVersion:$paucalVersion-fabric"
modImplementation "vazkii.patchouli:Patchouli:$minecraftVersion-$patchouliVersion-FABRIC"
modImplementation("net.fabricmc:fabric-language-kotlin:1.7.4+kotlin.1.6.21")
implementation "me.zeroeightsix:fiber:$fiberVersion"
modImplementation "me.zeroeightsix:fiber:$fiberVersion"
include "me.zeroeightsix:fiber:$fiberVersion"
modImplementation "dev.onyxstudios.cardinal-components-api:cardinal-components-api:$cardinalComponentsVersion"
modImplementation "com.jamieswhiteshirt:reach-entity-attributes:2.1.1"
include "com.jamieswhiteshirt:reach-entity-attributes:2.1.1"
}
compileJava {

View file

@ -1,2 +1,6 @@
loomVersion=0.11-SNAPSHOT
fabricVersion=0.51.1+1.18.2
fabricLoaderVersion=0.14.5
fiberVersion=0.23.0-2
cardinalComponentsVersion=4.1.4

View file

@ -14,6 +14,7 @@ import at.petrak.hexcasting.common.network.IMessage;
import at.petrak.hexcasting.fabric.cc.HexCardinalComponents;
import at.petrak.hexcasting.xplat.IXplatAbstractions;
import at.petrak.hexcasting.xplat.Platform;
import com.jamieswhiteshirt.reachentityattributes.ReachEntityAttributes;
import net.fabricmc.api.EnvType;
import net.fabricmc.fabric.api.client.itemgroup.FabricItemGroupBuilder;
import net.fabricmc.fabric.api.item.v1.FabricItemSettings;
@ -59,7 +60,7 @@ public class FabricXplatImpl implements IXplatAbstractions {
@Override
public Attribute getReachDistance() {
return jaredFixYourSite;
return ReachEntityAttributes.REACH;
}
@Override

View file

@ -49,6 +49,8 @@
"hexcasting:favored_colorizer",
"hexcasting:sentinel",
"hexcasting:flight",
"hexcasting:harness",
"hexcasting:patterns",
"hexcasting:colorizer",
"hexcasting:data_holder",

1
Forge/gradle.properties Normal file
View file

@ -0,0 +1 @@
forgeVersion=40.1.0

View file

@ -12,7 +12,3 @@ modVersion=0.9.0
paucalVersion=0.4.0-prerelease-15
patchouliVersion=67
jeiVersion=9.5.3.143
forgeVersion=40.1.0
fabricVersion=0.51.1+1.18.2
fabricLoaderVersion=0.14.5

View file

@ -5,6 +5,10 @@ pluginManagement {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'QuiltFlower'
url = 'https://server.bbkr.space/artifactory/libs-release/'
}
maven {
name = 'Sponge Snapshots'
url = 'https://repo.spongepowered.org/repository/maven-public/'
@ -12,5 +16,5 @@ pluginManagement {
}
}
rootProject.name = 'MultiLoader'
rootProject.name = 'Hex Casting'
include("Common", "Fabric", "Forge")