Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
Fix wrong formatted messages in /asl reload
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre601 committed Sep 17, 2022
1 parent a220efc commit 85e41b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void handle(CmdSender sender, String[] args){
}

if(core.getFileHandler().reloadProfiles()){
sender.sendMsg("%s <green>Loaded <grey>%s Profile(s)</grey>!", prefix, core.getFileHandler().getProfiles());
sender.sendMsg("%s <green>Loaded <grey>%d Profile(s)</grey>!", prefix, core.getFileHandler().getProfiles().size());
}else{
sender.sendMsg("%s <red>Cannot load Profiles!", errorPrefix);
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<plugin.version>1.6.1</plugin.version>
<plugin.version>1.6.2</plugin.version>
<plugin.description>Create multiple Server lists based on conditions.</plugin.description>

<maven.compiler.source>16</maven.compiler.source>
Expand Down

0 comments on commit 85e41b6

Please sign in to comment.