Skip to content

Commit

Permalink
RE-147 Fixed Group Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Relluem94 committed Feb 28, 2024
1 parent 40fac8e commit febfbcc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .idea/dbnavigator.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down Expand Up @@ -163,6 +163,7 @@
<maven.compiler.release>17</maven.compiler.release>
<plugin.apiVersion>1.20</plugin.apiVersion>
<lombok.version>1.18.30</lombok.version>
<spigot.version>1.20.1-R0.1-SNAPSHOT</spigot.version>
<plugin.author>Relluem94</plugin.author>
<project.build.sourceEncoding>windows-1252</project.build.sourceEncoding>
<plugin.website>https://www.relluem94.de</plugin.website>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ else if (isCMDBlock(sender) || isConsole(sender)) {
private static GroupEntry checkGroupExists(String groupName, Player p) {
GroupEntry g = Groups.getGroup(groupName);

if(Groups.groupExists(groupName)){
if(!Groups.groupExists(groupName)){
p.sendMessage(PLUGIN_COMMAND_SETGROUP_GROUP_NOT_FOUND);
return null;
}
Expand Down

0 comments on commit febfbcc

Please sign in to comment.