diff --git a/build.gradle b/build.gradle index a72fbfc..801dec1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.12-SNAPSHOT' + id 'fabric-loom' version '1.4.+' id 'maven-publish' id "com.modrinth.minotaur" version "2.+" id 'com.matthewprenger.cursegradle' version '1.4.0' @@ -36,10 +36,10 @@ dependencies { modImplementation include("me.lucko:fabric-permissions-api:0.2-SNAPSHOT") modImplementation include("eu.pb4:sgui:1.3.0+1.20.2") - modImplementation include("eu.pb4:player-data-api:0.3.0+1.20.2") + modImplementation include("eu.pb4:player-data-api:0.4.0+1.20.3") modImplementation include("eu.pb4:common-protection-api:1.0.0") - modImplementation include("xyz.nucleoid:server-translations-api:2.1.0+1.20.2-rc2") + modImplementation include("xyz.nucleoid:server-translations-api:2.2.0+1.20.3-rc1") //modRuntime "com.github.SuperCoder7979:databreaker:0.2.6" modCompileOnly('xyz.nucleoid:disguiselib-fabric:1.2.2') diff --git a/gradle.properties b/gradle.properties index b39d227..45c3d39 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,15 +1,15 @@ # Done to increase the memory available to gradle. org.gradle.jvmargs=-Xmx1G -minecraft_version=23w43b -yarn_mappings=23w43b+build.1 -loader_version=0.14.24 +minecraft_version=1.20.3-rc1 +yarn_mappings=1.20.3-rc1+build.1 +loader_version=0.15.0 #Fabric api -fabric_version=0.90.5+1.20.3 +fabric_version=0.91.1+1.20.3 # Mod Properties -mod_version = 2.2.0 +mod_version = 2.3.0 maven_group = eu.pb4 archives_base_name = armor-stand-editor diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e750102..e411586 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/src/main/java/eu/pb4/armorstandeditor/util/ArmorStandData.java b/src/main/java/eu/pb4/armorstandeditor/util/ArmorStandData.java index a017a3d..8a1ec53 100644 --- a/src/main/java/eu/pb4/armorstandeditor/util/ArmorStandData.java +++ b/src/main/java/eu/pb4/armorstandeditor/util/ArmorStandData.java @@ -78,6 +78,7 @@ public void apply(ArmorStandEntity armorStand, boolean modifyInventory) { armorStand.updatePositionAndAngles(posX, posY, posZ, this.yaw, 0); } armorStand.setNoGravity(this.noGravity); + armorStand.noClip = this.noGravity; asea.callSetHideBasePlate(this.hidePlate); asea.callSetSmall(this.small); asea.callSetShowArms(this.showArms);