Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
AV306 committed Jul 1, 2022
1 parent 43a0f15 commit 0e18655
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'fabric-loom' version '0.11-SNAPSHOT'
id 'fabric-loom' version '0.12-SNAPSHOT'
id 'maven-publish'
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/me/av306/xenon/feature/IFeature.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void executeAction( String[] action )
TextFactory.createTranslatable(
"text.xenon.ifeature.executeaction.success",
this.name,
Arrays.toString( action );
Arrays.toString( action )
)
);
}
Expand All @@ -166,7 +166,7 @@ public void executeAction( String[] action )
TextFactory.createTranslatable(
"text.xenon.ifeature.executeaction.fail",
this.name,
Arrays.toString( action );
Arrays.toString( action )
)
);
}
Expand Down

0 comments on commit 0e18655

Please sign in to comment.