Skip to content

Commit

Permalink
removed default animation
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Aug 21, 2023
1 parent f99de74 commit b9a03b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void setColor(String color) {
}

public String getAnimation() {
return animation != null ? animation : "experimental";
return animation;
}

public void setAnimation(String animation) {
Expand All @@ -190,7 +190,7 @@ public int getParsedColor() {
@Nullable
public String getAnimationAsset() {
try {
return Animations.valueOf(getAnimation()).toString();
return Animations.valueOf(animation).toString();
}catch (Exception e){
e.printStackTrace();
ThirdPartyServices.logException(e);
Expand Down

0 comments on commit b9a03b3

Please sign in to comment.