Skip to content

Commit

Permalink
Fix gecko lib to own format function
Browse files Browse the repository at this point in the history
  • Loading branch information
KosmX committed May 5, 2021
1 parent 2505765 commit 30b2187
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,10 @@ private static void bodyPartDeserializer(JsonArray node, EmoteData.StateCollecti
partDeserialize(node, bodyPart.pitch, bodyPart.name);
partDeserialize(node, bodyPart.yaw, bodyPart.name);
partDeserialize(node, bodyPart.roll, bodyPart.name);
partDeserialize(node, bodyPart.bend, bodyPart.name);
partDeserialize(node, bodyPart.bendDirection, bodyPart.name);
if(bodyPart.isBendable) {
partDeserialize(node, bodyPart.bend, bodyPart.name);
partDeserialize(node, bodyPart.bendDirection, bodyPart.name);
}
}

private static void partDeserialize(JsonArray array, EmoteData.StateCollection.State part, String parentName){
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs = -Xmx2G
#See copy-paste

#Mod properties
mod_version = 2.0.2
mod_version = 2.0.3
maven_group = io.github.kosmx.emotes
archives_base_name = emotecraft

Expand Down

0 comments on commit 30b2187

Please sign in to comment.