Skip to content

Commit 9ccca86

Browse files
committed
Fix incorrectly configured bendable Jacket
1 parent c3e4bf6 commit 9ccca86

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ org.gradle.jvmargs = -Xmx1G
44
#See copy-paste
55

66
#Mod properties
7-
mod_version = 1.2.2
7+
mod_version = 1.2.3
88
maven_group = com.kosmx.emotecraft
99
archives_base_name = emotecraft
1010

1111
#Dependencies
12-
modmenu_version = 1.14.6+build.31
13-
cloth_version = 4.8.2
12+
modmenu_version = 1.14.13+build.19
13+
cloth_version = 4.8.3
1414
bendylib_version = 0.2.3
1515

1616
#Copy-pasta part from https://modmuss50.me/fabric.html
@@ -19,4 +19,4 @@ yarn_mappings=1.16.4+build.7
1919
loader_version=0.10.8
2020

2121
#Fabric api
22-
fabric_version=0.26.0+1.16
22+
fabric_version=0.26.3+1.16

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Sun Jul 05 20:43:47 CEST 2020
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
33
distributionBase=GRADLE_USER_HOME
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists

src/main/java/com/kosmx/emotecraft/mixin/PlayerModelMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public PlayerModelMixin(float scale){
5858
private void initBendableStuff(float scale, boolean thinArms, CallbackInfo ci){
5959
thisWithMixin = (IMutatedBipedModel) this;
6060
emoteSupplier.set(null);
61-
this.mutatedJacket = new BendableModelPart(this.jacket, true, emoteSupplier);
61+
this.mutatedJacket = new BendableModelPart(this.jacket, false, emoteSupplier);
6262
this.mutatedRightSleeve = new BendableModelPart(this.rightSleeve, true, emoteSupplier);
6363
this.mutatedLeftSleeve = new BendableModelPart(this.leftSleeve, true, emoteSupplier);
6464
this.mutatedRightPantLeg = new BendableModelPart(this.rightPantLeg, emoteSupplier);

0 commit comments

Comments
 (0)