Skip to content

Commit

Permalink
Release 3.2.15
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessioDP committed Dec 2, 2023
1 parent 5911748 commit 7e86125
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>

<artifactId>parties-api</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions bukkit/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>parties-bukkit</artifactId>
Expand Down Expand Up @@ -80,7 +80,7 @@
<dependency>
<groupId>com.alessiodp.parties</groupId>
<artifactId>parties-common</artifactId>
<version>3.2.14</version>
<version>3.2.15</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>

<artifactId>parties-bukkit</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions bungeecord/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>parties-bungeecord</artifactId>
Expand Down Expand Up @@ -72,7 +72,7 @@
<dependency>
<groupId>com.alessiodp.parties</groupId>
<artifactId>parties-common</artifactId>
<version>3.2.14</version>
<version>3.2.15</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bungeecord/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>

<artifactId>parties-bungeecord</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions common/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>parties-common</artifactId>
Expand Down Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>com.alessiodp.parties</groupId>
<artifactId>parties-api</artifactId>
<version>3.2.14</version>
<version>3.2.15</version>
<scope>compile</scope>
<exclusions>
<exclusion>
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>

<artifactId>parties-common</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ public void init() {
}

public static String parsePlaceholders(@NotNull String text, @NotNull PartyPlayerImpl player) {
String ret = text;
String ret = null;
if (active) {
Matcher matcher = PLACEHOLDER_PATTERN.matcher(text);
while (matcher.find()) {
String identifier = matcher.group(1);
switch (CommonUtils.toLowerCase(identifier)) {
case "%luckperms_prefix%":
ret = ret.replace(identifier, hook.getPlayerPrefix(player.getPlayerUUID()));
ret = text.replace(identifier, hook.getPlayerPrefix(player.getPlayerUUID()));
break;
case "%luckperms_suffix%":
ret = ret.replace(identifier, hook.getPlayerSuffix(player.getPlayerUUID()));
ret = text.replace(identifier, hook.getPlayerSuffix(player.getPlayerUUID()));
break;
default: // Nothing to do
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public boolean preRequisites(@NotNull CommandData commandData) {
return handlePreRequisitesFull(
commandData,
false,
ConfigParties.GENERAL_NAME_DYNAMIC_ENABLE && ConfigParties.GENERAL_NAME_DYNAMIC_ALLOW_IN_CREATE ? 1 : 2,
ConfigParties.GENERAL_NAME_DYNAMIC_ENABLE && !ConfigParties.GENERAL_NAME_DYNAMIC_ALLOW_IN_CREATE ? 1 : 2,
2);
}

Expand Down
2 changes: 1 addition & 1 deletion output/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>output</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion output/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions velocity/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>parties-velocity</artifactId>
Expand Down Expand Up @@ -75,7 +75,7 @@
<dependency>
<groupId>com.alessiodp.parties</groupId>
<artifactId>parties-common</artifactId>
<version>3.2.14</version>
<version>3.2.15</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>parties</artifactId>
<groupId>com.alessiodp.parties</groupId>
<version>3.2.14</version>
<version>3.2.15</version>
</parent>

<artifactId>parties-velocity</artifactId>
Expand Down

0 comments on commit 7e86125

Please sign in to comment.