Skip to content

Commit

Permalink
minor variable rename, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ds58 committed May 7, 2019
1 parent d5df3d7 commit 6fda6e5
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</parent>

<artifactId>panilla-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public boolean check(INbtTagCompound tag, String nmsItemClassName, IProtocolCons
}

for (String crashTranslation : MOJANG_CRASH_TRANSLATIONS) {
String check = String.format("{\"translate\":\"%s\"}", crashTranslation);
String translationJson = String.format("{\"translate\":\"%s\"}", crashTranslation);

if (page.equalsIgnoreCase(check)) {
if (page.equalsIgnoreCase(translationJson)) {
return false;
}
}
Expand Down
10 changes: 5 additions & 5 deletions plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</parent>

<artifactId>panilla-plugin</artifactId>
Expand All @@ -27,25 +27,25 @@
<dependency>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla-api</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla-v1_12_R1</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla-v1_13_R2</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla-v1_14_R1</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.ruinscraft</groupId>
<artifactId>panilla</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<packaging>pom</packaging>

<modules>
Expand Down
4 changes: 2 additions & 2 deletions v1_12_R1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</parent>

<artifactId>panilla-v1_12_R1</artifactId>
Expand All @@ -28,7 +28,7 @@
<dependency>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla-api</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions v1_13_R2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</parent>

<artifactId>panilla-v1_13_R2</artifactId>
Expand All @@ -28,7 +28,7 @@
<dependency>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla-api</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions v1_14_R1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</parent>

<artifactId>panilla-v1_14_R1</artifactId>
Expand All @@ -28,7 +28,7 @@
<dependency>
<groupId>com.ruinscraft</groupId>
<artifactId>panilla-api</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 6fda6e5

Please sign in to comment.