Skip to content

Commit d85fbdf

Browse files
committed
oopsies
1 parent 2c9ecb6 commit d85fbdf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>project</groupId>
44
<artifactId>items</artifactId>
5-
<version>1.6.0</version>
5+
<version>1.6.1</version>
66
<name>BendingItems</name>
77

88
<repositories>

src/me/simplicitee/project/items/BendingModifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public String toString() {
3232
}
3333

3434
public static BendingModifier of(String attribute, String value) {
35-
if (!value.startsWith("x") || !value.startsWith("+")) {
35+
if (!value.startsWith("x") && !value.startsWith("+")) {
3636
throw new IllegalArgumentException("Mods must start with 'x' or '+'");
3737
}
3838

src/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: BendingItems
22
author: Simplicitee
33
api-version: 1.16
4-
version: 1.6.0
4+
version: 1.6.1
55
main: me.simplicitee.project.items.ItemsPlugin
66
depend: [ProjectKorra]
77
permissions:

0 commit comments

Comments
 (0)